Index: LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-3 |
diff --git a/LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-3 b/LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-3 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..25bed3ef532cc8c00de8a970aa4e98daf81b6d58 |
--- /dev/null |
+++ b/LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-3 |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
mstensho (USE GERRIT)
2015/08/26 18:45:56
Poor file name has no extension. :(
|
+<style> |
+input, button { |
+ display: table-cell; |
+ width: 50px; |
+ height: 100px; |
+ background: blue; |
+ border: none; |
+ padding: 0; |
+ vertical-align: bottom; |
+} |
+</style> |
+<p>crbug.com/515771: Form elements with a table cell display should not allow whitespace between them. </p> |
+<p>There should be a blue square below.</p> |
+<div style="display:table;"> |
+ <div></div> |
+ <input> |
+ <button></button> |
+</div> |