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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/zero-width-on-table-is-auto.html

Issue 1682453004: Treat <table> widths of 0 as auto. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: just check in shouldScaleColumns Created 4 years, 10 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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 td { padding: 0px; }
4 table { border-spacing: 0px; }
5 .yellow { background-color: yellow; }
6 .red { background-color: red; }
7 .green { background-color: green; }
8 </style>
9 </head>
10 <table id="outerTable" style="width:0px;" class="yellow" data-expected-width="20 0">
mstensho (USE GERRIT) 2016/02/10 10:04:09 Can you add a pass condition text in front of this
dgrogan 2016/02/10 18:38:25 Done.
11 <tr>
12 <td>
13 <table class="red">
14 <tr>
15 <td style="width:50%;">
16 <div style="width:200px;height:20px" class="green"></div >
17 </td>
18 </tr>
19 </table>
20 </td>
21 </tr>
22 </table>
23 <script src="../../resources/check-layout.js"></script>
24 <script>
25 checkLayout('#outerTable');
26 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698