bug923376.html (534B)
1 <!doctype html> 2 <html class="reftest-wait"><div contenteditable></div> 3 <script src="/tests/SimpleTest/EventUtils.js"></script> 4 <script> 5 var div = document.body.firstChild; 6 div.focus(); 7 var { maybeOnSpellCheck } = SpecialPowers.ChromeUtils.importESModule( 8 "resource://testing-common/AsyncSpellCheckTestHelper.sys.mjs" 9 ); 10 maybeOnSpellCheck(div, function() { 11 div.innerHTML = 'something missspelled<br>something elsed#'; 12 maybeOnSpellCheck(div, function() { 13 document.documentElement.removeAttribute("class"); 14 }); 15 }); 16 </script>