Title: [186994] trunk/LayoutTests
Revision
186994
Author
[email protected]
Date
2015-07-18 07:22:24 -0700 (Sat, 18 Jul 2015)

Log Message

REGRESSION (r186981): fast/repaint/block-inputrange-repaint.html is starting out life as flaky

<https://webkit-test-results.appspot.com/dashboards/flakiness_dashboard.html#showAllRuns=true&tests=fast%2Frepaint%2Fblock-inputrange-repaint.html>

* fast/repaint/block-inputrange-repaint.html:
- Use setTimeout() to give WebKit time to repaint.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (186993 => 186994)


--- trunk/LayoutTests/ChangeLog	2015-07-18 13:54:38 UTC (rev 186993)
+++ trunk/LayoutTests/ChangeLog	2015-07-18 14:22:24 UTC (rev 186994)
@@ -1,5 +1,14 @@
 2015-07-18  David Kilzer  <[email protected]>
 
+        REGRESSION (r186981): fast/repaint/block-inputrange-repaint.html is starting out life as flaky
+
+        <https://webkit-test-results.appspot.com/dashboards/flakiness_dashboard.html#showAllRuns=true&tests=fast%2Frepaint%2Fblock-inputrange-repaint.html>
+
+        * fast/repaint/block-inputrange-repaint.html:
+        - Use setTimeout() to give WebKit time to repaint.
+
+2015-07-18  David Kilzer  <[email protected]>
+
         REGRESSION (r186905,r186992): Incorrect results for platform/{gtk,efl,win}/fast/shrink-wrap/rect-shrink-wrap-expected.txt
 
         * platform/efl/fast/shrink-wrap/rect-shrink-wrap-expected.txt:

Modified: trunk/LayoutTests/fast/repaint/block-inputrange-repaint.html (186993 => 186994)


--- trunk/LayoutTests/fast/repaint/block-inputrange-repaint.html	2015-07-18 13:54:38 UTC (rev 186993)
+++ trunk/LayoutTests/fast/repaint/block-inputrange-repaint.html	2015-07-18 14:22:24 UTC (rev 186994)
@@ -16,12 +16,15 @@
   window.internals.startTrackingRepaints();
   document.getElementById("moveme").value = 100;
   document.body.offsetHeight;
-  if (window.internals) {
-    repaintRects = window.internals.repaintRectsAsText();
-    window.internals.stopTrackingRepaints();
-    shouldNotBe("repaintRects.indexOf('495 8 15 15')", "-1");
+  function repaintTest() {
+    if (window.internals) {
+      repaintRects = window.internals.repaintRectsAsText();
+      window.internals.stopTrackingRepaints();
+      shouldNotBe("repaintRects.indexOf('495 8 15 15')", "-1");
+    }
     finishJSTest();
   }
+  setTimeout(repaintTest, 0);
 </script>
 </body>
 <script src=""
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to