Index: LayoutTests/fast/repaint/multicol-with-abspos-in-relpos.html |
diff --git a/LayoutTests/fast/repaint/multicol-with-abspos-in-relpos.html b/LayoutTests/fast/repaint/multicol-with-abspos-in-relpos.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2cada02851e1a2138ed8a03fe255950d835e4631 |
--- /dev/null |
+++ b/LayoutTests/fast/repaint/multicol-with-abspos-in-relpos.html |
@@ -0,0 +1,28 @@ |
+<!DOCTYPE html> |
+<script src="resources/text-based-repaint.js"></script> |
+<script> |
+ if (window.internals) { |
+ internals.settings.setRegionBasedColumnsEnabled(true); |
+ onload = runRepaintTest; |
+ } else { |
+ onclick = repaintTest; |
+ } |
+ function repaintTest() { |
+ var target = document.getElementById('target'); |
+ target.style.visibility = 'visible'; |
+ } |
+</script> |
+<div style="-webkit-columns:4; -webkit-column-gap:10px; column-fill:auto; width:630px; height:40px; font:20px/1 ahem; color:green;"> |
+ <br> |
+ <br> |
+ <br> |
+ <br> |
+ <br> |
+ <br> |
+ <div style="position:relative;"> |
+ <br> |
+ <br> |
+ <div id="target" style="position:absolute; left:20px; top:20px; visibility:hidden;">PASS</div> |
+ </div> |
+</div> |
+<p>A green rectangle should be seen above (if tested manually, you need to click first).</p> |