1 <!DOCTYPE html>
2 <html lang="en"><head>
3 <meta charset="utf-8">
4 <title>CSS Border Test:border image source property</title>
5 <link href="mailto:yanshasha133@gmail.com" rel="author" title="yanshasha">
6 <link href="mailto:shendayang@baidu.com" rel="reviewer" title="Dayang Shen"> <!-- 2013-08-26 -->
7 <link href="http://www.w3.org/TR/css3-background/#border-image-source" rel="help">
8 <link href="reference/css3-border-image-source-ref.htm" rel="match">
9 <style type="text/css">
10 div {
11 background-color: yellow;
12 width: 100px;
13 height: 100px;
14 border: solid 60px red;
15 border-image-source: url(support/green-60-60.png);
16 }
17 </style>
18 </head>
19 <body>
20 <p>
21 The test passes if there are four green squares at each corner of the yellow square and no red border can be seen.
22 </p>
23 <div></div>
24
25
26 </body></html>