helper_bug1733509.html (809B)
1 <html> 2 <script src="/tests/SimpleTest/EventUtils.js"></script> 3 <script src="/tests/SimpleTest/paint_listener.js"></script> 4 <script src="/tests/SimpleTest/SimpleTest.js"></script> 5 <script type="text/javascript" src="/tests/gfx/layers/apz/test/mochitest/apz_test_utils.js"></script> 6 <style> 7 body { 8 margin: 0; 9 padding: 20; 10 background-color: blueviolet; 11 } 12 13 button { 14 margin: 0; 15 } 16 </style> 17 18 <body> 19 <button id="btn">Click me</button> 20 </body> 21 22 <script> 23 // Silence SimpleTest warning about missing assertions by having it wait 24 // indefinitely. We don't need to give it an explicit finish because the 25 // entire window this test runs in will be closed after the main browser test 26 // finished. 27 SimpleTest.waitForExplicitFinish(); 28 </script> 29 30 </html>