summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug923376-ref.html
blob: 9f2c237265a9ef4e3ab44cc5a6e5affc517e8cd9 (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.import(
  "resource://testing-common/AsyncSpellCheckTestHelper.jsm"
);
maybeOnSpellCheck(document.body.firstChild, function() {
  document.documentElement.removeAttribute("class");
});
</script>