blob: e491c7db41a8e24b1ee40b6eed2098628050bb72 [file] [edit]
<!DOCTYPE HTML>
<html>
<head>
<style>
div {
position: relative;
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<p>This test should not crash.</p>
<div style="background-color: green" id="outer">
<div>
<div style="background-color: blue; left: 100px; top: 100px"></div>
</div>
</div>
<script>
function doTest() {
document.getElementById("outer").style.overflow = "clip";
}
window.addEventListener('load', doTest, false);
</script>
</body>
</html>