diff options
Diffstat (limited to 'layout/base/tests/bug1506547-2.html')
-rw-r--r-- | layout/base/tests/bug1506547-2.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/base/tests/bug1506547-2.html b/layout/base/tests/bug1506547-2.html new file mode 100644 index 0000000000..b9ccda446c --- /dev/null +++ b/layout/base/tests/bug1506547-2.html @@ -0,0 +1,30 @@ +<!doctype html> +<html class="reftest-wait"> +<title>Moving the caret in an editor jumps over non-editable nodes.</title> +<script src="/tests/SimpleTest/EventUtils.js"></script> +<script src="/tests/SimpleTest/SimpleTest.js"></script> +<style> + * { outline: none } + + div { + border: 1px solid red; + margin: 5px; + padding: 2px; + } +</style> +<div contenteditable="true"> + I am div number one + <div contenteditable="false">X X X</div> + However I am editable +</div> +<script> +SimpleTest.waitForFocus(function() { + const editable = document.querySelector('div[contenteditable="true"]'); + editable.focus(); + // 5 words in the first line, plus the non-editable node. + for (let i = 0; i < "I am div number one".length + 2; ++i) + synthesizeKey("KEY_ArrowRight"); + setTimeout(() => document.documentElement.removeAttribute("class"), 0); +}); +</script> +</html> |