Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / background-misaligned.html
blob60e2b17b25f5538e65c8ea1d6b557c157cd69841
1 <script src="resources/text-based-repaint.js"></script>
2 <script>
3 function repaintTest()
5 document.getElementById("target").style.display = "none";
7 </script>
8 <body onload="runRepaintTest()">
9 <div style="
10 width: 267px;
11 height: 270px;
12 border: solid black;
13 background-image: url(../backgrounds/size/resources/bikes.bmp);
14 -webkit-background-size: 500% 500%;
15 position: relative;
17 <div id="target" style="
18 width: 40px;
19 height: 40px;
20 position: absolute;
21 bottom: 0;
22 right: 0;
23 "></div>
24 </div>
25 </body>