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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/inner-percent-width-affects-outer-floated-div.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: naively pass scaled width to non-table parents Created 4 years, 7 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 <p>There should be a blue square below. Inner table's percent-driven width
dgrogan 2016/04/28 01:04:31 This is just a little different than your example
mstensho (USE GERRIT) 2016/04/28 09:18:05 Even better, I think. Then we actually test the re
3 should affect the shrink-to-fit div.</p>
4 <div style="float:left; background:blue;" data-expected-width=200 id="outerDiv">
5 <table cellspacing="0" cellpadding="0">
6 <td style="width:20%;">
7 <div style="width:40px; height:200px;"></div>
8 </td>
9 <td></td>
10 </table>
11 </div>
12 <script src="../../resources/check-layout.js"></script>
13 <script>
14 checkLayout('#outerDiv');
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698