Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / borders / border-image-width-numbers.html
blobde30579d26f639abeb7442df4cc908d4d79cda66
1 <!doctype html>
2 <html>
3 <head>
4 <title>Test that numbers in border-image-width are rendered correctly</title>
5 <style>
6 .ref {
7 background: red;
8 width: 140px;
9 height: 140px;
10 position: absolute;
11 z-index: -1;
13 .test {
14 border-style: solid;
15 border-width: 20px;
16 border-image-width: 0 3.5;
17 border-image-slice: 21 30 30 21;
18 border-image-source: url(../css/resources/greenbox-100px.png);
19 width: 100px;
20 height: 100px;
22 </style>
23 </head>
24 <body>
25 <div class="ref"></div>
26 <div class="test"></div>
27 <p>There should be a green box above.</p>
28 </body>
29 </html>