blob: 0ec11f7d0b57956a76b6c0e191591393f6dc03b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!doctype html>
<html class="reftest-wait"><div contenteditable>something missspelled<br>something elsed#</div>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script>
document.body.firstChild.focus();
SpecialPowers.Cu.import(
"resource://testing-common/AsyncSpellCheckTestHelper.jsm", window);
onSpellCheck(document.body.firstChild, function() {
document.documentElement.removeAttribute("class");
});
</script>
|