insertunorderedlist-in-empty-inline-editing-host.html (362B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Test for bug 615015 of Mozilla</title> 6 <script> 7 function boom() 8 { 9 document.getElementById("j").focus(); 10 try { 11 document.execCommand("insertunorderedlist", false, null); 12 } catch(e) { } 13 } 14 </script> 15 </head> 16 <body onload="boom();"><span><span contenteditable id="j"></span>T</span></body> 17 </html>