helper_scroll_thumb_dragging.html (749B)
1 <!DOCTYPE html> 2 <script src="/tests/SimpleTest/SimpleTest.js"></script> 3 <script src="/tests/SimpleTest/paint_listener.js"></script> 4 <script src="apz_test_utils.js"></script> 5 <script src="apz_test_native_event_utils.js"></script> 6 <style> 7 iframe { 8 width: 500px; 9 height: 50px; /* lower height relative to the root scrollable height */ 10 } 11 </style> 12 <div style="height: 200vh;"></div> 13 <iframe src="http://example.org/"></iframe> 14 <div style="height: 200vh;"></div> 15 <script> 16 // Silence SimpleTest warning about missing assertions by having it wait 17 // indefinitely. We don't need to give it an explicit finish because the 18 // entire window this test runs in will be closed after subtestDone is called. 19 SimpleTest.waitForExplicitFinish(); 20 </script>