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

Side by Side Diff: LayoutTests/fast/table/whitespace-between-elements-with-table-cell-display-2.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 { display:table-cell; width:50px; height: 50px; margin:0; border:none; pad ding: 0; background:transparent; }
4 </style>
5 <p>crbug.com/515771: Form elements with a table cell display should not allow wh itespace between them. </p>
6 <p>There should only be green below.</p>
7 <div style="display:table;">
8 <div style="display:table-column; background:green;"></div>
9 <div style="display:table-column; background:red;"></div>
10 <div style="display:table-column; background:salmon;"></div>
11 <div style="display:table-column; background:red;"></div>
12 <input>
13 <input>
14 <input>
15 <input>
16 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698