Upstream version 7.35.139.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / fixed.html
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        function repaintTest()
7        {
8             document.getElementById('t').style.background='green';
9        }
10     </script>
11 </head>
12 <body style="height:2000px;" onload="runRepaintTest()">
13     <p style="position: relative; top: 20px;">
14         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>
15         REGRESSION (r16736-r16801): Incorrect repaint of fixed boxes</i>.
16     </p>
17     <div id="t" style="position: fixed; width: 100px; height: 100px; background: red"></div>
18     <script>
19         window.scrollTo(0, 20);
20     </script>
21 </body>
22 </html>