blob: 6e739f83d347fe25f379a0686a2420a35ee4a599 [file] [edit]
<style>
* {
outline: auto;
}
body {
column-count: 2;
column-span: all;
}
html {
overflow: -webkit-paged-y;
}
</style>
<html id="htmlID">
<body>
foobar
<div id="divID" style="float: left; width: 10px; height: 10px;"></div>
</body>
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.body.offsetHeight;
document.getElementById("htmlID").style.outline = "1px solid";
document.body.offsetHeight;
document.body.style.columnSpan = "none";
document.body.offsetHeight;
document.body.innerHTML = 'PASS if no crash.';
</script>
</html>