Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / crash-flexbox-no-layout-child.html
blobf1facb78bfc95fdb3202f368d64b4a74e579968c
1 <script>
2 if (window.testRunner)
3 testRunner.dumpAsText();
5 function boom() {
6 setTimeout('document.querySelector("progress").setAttribute("style", "overflow: scroll; border-style: dotted;");', 10);
8 window.onload = boom;
9 </script>
10 <body>
11 <span style="display: -webkit-inline-box;">
12 <span style="position: fixed; visibility: collapse;">
13 <span style="visibility: visible;">
14 <progress></progress>
15 </span>
16 </span>
17 </span>
18 <div>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=64842">64842</a>: LayoutDeprecatedFlexibleBox does not call its children's layout method</div>
19 <div>This test passes if it does not CRASH.</div>
20 </body>