Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / borders / border-image-source.html
blobc044698a7af72228638541e4f66b2b7a897950da
1 <html>
2 <head>
3 <style>
4 div {
5 border-width: 21px 30px 30px 21px;
6 width: 75px;
7 height: 75px;
8 margin: 10px;
9 display: inline-block;
10 border-image-source: url("resources/border-image.png") !important
13 div.rr {
14 -webkit-border-image: none 21 30 30 21 repeat repeat;
17 div.rs {
18 -webkit-border-image: none 21 30 30 21 repeat stretch;
21 div.sr {
22 -webkit-border-image: none 21 30 30 21 stretch repeat;
25 div.ss {
26 -webkit-border-image: none 21 30 30 21 stretch stretch;
28 </style>
29 </head>
30 <body>
31 <div class="rr"></div>
32 <div class="rs"></div>
33 <br>
34 <div class="sr"></div>
35 <div class="ss"></div>
36 </body>
37 </html>