Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/table/split-table-section-before-anonymous-block-2.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/table/split-table-section-before-anonymous-block-2.html b/third_party/WebKit/LayoutTests/fast/table/split-table-section-before-anonymous-block-2.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..50652b6088a75aba9eb5f2b4c88799ab25ebb63e |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/table/split-table-section-before-anonymous-block-2.html |
| @@ -0,0 +1,12 @@ |
| +<!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
|
| +<p>crbug.com/568387: Should not ASSERT and should not leave an unnecessary anonymous block around the two inline-blocks.</p> |
| +<div style="display:table-row-group;"> |
| + <div></div> |
| + <div id="splitter" style="display:none;"></div> |
| + <div style="display:inline-block; width:75px; height:50%; background:blue;"></div> |
| + <div style="display:inline-block; width:75px; height:50%; background:blue;"></div> |
| +</div> |
| +<script> |
| + document.body.offsetTop; |
| + document.getElementById("splitter").style.display = "table-row"; |
| +</script> |