summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_keypress_untrusted_event.html
diff options
context:
space:
mode:
Diffstat (limited to 'editor/libeditor/tests/test_keypress_untrusted_event.html')
-rw-r--r--editor/libeditor/tests/test_keypress_untrusted_event.html105
1 files changed, 105 insertions, 0 deletions
diff --git a/editor/libeditor/tests/test_keypress_untrusted_event.html b/editor/libeditor/tests/test_keypress_untrusted_event.html
new file mode 100644
index 0000000000..e8151b53e6
--- /dev/null
+++ b/editor/libeditor/tests/test_keypress_untrusted_event.html
@@ -0,0 +1,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>