OLD | NEW |
1 <script> | 1 <script> |
2 if (window.layoutTestController) | 2 if (window.layoutTestController) |
3 layoutTestController.dumpAsText(); | 3 layoutTestController.dumpAsText(); |
4 | 4 |
5 function boom() { | 5 function boom() { |
6 setTimeout('document.querySelector("progress").setAttribute("style", "overflow
: scroll; border-style: dotted;");', 10); | 6 setTimeout('document.querySelector("progress").setAttribute("style", "overflow
: scroll; border-style: dotted;");', 10); |
7 } | 7 } |
8 window.onload = boom; | 8 window.onload = boom; |
9 </script> | 9 </script> |
10 <body> | 10 <body> |
11 <span style="display: -webkit-inline-box;"> | 11 <span style="display: -webkit-inline-box;"> |
12 <span style="position: fixed; visibility: collapse;"> | 12 <span style="position: fixed; visibility: collapse;"> |
13 <span style="visibility: visible;"> | 13 <span style="visibility: visible;"> |
14 <progress></progress> | 14 <progress></progress> |
15 </span> | 15 </span> |
16 </span> | 16 </span> |
17 </span> | 17 </span> |
18 <div>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=64842">64842</a>: Re
nderDeprecatedFlexibleBox does not call its children's layout method</div> | 18 <div>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=64842">64842</a>: Re
nderDeprecatedFlexibleBox does not call its children's layout method</div> |
19 <div>This test passes if it does not CRASH.</div> | 19 <div>This test passes if it does not CRASH.</div> |
20 </body> | 20 </body> |
OLD | NEW |