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

Unified Diff: LayoutTests/fast/table/whitespace-in-anonymous-table-cells.html

Issue 1065563005: Allow whitespace inside anonymous table cells (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated Created 5 years, 5 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: LayoutTests/fast/table/whitespace-in-anonymous-table-cells.html
diff --git a/LayoutTests/fast/table/whitespace-in-anonymous-table-cells.html b/LayoutTests/fast/table/whitespace-in-anonymous-table-cells.html
new file mode 100644
index 0000000000000000000000000000000000000000..ef6af9d15533a29ad61e5b5fc9485fbe9f5f1332
--- /dev/null
+++ b/LayoutTests/fast/table/whitespace-in-anonymous-table-cells.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<style>
+.ib {
+ display: inline-block;
+ width: 300px;
+ background:red;
+}
+</style>
+<p> crbug.com/473832: Allow whitespace between the children of anonymous table cells. </p>
+<div style="display:table; width:700px;">
+ <div class="ib">There should be whitespace</div>
+ <div class="ib">between the two red rectangles.</div>
+</div>
+<div style="display:table; width:700px;">
+ <div style="display:table-row;">
+ <div class="ib">There should be whitespace</div>
+ <div class="ib">between the two red rectangles.</div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698