Changeset 222178 in webkit
- Timestamp:
- Sep 18, 2017, 2:01:30 PM (8 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r222176 r222178 1 2017-09-18 Antti Koivisto <antti@apple.com> 2 3 Another WK1 unflake attempt. 4 5 * transitions/transition-display-property-2.html: 6 1 7 2017-09-18 Ryosuke Niwa <rniwa@webkit.org> 2 8 -
trunk/LayoutTests/transitions/transition-display-property-2.html
r222162 r222178 11 11 <test></test> 12 12 <script> 13 if (window.testRunner) 14 testRunner.waitUntilDone(); 15 13 16 const test = document.querySelector("test"); 17 18 function tryComplete() 19 { 20 if (test.offsetHeight < 100) { 21 if (window.testRunner) 22 testRunner.notifyDone(); 23 return; 24 } 25 setTimeout(tryComplete, 10); 26 } 27 14 28 test.offsetWidth; 15 16 if (window.testRunner) {17 testRunner.waitUntilDone();18 requestAnimationFrame(() => {19 testRunner.notifyDone();20 });21 }22 29 test.className = "animate"; 23 t est.offsetWidth;30 tryComplete(); 24 31 </script>
Note:
See TracChangeset
for help on using the changeset viewer.