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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout.html
diff --git a/third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout.html b/third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout.html
new file mode 100644
index 0000000000000000000000000000000000000000..6e5e3f7c15f2b0078232b7220088e016853bee3c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/overflow/do-not-calc-overflow-on-tables-needing-layout.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<style>
+ .cell { display: table-cell; }
+ .cell:nth-last-child(even) { -webkit-transform: rotate(180deg); }
+</style>
+<body>
+ <div class="cell">crbug.com/604664: Tests passes if it doesn't crash.</div>
+ <div id="div" class="cell"></div>
+</body>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ var block = document.createElement('div');
+ document.body.offsetTop;
+ block.appendChild(document.getElementById("div"));
+</script>
« 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