tenfourfox/editor/reftests/spellcheck-contenteditable-disabled-partial-ref.html

13 lines
355 B
HTML
Raw Permalink Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<body>
<span contenteditable>sakde</span> kreid <span contenteditable>slodv</span>
<script>
// Adding focus to the textbox should trigger a spellcheck
document.querySelector("span").focus();
document.querySelector("span + span").focus();
document.querySelector("span + span").blur();
</script>
</body>
</html>