summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug923376-ref.html
blob: 859e5023ef1eb6247a77a983516657254a200d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!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();
var { maybeOnSpellCheck } = SpecialPowers.ChromeUtils.importESModule(
  "resource://testing-common/AsyncSpellCheckTestHelper.sys.mjs"
);
maybeOnSpellCheck(document.body.firstChild, function() {
  document.documentElement.removeAttribute("class");
});
</script>