Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / animation / last-child-assert.html
bloba04620aafb514706660934e184fd01734e934835
1 <!DOCTYPE html>
2 <style>
3 body { -webkit-transition: background-color 1ms }
4 #nomatch :last-child { color: green }
5 </style>
6 <p>Pass if no assert or crash.</p>
7 <script>
8 if (window.testRunner) {
9 testRunner.dumpAsText();
10 testRunner.waitUntilDone();
11 document.body.addEventListener("transitionend", function(){ testRunner.notifyDone(); }, false);
13 document.body.offsetTop;
14 document.body.style.backgroundColor = "green";
15 </script>