Changeset 186994 in webkit
- Timestamp:
- Jul 18, 2015, 7:22:24 AM (10 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r186993 r186994 1 2015-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 1 10 2015-07-18 David Kilzer <ddkilzer@apple.com> 2 11 -
trunk/LayoutTests/fast/repaint/block-inputrange-repaint.html
r186981 r186994 17 17 document.getElementById("moveme").value = 100; 18 18 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 } 23 25 finishJSTest(); 24 26 } 27 setTimeout(repaintTest, 0); 25 28 </script> 26 29 </body>
Note:
See TracChangeset
for help on using the changeset viewer.