focus_after_prompt.html (479B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Cursor should not be lost after prompt</title> 6 <script type="application/javascript"> 7 function init() { 8 document.getElementById("edit").contentWindow.document.designMode = "on"; 9 } 10 </script> 11 </head> 12 13 <body onload="init()"> 14 <div id="clickMeDiv" onclick="prompt('This is a dummy prompt!');" 15 onmousedown="return false;">Click me!</div> 16 <iframe id="edit"></iframe> 17 </body> 18 </html>