Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / hidpi / image-set-background-repeat-without-size.html
blobb4bab0f996e87159548ae7af69e9a5f490e877c4
1 <html>
2 <head>
3 <script src="resources/srcset-helper.js"></script>
4 <style>
5 #foo {
6 width:90px;
7 height:90px;
8 background-image: -webkit-image-set(url('resources/deleteButton.png') 1x, url('resources/deleteButton-2x.png') 2x);
9 background-repeat: repeat;
11 </style>
12 </head>
14 <body id="body">
15 <div>This test passes if the div below contains 9 evenly spaced delete buttons, and if the high resolution resource is used when the deviceScaleFactor is 2.</div>
16 <div id=foo></div>
17 </body>
18 </html>