Title: [187293] branches/safari-601.1-branch/LayoutTests
Revision
187293
Author
[email protected]
Date
2015-07-23 23:06:21 -0700 (Thu, 23 Jul 2015)

Log Message

Merged r186994.  rdar://problem/21787807

Modified Paths

Diff

Modified: branches/safari-601.1-branch/LayoutTests/ChangeLog (187292 => 187293)


--- branches/safari-601.1-branch/LayoutTests/ChangeLog	2015-07-24 06:04:32 UTC (rev 187292)
+++ branches/safari-601.1-branch/LayoutTests/ChangeLog	2015-07-24 06:06:21 UTC (rev 187293)
@@ -1,5 +1,18 @@
 2015-07-23  Lucas Forschler  <[email protected]>
 
+        Merge r186994
+
+    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-23  Lucas Forschler  <[email protected]>
+
         Merge r186981
 
     2015-07-17  Zalan Bujtas  <[email protected]>

Modified: branches/safari-601.1-branch/LayoutTests/fast/repaint/block-inputrange-repaint.html (187292 => 187293)


--- branches/safari-601.1-branch/LayoutTests/fast/repaint/block-inputrange-repaint.html	2015-07-24 06:04:32 UTC (rev 187292)
+++ branches/safari-601.1-branch/LayoutTests/fast/repaint/block-inputrange-repaint.html	2015-07-24 06:06:21 UTC (rev 187293)
@@ -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