summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug600570.html
blob: f4ef84199c82295f9e54cd094ec30998f96cc62c (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=600570
-->
<head>
  <title>Test for Bug 600570</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <script src="/tests/SimpleTest/WindowSnapshot.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <style>
  textarea { border-color: white; }
  </style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=600570">Mozilla Bug 600570</a>
<p id="display"></p>
<div id="content">
<textarea spellcheck="false">
aaa
[bbb]</textarea>
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 600570 **/

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
  var t = document.querySelector("textarea");
  t.value = "[aaa\nbbb]";
  t.focus();
  synthesizeKey("A", {accelKey: true});

  SimpleTest.executeSoon(function() {
    t.getBoundingClientRect(); // flush layout
    var afterSetValue = snapshotWindow(window);

    t.value = t.defaultValue;

    t.selectionStart = 0;
    t.selectionEnd = 4;
    SimpleTest.waitForClipboard("aaa\n",
      function() {
        synthesizeKey("X", {accelKey: true});
      },
      function() {
        t.addEventListener("input", function() {
          setTimeout(function() { // Avoid the assertion in bug 649797
            is(t.value, "[aaa\nbbb]", "The value of the textarea should be correct");
            synthesizeKey("A", {accelKey: true});
            is(t.selectionStart, 0, "Select all should set the selection start to the beginning of textarea");
            is(t.selectionEnd, 9, "Select all should set the selection end to the end of textarea");

            var afterPaste = snapshotWindow(window);

            var res = compareSnapshots(afterSetValue, afterPaste, true);
            var msg = "Pasting and setting the value directly should result in the same rendering";
            if (!res[0]) {
              msg += "\nRESULT:\n" + res[2] + "\nREFERENCE:\n" + res[1];
            }
            ok(res[0], msg);

            SimpleTest.finish();
          }, 0);
        }, {once: true});
        synthesizeKey("KEY_ArrowRight");
        synthesizeKey("V", {accelKey: true});
      },
      function() {
        SimpleTest.finish();
      }
    );
  });
});

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