blob: 6dc7c90e25b79ca126a4f3978c9d7d5c66b3df33 [file] [log] [blame]
<!doctype html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background-color: green;
}
.container {
overflow: hidden;
}
</style>
</head>
<body>
PASS if no crash.
<div class=container><span><div id=foo></div></div></div>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
setTimeout(function() {
document.getElementById("foo").style.height = "200px";
if (window.testRunner)
testRunner.notifyDone();
}, 10);
</script>