summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug449243.html
blob: 77a7c6a7d1a83c8a62e49621ea978b4cfd735468 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=449243
-->
<head>
  <title>Test for Bug 449243</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=449243">Mozilla Bug 449243</a>
<p id="display"></p>
<div id="content" contenteditable>
  <h2>This is a title</h2>
  <ul>
    <li>this is a</li>
    <li>bullet list</li>
  </ul>
  <ol>
    <li>this is a</li>
    <li>numbered list</li>
  </ol>
</div>

<pre id="test">
<script type="application/javascript">

/** Test for Bug 449243 **/
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(runTests);

const CARET_BEGIN  = 0;
const CARET_MIDDLE = 1;
const CARET_END    = 2;

function split(element, caretPos, nbKeyPresses) {
  // put the caret on the requested position
  var sel = window.getSelection();
  var len = element.textContent.length;
  var pos = -1;
  switch (caretPos) {
    case CARET_BEGIN:
      pos = 0;
      break;
    case CARET_MIDDLE:
      pos = Math.floor(len/2);
      break;
    case CARET_END:
      pos = len;
      break;
  }
  sel.collapse(element.firstChild, pos);
  
  // simulates a [Return] keypress
  for (var i = 0; i < nbKeyPresses; i++)
    synthesizeKey("VK_RETURN", {});
}

function undo(nbKeyPresses) {
  for (var i = 0; i < nbKeyPresses; i++)
    document.execCommand("Undo", false, null);
}

function SameTypeAsPreviousSibling(element) {
  var sibling = element.previousSibling;
  while (sibling && sibling.nodeType != 1)
    sibling = element.previousSibling;
  return (element.nodeName == sibling.nodeName);
}

function isParagraph(element) {
  return element.nodeName.toLowerCase() == "p";
}

function runTests() {
  const content = document.querySelector("[contenteditable]");
  const header = content.querySelector("h2");
  const ulItem = content.querySelector("ul > li:last-child");
  const olItem = content.querySelector("ol > li:last-child");
  content.focus();

  // beginning of selection: split current node
  split(header, CARET_BEGIN, 1);
  ok(SameTypeAsPreviousSibling(header),
    "Pressing [Return] at the beginning of a header " + 
    "should create another header.");
  split(ulItem, CARET_BEGIN, 2);
  ok(SameTypeAsPreviousSibling(ulItem),
    "Pressing [Return] at the beginning of an unordered list item " + 
    "should create another list item.");
  split(olItem, CARET_BEGIN, 2);
  ok(SameTypeAsPreviousSibling(olItem),
    "Pressing [Return] at the beginning of an ordered list item " + 
    "should create another list item.");
  undo(3);

  // middle of selection: split current node
  split(header, CARET_MIDDLE, 1);
  ok(SameTypeAsPreviousSibling(header),
    "Pressing [Return] at the middle of a header " + 
    "should create another header.");
  split(ulItem, CARET_MIDDLE, 2);
  ok(SameTypeAsPreviousSibling(ulItem),
    "Pressing [Return] at the middle of an unordered list item " + 
    "should create another list item.");
  split(olItem, CARET_MIDDLE, 2);
  ok(SameTypeAsPreviousSibling(olItem),
    "Pressing [Return] at the middle of an ordered list item " + 
    "should create another list item.");
  undo(3);

  // end of selection: create a new paragraph
  split(header, CARET_END, 1);
  ok(isParagraph(content.querySelector("h2+*")),
    "Pressing [Return] at the end of a header " + 
    "should create a new paragraph.");
  split(ulItem, CARET_END, 2);
  ok(isParagraph(content.querySelector("ul+*")),
    "Pressing [Return] twice at the end of an unordered list item " + 
    "should create a new paragraph.");
  split(olItem, CARET_END, 2);
  ok(isParagraph(content.querySelector("ol+*")),
    "Pressing [Return] twice at the end of an ordered list item " + 
    "should create a new paragraph.");
  undo(3);

  // done
  SimpleTest.finish();
}

</script>
</pre>
</body>
</html>