Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/multicol/abspos-in-clipped-relpos-in-second-column.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/multicol/abspos-in-clipped-relpos-in-second-column.html b/third_party/WebKit/LayoutTests/fast/multicol/abspos-in-clipped-relpos-in-second-column.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4dabbdbe8ce288e2763e202cda1dba7940eb017d |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/multicol/abspos-in-clipped-relpos-in-second-column.html |
| @@ -0,0 +1,9 @@ |
| +<!DOCTYPE html> |
| +<p>There should be a green square below, and no red.</p> |
|
mstensho (USE GERRIT)
2015/11/20 10:37:15
chrishtr wrote (in abspos-in-clipped-relpos-in-sec
|
| +<div style="-webkit-columns:2; -webkit-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> |