blob: e72824ca9be7d17f59c8d9bfb68f202f50766e8b [file] [log] [blame]
<!DOCTYPE html>
<body style="display: inline-grid;">
<style>
.absolutelyPositioned { position: absolute; }
</style>
This test has passed if it didn't crash.
<script>
if (window.testRunner)
testRunner.dumpAsText();
var cell = document.createElement("cell");
cell.classList.add("absolutelyPositioned");
document.body.appendChild(cell);
document.body.offsetLeft;
cell.classList.remove("absolutelyPositioned");
</script>