summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/crash-button-keygen.html
blob: 1fe47b84dc5143d50a6eeb60a05960442ad763ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<body>
<p style="visibility: collapse;"><button><keygen autofocus><input id="test"></keygen></button></p>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
document.body.offsetTop;
document.getElementById('test').parentNode.removeChild(document.getElementById('test'));
document.body.offsetTop;
</script>
<p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=63776">63776</a>: Partial layout when a flex-box has visibility: collapse</p>
<p>This test PASSES if it does not CRASH.</p>
</body>
</html>