summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug1101392.html
blob: 76917203bede2fc7543b2e10400535f3717fafb9 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1101392
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1101392</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">

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

  function runCopyCommand(element, compareText, nextTest)
  {
    element.focus();
    var expectedEndpoint, sel;
    if (element.localName == "textarea") {
      element.select();
      expectedEndpoint = element.selectionEnd;
    } else {
      sel = getSelection();
      sel.selectAllChildren(element.parentNode);
      expectedEndpoint = [sel.getRangeAt(0).endContainer,
                          sel.getRangeAt(0).endOffset];
    }

    function checkCollapse() {
      var desc = " after cmd_copyAndCollapseToEnd for " +
                 element.localName;
      if (element.localName == "textarea") {
        is(element.selectionStart, expectedEndpoint, "start offset" + desc);
        is(element.selectionEnd, expectedEndpoint, "end offset" + desc);
      } else {
        is(sel.isCollapsed, true, "collapsed" + desc);
        is(sel.anchorNode, expectedEndpoint[0], "node" + desc);
        is(sel.anchorOffset, expectedEndpoint[1], "offset" + desc);
      }

      nextTest();
    }

    SimpleTest.waitForClipboard(compareText,
        () => SpecialPowers.doCommand(window, "cmd_copyAndCollapseToEnd"),
        checkCollapse, checkCollapse);
  }

  function testDiv()
  {
    var content = document.getElementById("content");
    runCopyCommand(content, 'abc', testTextarea);
  }

  function testTextarea()
  {
    var textarea = document.getElementById("textarea");
    runCopyCommand(textarea, 'def', SimpleTest.finish);
  }

  function runTests()
  {
    testDiv();
  }
  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1101392">Mozilla Bug 1101392</a>
<div><div id="content">abc</div></div>

<textarea id="textarea">def</textarea>

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