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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/html/rendering/non-replaced-elements/tables/table-width.html

Issue 2086283003: Update web-platform-tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into wpt_import Created 4 years, 5 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 <link rel="match" href="table-width-ref.html"> 1 <link rel="match" href="table-width-ref.html">
2 2
3 <style> 3 <style>
4 table { 4 table {
5 border-collapse: collapse; 5 border-collapse: collapse;
6 } 6 }
7 7
8 td { 8 td {
9 padding: 0; 9 padding: 0;
10 } 10 }
11 </style> 11 </style>
12 12
13 <!-- width=0 should be treated as 'auto' --> 13 <!-- width=0 should be treated as 'auto' -->
14 <table width=0> 14 <table width=0>
15 <tr> 15 <tr>
16 <td> 16 <td>
17 a b 17 a b
18 </td> 18 </td>
19 </tr> 19 </tr>
20 </table> 20 </table>
21 21
22 <hr> 22 <hr>
23 23
24 <table width=1> 24 <table width=1>
25 <tr> 25 <tr>
26 <td> 26 <td>
27 a b 27 a b
28 </td> 28 </td>
29 </tr> 29 </tr>
30 </table> 30 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698