summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug1506547-2.html
blob: b9ccda446c707765ba10f2c3b1043be7b24abe08 (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
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>