blob: 94cc07c2bf8738b17332ff7f029ccba5aa865f9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!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"]');
const noneditable = document.querySelector('div[contenteditable="false"]');
editable.focus();
synthesizeKey("KEY_ArrowDown");
setTimeout(() => document.documentElement.removeAttribute("class"), 0);
});
</script>
</html>
|