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