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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/abspos-in-overflow-hidden-in-2nd-column.html

Issue 1819603003: Shift flowthread-to-visual coordinate space conversion one level up in the tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update unit tests. Created 4 years, 9 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/fast/multicol/abspos-in-overflow-hidden-in-2nd-column.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/abspos-in-overflow-hidden-in-2nd-column.html b/third_party/WebKit/LayoutTests/fast/multicol/abspos-in-overflow-hidden-in-2nd-column.html
new file mode 100644
index 0000000000000000000000000000000000000000..56bdb384ca5ecd7a210354be82c4e750830b5473
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/abspos-in-overflow-hidden-in-2nd-column.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<p>There should be a green square below, and no red.</p>
+<div style="columns:2; column-gap:0; column-fill:auto; width:400px; height:200px;">
+ <div style="height:200px;"></div>
+ <div style="position:relative; overflow:hidden; height:100px;">
+ <div style="width:100px; height:100px; background:red;"></div>
+ <div style="position:absolute; left:0; top:0; width:100px; height:100px; background:green;"></div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698