OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script> | |
3 onload = function() { | |
4 document.documentElement.scrollTop = 10000; | |
5 } | |
6 </script> | |
7 <div style="position:fixed;"> | |
8 <p>Test that overflow on a spanner is propagated all the way up to the viewp ort.</p> | |
9 <p>You should see the word 'PASS' below.</p> | |
10 </div> | |
11 <!-- We need the below block with restricted height, like in the test. One might think it doesn't | |
12 matter, but because of crbug.com/450202 (which might not even be a bug), it does. --> | |
13 <div style="height:2em;"> | |
14 <div style="height:200vh;"></div> | |
15 PASS | |
16 </div> | |
OLD | NEW |