summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_bug659350.html
blob: f4d64d1f35f356f969ea886f2c05df50cc10e8e2 (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
106
107
108
109
110
111
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=659350
-->
<head>
  <title>Test for Bug 659350</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=659350">Mozilla Bug 659350</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 659350 **/
function testIn(eventName, obj, objName, expected) {
  is(eventName in obj, expected, "'" + eventName + "' shuld be in " + objName);
}

var div = document.createElement("div");

// Forwarded events
testIn("onscroll", window, "window", true);
testIn("onscroll", document.body, "body", true);
testIn("onscroll", div, "div", true);
// Window events
testIn("onpopstate", window, "window", true);
testIn("onpopstate", document.body, "body", true);
testIn("onpopstate", div, "div", false);
// Non-idl events
testIn("onopen", window, "window", false);
testIn("onopen", document.body, "body", false);
testIn("onopen", div, "div", false);

function f() {}
function g() {}

// Basic sanity of interaction between the IDL and content attributes
div.onload = f;
is(div.onload, f, "Should have 'f' as div's onload");
div.setAttribute("onload", "");
isnot(div.onload, f, "Should not longer have 'f' as div's onload");
is(div.onload.toString(), "function onload(event) {\n\n}",
   "Should have wrapped empty string in a function");
div.setAttribute("onload", "foopy();");
is(div.onload.toString(), "function onload(event) {\nfoopy();\n}",
   "Should have wrapped call in a function");
div.removeAttribute("onload");
is(div.onload, null, "Should have null onload now");

// Test forwarding to window for both events that are window-specific and that
// exist on all elements
function testPropagationToWindow(eventName) {
  is(window["on"+eventName], null, "Shouldn't have " + eventName + " stuff yet");
  document.body["on"+eventName] = f;
  is(window["on"+eventName], f,
     "Setting on"+eventName+" on body should propagate to window");
  document.createElement("body")["on"+eventName] = g;
  is(window["on"+eventName], g,
     "Setting on"+eventName+" on body not in document should propagate to window");
  document.createElement("frameset")["on"+eventName] = f;
  is(window["on"+eventName], f,
     "Setting on"+eventName+" on frameset not in document should propagate to window");

  document.body.setAttribute("on"+eventName, eventName);
  is(window["on"+eventName].toString(),
            "function on"+eventName+"(event) {\n"+eventName+"\n}",
            "Setting on"+eventName+"attribute on body should propagate to window");
  document.createElement("body").setAttribute("on"+eventName, eventName+"2");
  is(window["on"+eventName].toString(),
            "function on"+eventName+"(event) {\n"+eventName+"2\n}",
            "Setting on"+eventName+"attribute on body outside the document should propagate to window");
}

testPropagationToWindow("popstate");
testPropagationToWindow("scroll");

// Test |this| and scoping
var called;
div.onscroll = function(event) {
  is(this, div, "This should be div when invoking event listener");
  is(event, ev, "Event argument should be the event that was dispatched");
  called = true;
}
var ev = document.createEvent("Events");
ev.initEvent("scroll", true, true);
called = false;
div.dispatchEvent(ev);
is(called, true, "Event listener set via on* property not called");

div.foopy = "Found me";
document.foopy = "Didn't find me";
document.foopy2 = "Found me";
div.setAttribute("onscroll",
                 "is(this, div, 'This should be div when invoking via attribute');\
                  is(foopy, 'Found me', 'div should be on the scope chain when invoking handler compiled from content attribute');\
                  is(foopy2, 'Found me', 'document should be on the scope chain when invking handler compiled from content attribute');\
                  is(event, ev, 'Event argument should be the event that was dispatched');\
                  called = true;");
called = false;
div.dispatchEvent(ev);
is(called, true, "Event listener set via on* attribute not called");
</script>
</pre>
</body>
</html>