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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/auto-table-columns-dont-scale.html

Issue 1682453004: Treat <table> widths of 0 as auto. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename test; factor out isAuto method 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/auto-table-columns-dont-scale-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 This test passes if no red is showing.
11 <table id="outerTable" style="width:0px;" class="yellow" data-expected-width="20 0">
12 <tr>
13 <td>
14 <table class="red">
15 <tr>
16 <td style="width:50%;">
17 <div style="width:200px;height:20px" class="green"></div >
18 </td>
19 </tr>
20 </table>
21 </td>
22 </tr>
23 </table>
24 <script src="../../resources/check-layout.js"></script>
25 <script>
26 checkLayout('#outerTable');
27 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/auto-table-columns-dont-scale-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698