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

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

Issue 1612273002: Don't force display:table-cell and float:none on table cell 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>th with float</title> 3 <title>th with float</title>
4 <style type="text/css" media="screen"> 4 <style type="text/css" media="screen">
5 table { 5 table {
6 border: 1px solid black; 6 border: 1px solid black;
7 } 7 }
8 8
9 th { 9 th {
10 float: left; 10 float: left;
11 } 11 }
12
13 td {
14 float: right;
15 }
16 </style> 12 </style>
17 </head> 13 </head>
18 <body> 14 <body>
19 15
20 <table> 16 <table>
21 <thead> 17 <thead>
22 <tr><th>Head 1</th><th>Head 2</th></tr> 18 <tr><th>Head 1</th><th>Head 2</th></tr>
23 </thead> 19 </thead>
24 <tfoot> 20 <tfoot>
25 <tr><td>Footer 1</td><td>Footer 2</td></tr> 21 <tr><td>Footer 1</td><td>Footer 2</td></tr>
26 </tfoot> 22 </tfoot>
27 <tbody> 23 <tbody>
28 <tr><td>Cell 1</td><td>Cell 2</td></tr> 24 <tr><td>Cell 1</td><td>Cell 2</td></tr>
29 <tr><td>Cell 3</td><td>Cell 4</td></tr> 25 <tr><td>Cell 3</td><td>Cell 4</td></tr>
30 </tbody> 26 </tbody>
31 </table> 27 </table>
32 28
33 29
34 </body> 30 </body>
35 </html> 31 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/quirks-mode-ignore-display-inline-table.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698