Changeset 186994 in webkit


Ignore:
Timestamp:
Jul 18, 2015 7:22:24 AM (9 years ago)
Author:
ddkilzer@apple.com
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.
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r186993 r186994  
     12015-07-18  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r186981): fast/repaint/block-inputrange-repaint.html is starting out life as flaky
     4
     5        <https://webkit-test-results.appspot.com/dashboards/flakiness_dashboard.html#showAllRuns=true&tests=fast%2Frepaint%2Fblock-inputrange-repaint.html>
     6
     7        * fast/repaint/block-inputrange-repaint.html:
     8        - Use setTimeout() to give WebKit time to repaint.
     9
    1102015-07-18  David Kilzer  <ddkilzer@apple.com>
    211
  • trunk/LayoutTests/fast/repaint/block-inputrange-repaint.html

    r186981 r186994  
    1717  document.getElementById("moveme").value = 100;
    1818  document.body.offsetHeight;
    19   if (window.internals) {
    20     repaintRects = window.internals.repaintRectsAsText();
    21     window.internals.stopTrackingRepaints();
    22     shouldNotBe("repaintRects.indexOf('495 8 15 15')", "-1");
     19  function repaintTest() {
     20    if (window.internals) {
     21      repaintRects = window.internals.repaintRectsAsText();
     22      window.internals.stopTrackingRepaints();
     23      shouldNotBe("repaintRects.indexOf('495 8 15 15')", "-1");
     24    }
    2325    finishJSTest();
    2426  }
     27  setTimeout(repaintTest, 0);
    2528</script>
    2629</body>
Note: See TracChangeset for help on using the changeset viewer.