Upstream version 7.35.139.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / scroll-in-fixed-layer.html
index 84c1136..4630181 100644 (file)
@@ -1,23 +1,10 @@
 <html>
 <head>
     <link rel="stylesheet" href="resources/default.css"></style>
-    <script src="../../resources/run-after-display.js"></script>
     <script src="resources/text-based-repaint.js" type="text/javascript"></script>
     <script type="text/javascript">
-        if (window.testRunner) {
-            testRunner.waitUntilDone();
+        if (window.testRunner)
             testRunner.dumpAsTextWithPixelResults();
-        }
-
-        window.onload = function()
-        {
-            window.scrollTo(1000, 1000);
-            runAfterDisplay(function() {
-                runRepaintTest();
-                if (window.testRunner)
-                    testRunner.notifyDone();
-            })
-        }
 
         function repaintTest()
         {
@@ -27,7 +14,7 @@
         }
     </script>
 </head>
-<body style="height:2000px;">
+<body style="height:2000px;" onload="runRepaintTest()">
     <!-- You should see 1 green rectangle in the output and no red. -->
     <div id="moveMe" style="top: 150px; left: 100px;" class="fixed clipped">
         <div class="absolute green" style="top: 100px; left: 150px;"></div>
@@ -35,5 +22,8 @@
     </div>
     <!-- Make sure we are scrolled -->
     <div style="top: 0px; left: 0px;" class="absolute red"></div>
+    <script>
+        window.scrollTo(1000, 1000);
+    </script>
 </body>
 </html>