Upstream version 7.35.139.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / fixed-and-absolute-position-scrolled.html
1 <html>
2 <head>
3     <link rel="stylesheet" href="resources/default.css">
4     <script src="resources/text-based-repaint.js" type="text/javascript"></script>
5     <script type="text/javascript">
6         if (window.testRunner)
7             testRunner.dumpAsTextWithPixelResults();
8         function repaintTest()
9         {
10             document.getElementById('container').style.position = 'static';
11         }
12     </script>
13 </head>
14 <body style="height:2000px;" onload="runRepaintTest()">
15     <!-- You should see 1 green rectangle in the output and no red. -->
16     <div style="top: 200px; left: 100px;" class="fixed red"></div>
17     <div id="container" style="top: 5000px;" class="relative"><div id="absoluteDiv" style="top: 700px; left:100px;" class="absolute green"></div></div>
18     <script>
19         window.scrollTo(0, 500);
20     </script>
21 </body>
22 </html>