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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/layout-section-when-table-height-changes-2.html

Issue 2701163002: Avoid pathological layout on nested percent height tables (Closed)
Patch Set: bug 687061 Created 3 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 <p>crbug.com/691968: There should be a blue square below.</p>
3 <table id="table" style="border-spacing:0; width:100px; height:200px; background :blue;" data-expected-height=100>
4 <tr>
5 <td></td>
6 </tr>
7 </table>
8 <div id="results"></div>
9 <script src="../../resources/testharness.js"></script>
10 <script src="../../resources/testharnessreport.js"></script>
11 <script src="../../resources/check-layout-th.js"></script>
12 <script>
13 document.body.offsetTop;
14 document.getElementById("table").style.height = "100px";
15 checkLayout('#table', results);
16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698