bug1097242-1.html (675B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <script src="/tests/SimpleTest/SimpleTest.js"></script> 4 <script src="/tests/SimpleTest/EventUtils.js"></script> 5 <script> 6 function focused() { 7 document.documentElement.removeAttribute("class"); 8 } 9 </script> 10 <body> 11 <div contenteditable spellcheck="false" onfocus="focused()" 12 style="outline: none">foo<span contenteditable=false 13 style="-moz-user-select: none">bar</span>baz</div> 14 <script> 15 SimpleTest.waitForFocus(() => { 16 SimpleTest.executeSoon(() => { 17 synthesizeMouseAtCenter(document.querySelector("span"), {}); 18 }); 19 }); 20 </script> 21 </body> 22 </html>