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

Unified Diff: LayoutTests/fast/multicol/composited-layer-single-fragment.html

Issue 799403006: [New Multicolumn] Make computeOffsetFromCompositedAncestor() flowthread-aware. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Simplify test. Created 6 years 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/composited-layer-single-fragment.html
diff --git a/LayoutTests/fast/multicol/composited-layer-single-fragment.html b/LayoutTests/fast/multicol/composited-layer-single-fragment.html
new file mode 100644
index 0000000000000000000000000000000000000000..5b014ccc5d13ebf2f6d724ccd24e8da8a0ef0d0c
--- /dev/null
+++ b/LayoutTests/fast/multicol/composited-layer-single-fragment.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<style>
+.multicol {
+ width: 60px;
+ -webkit-column-width: 20px;
+ -webkit-column-gap: 0;
+ column-fill: auto;
+ height: 60px;
+}
+.square {
+ width: 20px;
+ height: 20px;
+ background: green;
+}
+.layer { will-change: transform; }
+</style>
+
+<p>There should a green square below.</p>
+<div class="multicol">
+ <div class="square"></div>
+ <div class="square"></div>
+ <div class="layer"> <!-- bottom of first column -->
+ <div class="square"></div>
+ </div>
+ <div class="square"></div>
+ <div class="layer"> <!-- middle of second column -->
+ <div class="square"></div>
+ </div>
+ <div class="square"></div>
+ <div class="layer"> <!-- entire third column -->
+ <div class="square"></div>
+ <div class="square"></div>
+ <div class="square"></div>
+ </div>
+</div>
« no previous file with comments | « LayoutTests/VirtualTestSuites ('k') | LayoutTests/fast/multicol/composited-layer-single-fragment-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698