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

Side by Side Diff: LayoutTests/fast/forms/button-table-styles.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 This tests that buttons don't honor table display styles. 1 This tests that buttons do not allow table display styles except for display:tab le-cell.
2 <br> 2 <br>
3 <input type="button" value="display: table" style="display: table;"> 3 <input type="button" value="display: table" style="display: table;">
4 <input type="button" value="display: table" style="display: table;"> 4 <input type="button" value="display: table" style="display: table;">
5 <br><br> 5 <br><br>
6 <input type="button" value="display: inline-table" style="display: inline-table; "> 6 <input type="button" value="display: inline-table" style="display: inline-table; ">
7 <input type="button" value="display: inline-table" style="display: inline-table; "> 7 <input type="button" value="display: inline-table" style="display: inline-table; ">
8 <br><br> 8 <br><br>
9 <input type="button" value="display: table-row-group" style="display: table-row- group;"> 9 <input type="button" value="display: table-row-group" style="display: table-row- group;">
10 <input type="button" value="display: table-row-group" style="display: table-row- group;"> 10 <input type="button" value="display: table-row-group" style="display: table-row- group;">
11 <br><br> 11 <br><br>
(...skipping 10 matching lines...) Expand all
22 <input type="button" value="display: table-column-group" style="display: table-c olumn-group;"> 22 <input type="button" value="display: table-column-group" style="display: table-c olumn-group;">
23 <br><br> 23 <br><br>
24 <input type="button" value="display: table-column" style="display: table-column; "> 24 <input type="button" value="display: table-column" style="display: table-column; ">
25 <input type="button" value="display: table-column" style="display: table-column; "> 25 <input type="button" value="display: table-column" style="display: table-column; ">
26 <br><br> 26 <br><br>
27 <input type="button" value="display: table-cell" style="display: table-cell;"> 27 <input type="button" value="display: table-cell" style="display: table-cell;">
28 <input type="button" value="display: table-cell" style="display: table-cell;"> 28 <input type="button" value="display: table-cell" style="display: table-cell;">
29 <br><br> 29 <br><br>
30 <input type="button" value="display: table-caption" style="display: table-captio n;"> 30 <input type="button" value="display: table-caption" style="display: table-captio n;">
31 <input type="button" value="display: table-caption" style="display: table-captio n;"> 31 <input type="button" value="display: table-caption" style="display: table-captio n;">
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698