Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 #e0::after { | |
| 4 position: absolute; | |
| 5 content: counter(c); | |
| 6 } | |
| 7 </style> | |
| 8 <p>Remove a block child, so that its parent block no longer needs to wrap inline children inside an anonymous block.</p> | |
| 9 <p>PASS if no crash or assertion failure.</p> | |
| 10 <div> | |
| 11 <div id="e0" style="display:inline-block;"> | |
| 12 <div></div> | |
| 13 </div> | |
| 14 <div id="e1"></div> | |
| 15 </div> | |
| 16 <script> | |
| 17 if (window.testRunner) | |
| 18 testRunner.dumpAsText(); | |
| 19 document.body.offsetTop; | |
| 20 e1.style.display = "none"; | |
| 21 </script> | |
| OLD | NEW |