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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/html/rendering/non-replaced-elements/tables/table-width-s.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 <!doctype html> 1 <!doctype html>
2 <link rel="match" href="table-width-ref.html"> 2 <link rel="match" href="table-width-ref.html">
3 3
4 <style> 4 <style>
5 table { 5 table {
6 border-collapse: collapse; 6 border-collapse: collapse;
7 } 7 }
8 8
9 td { 9 td {
10 padding: 0; 10 padding: 0;
11 } 11 }
12 </style> 12 </style>
13 13
14 <!-- width=0 should be treated as 'auto' --> 14 <!-- width=0 should be treated as 'auto' -->
15 <table width=0> 15 <table width=0>
16 <tr> 16 <tr>
17 <td> 17 <td>
18 a b 18 a b
19 </td> 19 </td>
20 </tr> 20 </tr>
21 </table> 21 </table>
22 22
23 <hr> 23 <hr>
24 24
25 <table width=1> 25 <table width=1>
26 <tr> 26 <tr>
27 <td> 27 <td>
28 a b 28 a b
29 </td> 29 </td>
30 </tr> 30 </tr>
31 </table> 31 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698