1 <!DOCTYPE html>
2 <html><head>
3 <meta charset="utf-8">
4 <title>
5 CSS Border and Background: border-image #1 border-image-source
6 </title>
7 <meta content="Basic support for the border-image-source property" name="assert">
8
9 <link href="mailto:jeremie@patonnier.net" rel="author" title="Jérémie Patonnier">
10
11
12 <link href="http://www.w3.org/TR/css3-background/#the-border-image-source" rel="help">
13
14 <style type="text/css">
15
16 #test {
17 background-color: #009900;
18 border : 10px solid red;
19 width : 20px;
20 height : 20px;
21
22 border-image-source: url(support/img-ref-1.png);
23 }
24
25 </style>
26
27 </head>
28 <body>
29
30 <p>
31 Pass if the square is fully green without any red border.
32 </p>
33
34 <div id="test"></div>
35
36
37
38 </body></html>