Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / fixed-after-scroll.html
blob791812fdd34aeefc30e4dcec6d6e912dc6906b32
1 <html>
2 <head>
3 <link rel="stylesheet" href="resources/default.css">
4 <script src="resources/text-based-repaint.js"></script>
5 <script>
6 if (window.testRunner)
7 testRunner.dumpAsTextWithPixelResults();
9 window.onload = function() {
10 window.scrollTo(0, 500);
11 runRepaintTest();
14 function repaintTest()
16 document.getElementById('t').style.position = "fixed";
18 </script>
19 </head>
21 <body style="height:2000px;">
22 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: Layer fixed position logic needs more basic testing -->
23 <!-- You should see no red on this page. -->
24 <div style="top: 200px;" class="red fixed"></div>
25 <div id="t" style="top: 200px;" class="green absolute"></div>
26 </body>
27 </html>