OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <p>Insert an in-flow object before an absolutely positioned element that up unti
l now was the only |
| 3 multicol child.</p> |
| 4 <p>PASS if no assertion failure or crash.</p> |
| 5 <div style="-webkit-columns:2;"> |
| 6 <div id="elm" style="display:none;"></div> |
| 7 <div style="position:absolute;"></div> |
| 8 </div> |
| 9 <script> |
| 10 if (window.testRunner) |
| 11 testRunner.dumpAsText(); |
| 12 onload = function() { |
| 13 document.body.offsetTop; |
| 14 document.getElementById('elm').style.display = 'block'; |
| 15 } |
| 16 </script> |
OLD | NEW |