blob: 8bfe6f9d4d92eaebb81fb7a37e4663f4396355bd [file] [log] [blame]
<!DOCTYPE html><!-- webkit-test-runner [ experimental:WebAnimationsCSSIntegrationEnabled=false ] -->
<style>
body { -webkit-transition: background-color 1ms }
#nomatch :last-child { color: green }
</style>
<p>Pass if no assert or crash.</p>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
document.body.addEventListener("transitionend", function(){ testRunner.notifyDone(); }, false);
}
document.body.offsetTop;
document.body.style.backgroundColor = "green";
</script>