summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug1250010.html
blob: d1e0154dc9ebdad8d6b087a765238ab89dea0b4a (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
<!DOCTYPE>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1250010
-->
<head>
  <title>Test for Bug 1250010</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css">
  <script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<div id="display">
</div>

<div id="test1" contenteditable><p><b><font color="red">1234567890</font></b></p></div>
<div id="test2" contenteditable><p><tt>xyz</tt></p><p><tt><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAIAAABvrngfAAAAFklEQVQImWMwjWhCQwxECoW3oCHihAB0LyYv5/oAHwAAAABJRU5ErkJggg=="></tt></p></div>

<pre id="test">
</pre>

<script class="testbody" type="application/javascript">

function getImageDataURI()
{
  return document.getElementsByTagName("img")[0].getAttribute("src");
}

/** Test for Bug 1250010 **/
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {

  // First test: Empty paragraph is split correctly.
  var div = document.getElementById("test1");
  div.focus();
  synthesizeMouseAtCenter(div, {});

  var sel = window.getSelection();
  var selRange = sel.getRangeAt(0);
  is(selRange.endContainer.nodeName, "#text", "selection should be at the end of text node");
  is(selRange.endOffset, 10, "offset should be 10");

  synthesizeKey("VK_RETURN", {});
  synthesizeKey("VK_RETURN", {});
  synthesizeKey("b", {});
  synthesizeKey("VK_UP", {});
  synthesizeKey("a", {});

  is(div.innerHTML, "<p><b><font color=\"red\">1234567890</font></b></p>" +
                    "<p><b><font color=\"red\">a<br></font></b></p>" +
                    "<p><b><font color=\"red\">b<br></font></b></p>",
                    "unexpected HTML");

  // Second test: Since we modified the code path that splits non-text nodes,
  // test that this works, if the split node is not empty.
  div = document.getElementById("test2");
  div.focus();
  synthesizeMouseAtCenter(div, {});

  selRange = sel.getRangeAt(0);
  is(selRange.endContainer.nodeName, "#text", "selection should be at the end of text node");
  is(selRange.endOffset, 3, "offset should be 3");

  // Move behind the image and press enter, insert an "A".
  // That should insert a new empty paragraph with the "A" after what we have.
  synthesizeKey("VK_RIGHT", {});
  synthesizeKey("VK_RIGHT", {});
  synthesizeKey("VK_RETURN", {});
  synthesizeKey("A", {});

  // The resulting HTML is sadly less than optimal:
  // A <br> gets inserted after the image and the "A" is followed by an empty <tt></tt>.
  var newHTML = div.innerHTML;
  var expectedHTML;
  //             Existing part with additional <br> inserted.
  expectedHTML = "<p><tt>xyz</tt></p><p><tt><img src=\"" + getImageDataURI() + "\"><br></tt></p>" +
  //             New part caused by pressing enter after the image and typing an "A".
                 "<p><tt>A</tt><br><tt></tt></p>";
  is(newHTML, expectedHTML, "unexpected HTML");

  // In case the empty tag gets deleted some day, let them know that something improved.
  expectedHTML = "<p><tt>xyz</tt></p><p><tt><img src=\"" + getImageDataURI() + "\"><br></tt></p>" +
                 "<p><tt>A</tt><br></p>";
  todo_is(newHTML, expectedHTML, "unexpected HTML");

  SimpleTest.finish();

});

</script>
</body>

</html>