summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_keypress_untrusted_event.html
blob: 6875c5a33758e6c3d631b5d213cd28355849a9ab (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=622245
-->
<head>
  <title>Test for untrusted keypress events</title>
  <script type="application/javascript" src="/MochiKit/packed.js"></script>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.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=622245">Mozilla Bug 622245</a>
<p id="display"></p>
<div id="content">
<input id="i"><br>
<textarea id="t"></textarea><br>
<div id="d" contenteditable style="min-height: 1em;"></div>
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 674770 **/
SimpleTest.waitForExplicitFinish();

var input = document.getElementById("i");
var textarea = document.getElementById("t");
var div = document.getElementById("d");

addLoadEvent(function() {
  input.focus();

  SimpleTest.executeSoon(function() {
    input.addEventListener("keypress",
      function(aEvent) {
        input.removeEventListener("keypress", arguments.callee, false);
        is(aEvent.target, input,
           "The keypress event target isn't the input element");

        SimpleTest.executeSoon(function() {
          is(input.value, "",
             "Did keypress event cause modifying the input element?");
          textarea.focus();
          SimpleTest.executeSoon(runTextareaTest);
        });
      }, false);
    var keypress = document.createEvent("KeyboardEvent");
    keypress.initKeyEvent("keypress", true, true, document.defaultView,
                          false, false, false, false, 0, "a".charCodeAt(0));
    input.dispatchEvent(keypress);
  });
});

function runTextareaTest()
{
  textarea.addEventListener("keypress",
    function(aEvent) {
      textarea.removeEventListener("keypress", arguments.callee, false);
      is(aEvent.target, textarea,
         "The keypress event target isn't the textarea element");

      SimpleTest.executeSoon(function() {
        is(textarea.value, "",
           "Did keypress event cause modifying the textarea element?");
        div.focus();
        SimpleTest.executeSoon(runContentediableTest);
      });
    }, false);
  var keypress = document.createEvent("KeyboardEvent");
  keypress.initKeyEvent("keypress", true, true, document.defaultView,
                        false, false, false, false, 0, "b".charCodeAt(0));
  textarea.dispatchEvent(keypress);
}

function runContentediableTest()
{
  div.addEventListener("keypress",
    function(aEvent) {
      div.removeEventListener("keypress", arguments.callee, false);
      is(aEvent.target, div,
         "The keypress event target isn't the div element");

      SimpleTest.executeSoon(function() {
        is(div.innerHTML, "",
           "Did keypress event cause modifying the div element?");

        SimpleTest.finish();
      });
    }, false);
  var keypress = document.createEvent("KeyboardEvent");
  keypress.initKeyEvent("keypress", true, true, document.defaultView,
                        false, false, false, false, 0, "c".charCodeAt(0));
  div.dispatchEvent(keypress);
}

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