diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/base/test/test_bug666604.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/base/test/test_bug666604.html')
-rw-r--r-- | dom/base/test/test_bug666604.html | 142 |
1 files changed, 142 insertions, 0 deletions
diff --git a/dom/base/test/test_bug666604.html b/dom/base/test/test_bug666604.html new file mode 100644 index 000000000..4f73c4075 --- /dev/null +++ b/dom/base/test/test_bug666604.html @@ -0,0 +1,142 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=666604 +--> +<head> + <title>Test for Bug 666604</title> + <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=666604">Mozilla Bug 666604</a> +<p id="display"></p> +<div id="content" style="display: none"> + +</div> +<a href="javascript:activationListener()" id="testlink">test</a> +<pre id="test"> +<script type="application/javascript"> + +/** Test for Bug 666604 **/ + +SimpleTest.waitForExplicitFinish(); + +function hitEventLoop(times, next) +{ + if (times == 0) { + next(); + return; + } + + SimpleTest.executeSoon(function() { + hitEventLoop(times - 1, next); + }); +} + +var activationListener; + +function dispatchClick(target, ctrl) { + var e = document.createEvent("MouseEvent"); + e.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, + ctrl, false, false, false, 0, null); + target.dispatchEvent(e); +} + +function dispatchReturn(target, ctrl) { + var e = document.createEvent("KeyboardEvent"); + e.initKeyEvent("keypress", true, true, window, ctrl, false, + false, false, 13, 0); + target.dispatchEvent(e); +} + +function dispatchDOMActivate(target) { + var e = document.createEvent("UIEvent"); + e.initUIEvent("DOMActivate", true, true, window, 0); + target.dispatchEvent(e); +} + +var testlink = document.getElementById("testlink"); +function test1() { + activationListener = + function() { + ok(true, "Untrusted click should activate a link"); + test2(); + } + dispatchClick(testlink, false); +} + +function test2() { + activationListener = + function() { + ok(true, "Untrusted return keypress should activate a link"); + test3(); + } + dispatchReturn(testlink, false); +} + +function test3() { + activationListener = + function() { + ok(false, "Untrusted click+ctrl should not activate a link"); + test4(); + } + dispatchClick(testlink, true); + hitEventLoop(10, test4); +} + +function test4() { + activationListener = + function() { + ok(false, "Untrusted return keypress+ctrl should not activate a link"); + test5(); + } + dispatchReturn(testlink, true); + hitEventLoop(10, test5); +} + +function test5() { + activationListener = + function() { + ok(true, "click() should activate a link"); + test6(); + } + testlink.click(); +} + +function test6() { + activationListener = + function() { + ok(true, "Untrusted DOMActivate should activate a link"); + SpecialPowers.pushPrefEnv({"set":[["dom.disable_open_during_load", false]]}, test7); + } + dispatchDOMActivate(testlink); +} + +function test7() { + testlink.href = "javascript:opener.activationListener(); window.close();"; + testlink.target = "_blank"; + activationListener = + function() { + ok(true, "Click() should activate a link"); + SpecialPowers.pushPrefEnv({"set":[["dom.disable_open_during_load", true]]}, test8); + } + testlink.click(); +} + +function test8() { + testlink.href = "javascript:opener.activationListener(); window.close();"; + testlink.target = "_blank"; + activationListener = + function() { + ok(false, "Click() should not activate a link"); + } + testlink.click(); + SimpleTest.executeSoon(SimpleTest.finish); +} +addLoadEvent(test1); + +</script> +</pre> +</body> +</html> |