Index: LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html |
diff --git a/LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html b/LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7a49dca09d8f081cbf9e38ac263fb5bf7c1d91d0 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/span/overflow-on-multicol-expected.html |
@@ -0,0 +1,18 @@ |
+<!DOCTYPE html> |
+<script> |
+ onload = function() { |
+ document.getElementById('target').scrollTop = 10000; |
+ } |
+</script> |
+<div style="position:fixed;"> |
+ <p>Test that overflow on a spanner is propagated to its scrollable multicol container.</p> |
+ <p>You should see the word 'PASS' below.</p> |
+</div> |
+<div id="target" style="overflow:scroll; line-height:2em; height:4em;"> |
+ <!-- We need the below block with restricted height, like in the test. One might think it |
+ doesn't matter, but because of crbug.com/450202 (which might not even be a bug), it |
+ does. --> |
+ <div style="height:2em;"> |
+ <br><br><br><br>PASS |
+ </div> |
+</div> |