diff options
Diffstat (limited to '')
-rw-r--r-- | layout/base/tests/bug923376-ref.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layout/base/tests/bug923376-ref.html b/layout/base/tests/bug923376-ref.html new file mode 100644 index 0000000000..9f2c237265 --- /dev/null +++ b/layout/base/tests/bug923376-ref.html @@ -0,0 +1,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> |