mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
443 B
HTML
12 lines
443 B
HTML
<!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://gre/modules/AsyncSpellCheckTestHelper.jsm",
|
|
window);
|
|
onSpellCheck(document.body.firstChild, function() {
|
|
document.documentElement.removeAttribute("class");
|
|
});
|
|
</script>
|