Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Side by Side Diff: LayoutTests/fast/animation/last-child-assert.html

Issue 890393002: Deflaked fast/animation/last-child-assert.html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « LayoutTests/FlakyTests ('k') | LayoutTests/fast/animation/last-child-assert-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 html { background-color: white } 3 body { -webkit-transition: background-color 1ms }
4 body { -webkit-transition: background-color 1s }
5 #nomatch :last-child { color: green } 4 #nomatch :last-child { color: green }
6 </style> 5 </style>
7 <p>Pass if no assert or crash.</p> 6 <p>Pass if no assert or crash.</p>
8 <script> 7 <script>
8 if (window.testRunner) {
9 testRunner.dumpAsText();
10 testRunner.waitUntilDone();
11 document.body.addEventListener("transitionend", function(){ testRunner.notif yDone(); }, false);
12 }
9 document.body.offsetTop; 13 document.body.offsetTop;
10 document.body.style.backgroundColor = "white"; 14 document.body.style.backgroundColor = "green";
11 </script> 15 </script>
OLDNEW
« no previous file with comments | « LayoutTests/FlakyTests ('k') | LayoutTests/fast/animation/last-child-assert-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698