Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: third_party/WebKit/LayoutTests/fast/table/split-table-section-before-anonymous-block-4.html

Issue 1611413007: Remove unnecessary anonymous blocks when splitting anonymous boxes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@568387-RemovePercentHeight
Patch Set: Updated Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/table/split-table-section-before-anonymous-block-4.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/split-table-section-before-anonymous-block-4.html b/third_party/WebKit/LayoutTests/fast/table/split-table-section-before-anonymous-block-4.html
new file mode 100644
index 0000000000000000000000000000000000000000..173a755ffc4c8c153eefc18dcbe548290350ea85
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/table/split-table-section-before-anonymous-block-4.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<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 style="display:inline-block; width:75px; height:50%; background:blue;"></div>
+ <div style="display:inline-block; width:75px; height:50%; background:blue;"></div>
+ <div id="splitter" style="display:none;"></div>
+ <div></div>
+</div>
+<script>
+ document.body.offsetTop;
+ document.getElementById("splitter").style.display = "table-row";
+</script>

Powered by Google App Engine
This is Rietveld 408576698