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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/borders/table-borders.html

Issue 1607703003: Don't force display:inline-table/table on table elements when in quirks mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style type="text/css"> 3 <style type="text/css">
4 table { 4 table {
5 margin: 20px; 5 margin: 20px;
6 display: inline-block; 6 display: inline-table;
7 } 7 }
8 8
9 .wide td { 9 .wide td {
10 /* border-width: 10px;*/ 10 /* border-width: 10px;*/
11 } 11 }
12 12
13 .transformed { 13 .transformed {
14 transform: rotate(45deg); 14 transform: rotate(45deg);
15 } 15 }
16 </style> 16 </style>
17 </head> 17 </head>
18 <body> 18 <body>
19 <!-- <table border="1"> 19 <!-- <table border="1">
20 <tr><td>&nbsp;</td><td>&nbsp;</td></tr> 20 <tr><td>&nbsp;</td><td>&nbsp;</td></tr>
21 <tr><td>&nbsp;</td><td>&nbsp;</td></tr> 21 <tr><td>&nbsp;</td><td>&nbsp;</td></tr>
22 </table> 22 </table>
23 23
24 <table border="5" class="wide"> 24 <table border="5" class="wide">
25 <tr><td>&nbsp;</td></tr> 25 <tr><td>&nbsp;</td></tr>
26 </table> --> 26 </table> -->
27 27
28 <table border="5" class="wide transformed"> 28 <table border="5" class="wide transformed">
29 <tr><td>&nbsp;</td></tr> 29 <tr><td>&nbsp;</td></tr>
30 </table> 30 </table>
31 31
32 </body> 32 </body>
33 </html> 33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698