summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_dom_activate_event.html
blob: 9a6d48ac64228872bf903cabb7ecf9c633441c47 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test DOMActivate event</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<p id="display">
<a id="a" href="#dummy">link</a>
<button id="button">button</button>
<input id="checkbox" type="checkbox">
<input id="radio" type="radio">
<input id="submit" type="submit">
<input id="ibutton" type="button">
<input id="reset" type="reset">
</p>
<div id="content" style="display: none">

</div>
<pre id="test">
<script type="application/javascript">

/* eslint-disable max-nested-callbacks */

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(runTests);

function runIsTrustedTestCausedByTrustedClick(aElement, aNextTest)
{
  const kDescription = "runIsTrustedTestCausedByTrustedClick(aElement.id=" + aElement.id + "): ";
  var DOMActivateFired = false;
  aElement.addEventListener("DOMActivate", function (aEvent) {
    DOMActivateFired = true;
    ok(aEvent.isTrusted, kDescription + "DOMActivate event should be trusted event");
    aElement.removeEventListener("DOMActivate", arguments.callee);
    aNextTest();
  });
  aElement.addEventListener("click", function (aEvent) {
    ok(aEvent.isTrusted, kDescription + "click event should be trusted event");
    aElement.removeEventListener("click", arguments.callee);
  });
  synthesizeMouseAtCenter(aElement, {});
}

function runIsTrustedTestCausedByUntrustedClick(aElement, aNextTest)
{
  const kDescription = "runIsTrustedTestCausedByUntrustedClick(aElement.id=" + aElement.id + "): ";
  var DOMActivateFired = false;
  aElement.addEventListener("DOMActivate", function (aEvent) {
    DOMActivateFired = true;
    ok(aEvent.isTrusted,
       kDescription + "DOMActivate event should be trusted event even if it's caused by untrusted event");
    aElement.removeEventListener("DOMActivate", arguments.callee);
    aNextTest();
  });
  aElement.addEventListener("click", function (aEvent) {
    ok(!aEvent.isTrusted, kDescription + "click event should be untrusted event");
    aElement.removeEventListener("click", arguments.callee);
  });
  var click = new MouseEvent("click", { button: 0 });
  aElement.dispatchEvent(click);
}

function runTests()
{
  // XXX Don't add indentation here. If you add indentation, the diff will be
  //     complicated when somebody adds new tests.
  runIsTrustedTestCausedByTrustedClick(document.getElementById("a"), function () {
  runIsTrustedTestCausedByTrustedClick(document.getElementById("button"), function () {
  runIsTrustedTestCausedByTrustedClick(document.getElementById("checkbox"), function () {
  runIsTrustedTestCausedByTrustedClick(document.getElementById("radio"), function () {
  runIsTrustedTestCausedByTrustedClick(document.getElementById("submit"), function () {
  runIsTrustedTestCausedByTrustedClick(document.getElementById("ibutton"), function () {
  runIsTrustedTestCausedByTrustedClick(document.getElementById("reset"), function () {
  runIsTrustedTestCausedByUntrustedClick(document.getElementById("a"), function () {
  runIsTrustedTestCausedByUntrustedClick(document.getElementById("button"), function () {
  runIsTrustedTestCausedByUntrustedClick(document.getElementById("checkbox"), function () {
  runIsTrustedTestCausedByUntrustedClick(document.getElementById("radio"), function () {
  runIsTrustedTestCausedByUntrustedClick(document.getElementById("submit"), function () {
  runIsTrustedTestCausedByUntrustedClick(document.getElementById("ibutton"), function () {
  runIsTrustedTestCausedByUntrustedClick(document.getElementById("reset"), function () {
    SimpleTest.finish();
  });});});});});});});});});});});});});});
}

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