summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug1258085.html
blob: 4d8e1ef8886ad84480c5ff97ffaf6b2f10502b51 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<title>Test for Bug 1258085</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
<div contenteditable></div>
<script>
var div = document.querySelector("div");

function reset() {
  div.innerHTML = "x<br> y";
  div.focus();
  synthesizeKey("KEY_ArrowDown");
}

function checks(msg) {
  is(div.innerHTML, "x<br><br>",
     msg + ": Should add a second <br> to prevent collapse of first");
  is(div.childNodes.length, 3, msg + ": No empty text nodes allowed");
  ok(getSelection().isCollapsed, msg + ": Selection must be collapsed");
  is(getSelection().focusNode, div, msg + ": Focus must be in div");
  is(getSelection().focusOffset, 2,
     msg + ": Focus must be between the two <br>s");
}

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
  // Put selection after the "y" and backspace
  reset();
  synthesizeKey("KEY_ArrowRight");
  synthesizeKey("KEY_Backspace");
  checks("Collapsed backspace");

  // Now do the same with delete
  reset();
  synthesizeKey("KEY_Delete");
  checks("Collapsed delete");

  // Forward selection
  reset();
  synthesizeKey("KEY_ArrowRight", {shiftKey: true});
  synthesizeKey("KEY_Backspace");
  checks("Forward-selected backspace");

  // Backward selection
  reset();
  synthesizeKey("KEY_ArrowRight");
  synthesizeKey("KEY_ArrowLeft", {shiftKey: true});
  synthesizeKey("KEY_Backspace");
  checks("Backward-selected backspace");

  // Make sure we're not deleting if the whitespace isn't actually collapsed
  div.style.whiteSpace = "pre-wrap";
  reset();
  synthesizeKey("KEY_ArrowRight");
  synthesizeKey("KEY_ArrowRight");
  synthesizeKey("KEY_Backspace");
  is(div.innerHTML, "x<br> ", "pre-wrap: Don't delete uncollapsed space");
  ok(getSelection().isCollapsed, "pre-wrap: Selection must be collapsed");
  is(getSelection().focusNode, div.lastChild,
     "pre-wrap: Focus must be in final text node");
  is(getSelection().focusOffset, 1, "pre-wrap: Focus must be at end of node");

  SimpleTest.finish();
});
</script>