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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/max-width-integer-overflow.html

Issue 1921973005: [css tables] Don't pass table width increase due to % columns to parents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move variables around Created 4 years, 8 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 PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
dgrogan 2016/04/27 03:14:04 This was testing the earliest ancestor of TableLay
2 <html>
3 <head>
4 </head>
5 <body>
6 <table style="width: 780px; background-color: red;" cellspacing="0" cellpadd ing="0">
7 <tr>
8 <td>
9 <table cellspacing="0" cellpadding="0">
10 <tr>
11 <td>
12 <div style="width: 100%;">
13 <table style="background-color: green;">
14 <tr style="height: 20px;">
15 <td width="100%"></td>
16 <td width="300"></td>
17 </tr>
18 </table>
19 </div>
20 </td>
21 </tr>
22 </table>
23 </td>
24 <td>
25 <div style="width: 10px; background-color: green; height: 24px;" ></div>
26 </td>
27 </tr>
28 </table>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698