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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout.html

Issue 1901203002: Don't calculate overflow on tables that need layout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@604095-2
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout-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 .cell { display: table-cell; }
4 .cell:nth-last-child(even) { -webkit-transform: rotate(180deg); }
5 </style>
6 <body>
7 <div class="cell">crbug.com/604664: Tests passes if it doesn't crash.</div>
8 <div id="div" class="cell"></div>
9 </body>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13 var block = document.createElement('div');
14 document.body.offsetTop;
15 block.appendChild(document.getElementById("div"));
16 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698