input-stoppropagation-ref.html (392B)
1 <!doctype html> 2 <html> 3 <script src="/tests/SimpleTest/EventUtils.js"></script> 4 <script> 5 function onLoad() { 6 document.getElementById("input1").focus(); 7 synthesizeKey("KEY_Tab"); 8 synthesizeKey("KEY_Tab", {shiftKey: true}); 9 synthesizeKey("KEY_Tab"); 10 } 11 </script> 12 <body onload="onLoad()"> 13 <input type="text" id="input1"></input> 14 <input type="text" id="input2"></input> 15 </body> 16 </html>