OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
mstensho (USE GERRIT)
2016/01/28 20:45:14
These tests both pass *without* your code changes
rhogan
2016/01/30 12:38:57
Yes, I give up on making these non-layout-tree tes
| |
2 <p>crbug.com/568387: Should not ASSERT and should not leave an unnecessary anony mous block around the two inline-blocks.</p> | |
3 <div style="display:table-row-group;"> | |
4 <div></div> | |
5 <div id="splitter" style="display:none;"></div> | |
6 <div style="display:inline-block; width:75px; height:50%; background:blue;"> </div> | |
7 <div style="display:inline-block; width:75px; height:50%; background:blue;"> </div> | |
8 </div> | |
9 <script> | |
10 document.body.offsetTop; | |
11 document.getElementById("splitter").style.display = "table-row"; | |
12 </script> | |
OLD | NEW |