blob: a04620aafb514706660934e184fd01734e934835 [file] [log] [blame]
<!DOCTYPE html>
<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>