Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / fixed.html
blobe389508a8f6341edf294d141739d5f56bc6bc52e
1 <html>
2 <head>
3 <title></title>
4 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
5 <script type="text/javascript">
6 window.onload = function() {
7 window.scrollTo(0, 20);
8 runRepaintTest();
9 };
11 function repaintTest()
13 document.getElementById('t').style.background='green';
15 </script>
16 </head>
17 <body style="height:2000px;">
18 <p style="position: relative; top: 20px;">
19 Repaint test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=11452">http://bugs.webkit.org/show_bug.cgi?id=11452</a>
20 REGRESSION (r16736-r16801): Incorrect repaint of fixed boxes</i>.
21 </p>
22 <div id="t" style="position: fixed; width: 100px; height: 100px; background: red"></div>
23 </body>
24 </html>