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

Unified Diff: LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-4.html

Issue 1280123004: Don't allow whitespace between elements with display:table-cell (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 5 years, 4 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-between-elements-with-table-cell-display-4.html
diff --git a/LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-4.html b/LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-4.html
new file mode 100644
index 0000000000000000000000000000000000000000..00134dbce67ce0a832a951558597c779897761f9
--- /dev/null
+++ b/LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-4.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<p>crbug.com/515771: Form elements with a table cell display should not interfere with allowing whitespace between adjacent siblings. </p>
+<p>There should be two words (with space between them) below.</p>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<div style="display:table;">
+ <input style="display:table-cell; background:transparent; border:none;">
+ <span>two</span>
+ <span>words</span>
+</div>

Powered by Google App Engine
This is Rietveld 408576698