summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_keypress_untrusted_event.html
blob: e8151b53e6a8522c181ea6faea21635cfc162d2c (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
100
101
102
103
104
105
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=622245
-->
<head>
  <title>Test for untrusted keypress events</title>
  <script 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) {
        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);
        });
      }, {once: true});
    var keypress = new KeyboardEvent("keypress", {
      bubbles: true,
      cancelable: true,
      view: document.defaultView,
      keyCode: 0,
      charCode:"a".charCodeAt(0),
    });
    input.dispatchEvent(keypress);
  });
});

function runTextareaTest() {
  textarea.addEventListener("keypress",
    function(aEvent) {
      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);
      });
    }, {once: true});
    var keypress = new KeyboardEvent("keypress", {
      bubbles: true,
      cancelable: true,
      view: document.defaultView,
      keyCode: 0,
      charCode:"b".charCodeAt(0),
    });
  textarea.dispatchEvent(keypress);
}

function runContentediableTest() {
  div.addEventListener("keypress",
    function(aEvent) {
      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();
      });
    }, {once: true});
    var keypress = new KeyboardEvent("keypress", {
      bubbles: true,
      cancelable: true,
      view: document.defaultView,
      keyCode: 0,
      charCode:"c".charCodeAt(0),
    });
  div.dispatchEvent(keypress);
}

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