Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / checkerboard.html
blob23b8d5eaf73e16d171f674c317b1ceb7b5fd8c3c
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5 <script type="text/javascript">
6 function horiz_scroll() {
7 if (window.testRunner)
8 testRunner.waitUntilDone();
10 var pos = 0;
11 var inner = function () {
12 window.scrollTo(pos, 1023);
13 pos += 15;
14 if (pos < 2047)
15 setTimeout(inner, 0);
16 else if (window.testRunner)
17 testRunner.notifyDone();
19 inner();
21 </script>
22 </head>
23 <body style="overflow: hidden" onload="horiz_scroll()">
24 <div style="transform: translateZ(0);"></div>
25 <div style="
26 background-image: url('data:image/gif;base64,R0lGODdhAgACAIABAAAAAP///ywAAAAAAgACAAACA0QCBQA7');
27 width: 2047px;
28 height: 2047px;
29 "></div>
30 </body>
31 </html>