OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 #el1 { -webkit-flow-into: A; } | |
6 #el3 { -webkit-flow-from: A; } | |
7 </style> | |
8 <script> | |
9 if (window.testRunner) { | |
10 testRunner.dumpAsText(); | |
11 testRunner.waitUntilDone(); | |
12 } | |
13 | |
14 onload = function() { | |
15 el1=document.createElement('div') | |
16 el1.setAttribute('id','el1') | |
17 document.body.appendChild(el1) | |
18 | |
19 el2=document.createElement('div') | |
20 document.body.appendChild(el2) | |
21 | |
22 el3=document.createElement('hr') | |
23 el3.setAttribute('id','el3') | |
24 el2.appendChild(el3) | |
25 | |
26 el4=document.createElement('select') | |
27 el1.appendChild(el4) | |
28 el4.style.display='block' | |
29 | |
30 setTimeout(function() { | |
31 el4.style.display='inline' | |
32 el4.style.visibility = 'hidden' | |
33 | |
34 if (window.testRunner) | |
35 testRunner.notifyDone(); | |
36 },0) | |
37 } | |
38 </script> | |
39 </head> | |
40 <body> | |
41 <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=77474">77474</a
>: Crash in RenderFlowThread::setRegionBoxesRegionStyle</p> | |
42 <p> This test PASSES if it does not CRASH or ASSERT.</p> | |
43 </body> | |
44 </html> | |
OLD | NEW |