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

Unified Diff: LayoutTests/fast/multicol/content-change-same-height.html

Issue 288263002: [New Multicolumn] Rebalance properly when child content changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: code review Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/multicol/content-change-same-height.html
diff --git a/LayoutTests/fast/multicol/content-change-same-height.html b/LayoutTests/fast/multicol/content-change-same-height.html
new file mode 100644
index 0000000000000000000000000000000000000000..9af37214807bb9634f2d715d53349f095fb0a944
--- /dev/null
+++ b/LayoutTests/fast/multicol/content-change-same-height.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<script>
+ if (window.internals)
+ internals.settings.setRegionBasedColumnsEnabled(true);
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ onload = function() {
+ document.body.offsetTop;
+ document.getElementById('elm').innerHTML= "x";
+ document.body.offsetTop;
+ document.getElementById('elm').innerHTML= "PASS";
+ }
+</script>
+<p>No assertions should fail.</p>
+<div style="-webkit-columns:2; columns:2;">
+ <span id="elm">FAIL</span>
+</div>

Powered by Google App Engine
This is Rietveld 408576698