summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/crash-flexbox-no-layout-child.html
blob: f1facb78bfc95fdb3202f368d64b4a74e579968c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script>
if (window.testRunner)
    testRunner.dumpAsText();

function boom() {
  setTimeout('document.querySelector("progress").setAttribute("style", "overflow: scroll; border-style: dotted;");', 10);
}
window.onload = boom;
</script>
<body>
  <span style="display: -webkit-inline-box;">
    <span style="position: fixed; visibility: collapse;">
      <span style="visibility: visible;">
        <progress></progress>
      </span>
    </span>
  </span>
  <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>
  <div>This test passes if it does not CRASH.</div>
</body>