OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 div { | 5 div { |
6 line-height: 50px; | 6 line-height: 50px; |
7 } | 7 } |
8 #outerdiv { | 8 #outerdiv { |
9 overflow:auto; | 9 overflow:auto; |
10 border: 2px solid #000FFF; | 10 border: 2px solid #000FFF; |
(...skipping 30 matching lines...) Expand all Loading... |
41 <body onload="start()"> | 41 <body onload="start()"> |
42 <div id="outerdiv"> | 42 <div id="outerdiv"> |
43 <p>Top of outer div.</p> | 43 <p>Top of outer div.</p> |
44 <div id="innerdiv"> | 44 <div id="innerdiv"> |
45 <p>Inner div.</p> | 45 <p>Inner div.</p> |
46 </div> | 46 </div> |
47 <p>Bottom of outer div.</p> | 47 <p>Bottom of outer div.</p> |
48 </div> | 48 </div> |
49 <p>Test for <a href="http://crbug.com/232965">bug 232965</a> This tests that ver
tical pan scrolling does not propagate from the inner div to the outer div when
the outer div has no vertical overflow.</p> | 49 <p>Test for <a href="http://crbug.com/232965">bug 232965</a> This tests that ver
tical pan scrolling does not propagate from the inner div to the outer div when
the outer div has no vertical overflow.</p> |
50 <div id="console"></div> | 50 <div id="console"></div> |
51 <script src="../js/resources/js-test-post.js"></script> | |
52 </body> | 51 </body> |
53 </html> | 52 </html> |
OLD | NEW |