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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html

Issue 2692083002: Avoid unnecessary cell layout on nested percent height tables (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html
index 013c37972c68d297293d4cad466e57579afd37df..6c8da19e028f53baeac839c921f185da5e24b142 100644
--- a/third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/table-two-pass-layout-overpaint-expected.html
@@ -11,8 +11,14 @@
<tr>
<td>
<div id="target"></div>
+ <div id="dummy"></div>
</td>
</tr>
</table>
</body>
</html>
+<!-- crbug.com/690087: We do this to force a two-pass layout so that we get the same height on the table as the reference. -->
+<script>
+ document.body.offsetTop;
+ document.getElementById("dummy").style.display = "none";
+</script>

Powered by Google App Engine
This is Rietveld 408576698