blob: 636505e3513998fbbef78cdc19f6cd1cc166fda6 [file] [log] [blame]
jchaffraix@webkit.org25584442011-10-20 22:55:49 +00001<script>
2if (window.layoutTestController)
3 layoutTestController.dumpAsText();
4
5function boom() {
6 setTimeout('document.querySelector("progress").setAttribute("style", "overflow: scroll; border-style: dotted;");', 10);
7}
8window.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>: RenderDeprecatedFlexibleBox does not call its children's layout method</div>
19 <div>This test passes if it does not CRASH.</div>
20</body>