summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/text-autosizing/anonymous-block-crash.html
blob: a5fb2bce93386b05ff6d07ad1c15dcee977c569f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Test for crbug.com/521657: This test passes if it does not crash.
<script>
if (window.testRunner)
    testRunner.dumpAsText();
internals.settings.setTextAutosizingEnabled(true);
internals.settings.setTextAutosizingWindowSizeOverride(320, 480);

document.documentElement.style.overflow = '-webkit-paged-x';
onload = function() {
    var forceLayout = document.body.offsetTop;
    document.documentElement.parentNode.removeChild(document.documentElement);
}
</script>