summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug611182.html
blob: e6ecc67168e5e430c956b07534f05004a1c7938e (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=611182
-->
<head>
  <title>Test for Bug 611182</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/WindowSnapshot.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=611182">Mozilla Bug 611182</a>
<p id="display"></p>
<div id="content">
  <iframe></iframe>
  <iframe id="ref" src="data:text/html,foo bar"></iframe>
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 611182 **/
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
  var iframe = document.querySelector("iframe");
  var refElem = document.querySelector("#ref");
  var ref = snapshotWindow(refElem.contentWindow, false);

  function findTextNode(doc) {
    var body = doc.documentElement;
    var result = findTextNodeWorker(body);
    ok(result, "Failed to find the text node");
    return result;
  }

  function findTextNodeWorker(root) {
    if (root.isContentEditable) {
      root.focus();
    }
    for (var i = 0; i < root.childNodes.length; ++i) {
      var node = root.childNodes[i];
      if (node.nodeType == node.TEXT_NODE &&
          node.nodeValue == "fooz bar") {
        return node;
      }
      if (node.nodeType == node.ELEMENT_NODE) {
        node = findTextNodeWorker(node);
        if (node) {
          return node;
        }
      }
    }
    return null;
  }

  function testBackspace(src, callback) {
    ok(true, "Testing " + src);
    iframe.addEventListener("load", function() {
      iframe.removeEventListener("load", arguments.callee, false);

      var doc = iframe.contentDocument;
      var win = iframe.contentWindow;
      doc.body.setAttribute("spellcheck", "false");

      iframe.focus();
      var textNode = findTextNode(doc);
      var sel = win.getSelection();
      sel.collapse(textNode, 4);
      synthesizeKey("VK_BACK_SPACE", {});
      is(textNode.textContent, "foo bar", "Backspace should work correctly");

      var snapshot = snapshotWindow(win, false);
      ok(compareSnapshots(snapshot, ref, true)[0], "No bogus node should exist in the document");

      callback();
    }, false);
    iframe.src = src;
  }

  const TEST_URIS = [
    "data:text/html,<html contenteditable>fooz bar</html>",
    "data:text/html,<html contenteditable><body>fooz bar</body></html>",
    "data:text/html,<body contenteditable>fooz bar</body>",
    "data:text/html,<body contenteditable><p>fooz bar</p></body>",
    "data:text/html,<body contenteditable><div>fooz bar</div></body>",
    "data:text/html,<body contenteditable><span>fooz bar</span></body>",
    "data:text/html,<p contenteditable style='outline:none'>fooz bar</p>",
    "data:text/html,<!DOCTYPE html><html><body contenteditable>fooz bar</body></html>",
    "data:text/html,<!DOCTYPE html><html contenteditable><body>fooz bar</body></html>",
    'data:application/xhtml+xml,<html xmlns="http://www.w3.org/1999/xhtml"><body contenteditable="true">fooz bar</body></html>',
    'data:application/xhtml+xml,<html xmlns="http://www.w3.org/1999/xhtml" contenteditable="true"><body>fooz bar</body></html>',
    "data:text/html,<body onload=\"document.designMode='on'\">fooz bar</body>",
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'var old = document.body;' +
                       'old.parentNode.removeChild(old);' +
                       'var r = document.documentElement;' +
                       'var b = document.createElement("body");' +
                       'r.appendChild(b);' +
                       'b.appendChild(document.createTextNode("fooz bar"));' +
                       'b.contentEditable = "true";' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'var old = document.body;' +
                       'old.parentNode.removeChild(old);' +
                       'var r = document.documentElement;' +
                       'var b = document.createElement("body");' +
                       'b.appendChild(document.createTextNode("fooz bar"));' +
                       'b.contentEditable = "true";' +
                       'r.appendChild(b);' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'var old = document.body;' +
                       'old.parentNode.removeChild(old);' +
                       'var r = document.documentElement;' +
                       'var b = document.createElement("body");' +
                       'r.appendChild(b);' +
                       'b.appendChild(document.createTextNode("fooz bar"));' +
                       'b.setAttribute("contenteditable", "true");' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'var old = document.body;' +
                       'old.parentNode.removeChild(old);' +
                       'var r = document.documentElement;' +
                       'var b = document.createElement("body");' +
                       'b.appendChild(document.createTextNode("fooz bar"));' +
                       'b.setAttribute("contenteditable", "true");' +
                       'r.appendChild(b);' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'var old = document.body;' +
                       'old.parentNode.removeChild(old);' +
                       'var r = document.documentElement;' +
                       'var b = document.createElement("body");' +
                       'r.appendChild(b);' +
                       'b.contentEditable = "true";' +
                       'b.appendChild(document.createTextNode("fooz bar"));' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'var old = document.body;' +
                       'old.parentNode.removeChild(old);' +
                       'var r = document.documentElement;' +
                       'var b = document.createElement("body");' +
                       'b.contentEditable = "true";' +
                       'r.appendChild(b);' +
                       'b.appendChild(document.createTextNode("fooz bar"));' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'var old = document.body;' +
                       'old.parentNode.removeChild(old);' +
                       'var r = document.documentElement;' +
                       'var b = document.createElement("body");' +
                       'r.appendChild(b);' +
                       'b.setAttribute("contenteditable", "true");' +
                       'b.appendChild(document.createTextNode("fooz bar"));' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'var old = document.body;' +
                       'old.parentNode.removeChild(old);' +
                       'var r = document.documentElement;' +
                       'var b = document.createElement("body");' +
                       'b.setAttribute("contenteditable", "true");' +
                       'r.appendChild(b);' +
                       'b.appendChild(document.createTextNode("fooz bar"));' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'document.open();' +
                       'document.write("<body contenteditable>fooz bar</body>");' +
                       'document.close();' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'document.open();' +
                       'document.write("<body contenteditable><div>fooz bar</div></body>");' +
                       'document.close();' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'document.open();' +
                       'document.write("<body contenteditable><span>fooz bar</span></body>");' +
                       'document.close();' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'document.open();' +
                       'document.write("<p contenteditable style=\\"outline: none\\">fooz bar</p>");' +
                       'document.close();' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'document.open();' +
                       'document.write("<html contenteditable>fooz bar</html>");' +
                       'document.close();' +
                     '};' +
                   '<\/script><body></body></html>',
    'data:text/html,<html><script>' +
                     'onload = function() {' +
                       'document.open();' +
                       'document.write("<html contenteditable><body>fooz bar</body></html>");' +
                       'document.close();' +
                     '};' +
                   '<\/script><body></body></html>',
  ];
  var currentTest = 0;
  function runAllTests() {
    if (currentTest == TEST_URIS.length) {
      SimpleTest.finish();
      return;
    }
    testBackspace(TEST_URIS[currentTest++], runAllTests);
  }
  runAllTests();
});

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