summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug1067255.html
blob: be2d703c5505e73a21379fe8ad81ed9106521f91 (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
<!DOCTYPE HTML>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1067255
-->

<head>
  <title>Test for Bug 1067255</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head>

<body onload="doTest();">
  <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1067255">Mozilla Bug 1067255</a>

  <pre id="test">
    <script type="application/javascript">
      /** Test for Bug 1067255 **/
      SimpleTest.waitForExplicitFinish();

      function doTest() {
        var text = $("text-field");
        var password = $("password-field");

        var editor1 = SpecialPowers.wrap(text).editor;
        var editor2 = SpecialPowers.wrap(password).editor;

        text.focus();
        text.select();

        ok(editor1.canCopy(), "can copy, text");
        ok(editor1.canCut(), "can cut, text");
        ok(editor1.canDelete(), "can delete, text");

        password.focus();
        password.select();

        // Copy and cut commands don't do anything on passoword fields by default,
        // but webpages can hook up event handlers to the event, and thus, we have to
        // always keep the cut and copy event enabled in HTML/XHTML documents.
        ok(editor2.canCopy(), "can copy, password");
        ok(editor2.canCut(), "can cut, password");
        ok(editor2.canDelete(), "can delete, password");

        SimpleTest.finish();
      }
   </script>
  </pre>

  <input type="text" value="Gonzo says hi" id="text-field" />
  <input type="password" value="Jan also" id="password-field" />
</body>
</html>