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

Side by Side Diff: LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-3.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, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 input, button {
4 display: table-cell;
5 width: 50px;
6 height: 100px;
7 background: blue;
8 border: none;
9 padding: 0;
10 vertical-align: bottom;
11 }
12 </style>
13 <p>crbug.com/515771: Form elements with a table cell display should not allow wh itespace between them. </p>
14 <p>There should be a blue square below.</p>
15 <div style="display:table;">
16 <div></div>
17 <input>
18 <button></button>
19 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698