Index: LayoutTests/fast/multicol/scrolling-overflow-expected.html |
diff --git a/LayoutTests/fast/multicol/scrolling-overflow-expected.html b/LayoutTests/fast/multicol/scrolling-overflow-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..99f3839a405bd90e227d9ff54c2ff53b00cf886d |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/scrolling-overflow-expected.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<script> |
+ onload = function() { document.documentElement.scrollLeft = 150 - 10; } |
+</script> |
+<style> |
+ body { margin:10px; } |
+</style> |
+ |
+<p style="position:fixed; top:0;">Below there should be a green square with a black border, and no red.</p> |
+<div style="margin-top:5em;"> |
+ <div style="float:right; width:0;"> |
+ <div style="width:100px; height:100px; margin-left:50px; box-sizing:border-box; border:3px solid black; background:green;"></div> |
+ </div> |
+ <div style="padding-left:50px; width:200%; height:1px;"></div> <!-- set scroll area --> |
+</div> |