| <!doctype html> |
| <html> |
| <head> |
| <style> |
| #el1 { -webkit-flow-into: A; } |
| #el3 { -webkit-flow-from: A; } |
| </style> |
| <script> |
| if (window.testRunner) { |
| testRunner.dumpAsText(); |
| testRunner.waitUntilDone(); |
| } |
| |
| onload = function() { |
| el1=document.createElement('div') |
| el1.setAttribute('id','el1') |
| document.body.appendChild(el1) |
| |
| el2=document.createElement('div') |
| document.body.appendChild(el2) |
| |
| el3=document.createElement('hr') |
| el3.setAttribute('id','el3') |
| el2.appendChild(el3) |
| |
| el4=document.createElement('select') |
| el1.appendChild(el4) |
| el4.style.display='block' |
| |
| setTimeout(function() { |
| el4.style.display='inline' |
| el4.style.visibility = 'hidden' |
| |
| if (window.testRunner) |
| testRunner.notifyDone(); |
| },0) |
| } |
| </script> |
| </head> |
| <body> |
| <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=77474">77474</a>: Crash in RenderFlowThread::setRegionBoxesRegionStyle</p> |
| <p> This test PASSES if it does not CRASH or ASSERT.</p> |
| </body> |
| </html> |