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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/dynamic/valid-spanner-container-becomes-invalid.html

Issue 2479873002: Descendants may become or cease to be spanners when an ancestor changes style. (Closed)
Patch Set: Created 4 years, 1 month 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/fast/multicol/dynamic/valid-spanner-container-becomes-invalid.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/dynamic/valid-spanner-container-becomes-invalid.html b/third_party/WebKit/LayoutTests/fast/multicol/dynamic/valid-spanner-container-becomes-invalid.html
new file mode 100644
index 0000000000000000000000000000000000000000..3d7aa83738c4b48d5cbcf25ec6f6b38124588956
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/dynamic/valid-spanner-container-becomes-invalid.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<p>There should be two blue squares below.</p>
+<div id="multicol" style="columns:2; column-gap:50px; width:150px;">
+ <div id="changeMe" style="width:50px;">
+ <div id="spanner" style="column-span:all; height:100px; background:blue;"></div>
+ </div>
+</div>
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+<script>
+test(() => {
+ var multicol = document.getElementById("multicol");
+ var spanner = document.getElementById("spanner");
+ var changeMe = document.getElementById('changeMe');
+ document.documentElement.offsetTop;
+
+ changeMe.style.cssFloat = 'left';
+ assert_equals(multicol.offsetHeight, 50);
+ assert_equals(spanner.offsetWidth, 50);
+}, "Turn a spanner's parent from regular block into float");
+</script>

Powered by Google App Engine
This is Rietveld 408576698