Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script> | |
| 3 if (window.testRunner) | |
| 4 testRunner.dumpAsText(); | |
| 5 </script> | |
| 6 <p>crbug.com/700383 - [css-grid] Grid layouts go mostly blank</p> | |
| 7 <p>This test has PASSED if it does not CRASH on debug.</p> | |
| 8 <div id="grid" style="display: grid;"> | |
| 9 <div>item</div> | |
| 10 <div id="abspositem" style="position: absolute;"></div> | |
| 11 </div> | |
| 12 <script> | |
| 13 document.body.offsetLeft; | |
| 14 document.getElementById("grid").removeChild(document.getElementById("absposite m")); | |
|
svillar
2017/03/15 10:03:54
Don't we need a test for the case of adding an abs
Manuel Rego
2017/03/15 10:59:26
Actually that part was not crashing before,
but as
| |
| 15 </script> | |
| OLD | NEW |