mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
55
dom/tests/mochitest/bugs/test_bug484775.html
Normal file
55
dom/tests/mochitest/bugs/test_bug484775.html
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=484775
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 484775</title>
|
||||
<script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<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=484775">Mozilla Bug 484775</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script type="application/javascript">
|
||||
|
||||
/** Test for Bug 484775 **/
|
||||
|
||||
var expectedTarget = null;
|
||||
var expectedType = null;
|
||||
var eventCount = 0;
|
||||
|
||||
function listener(evt) {
|
||||
++eventCount;
|
||||
is(evt.type, expectedType, "Wrong event type!");
|
||||
is(evt.target, expectedTarget, "Wrong event target!");
|
||||
}
|
||||
|
||||
expectedType = "TestEvent";
|
||||
var event = document.createEvent("Event");
|
||||
event.initEvent(expectedType, true, true);
|
||||
is(event.type, expectedType, "Wrong event type after initEvent!");
|
||||
|
||||
var attr = document.createAttribute("attribute");
|
||||
expectedTarget = attr;
|
||||
attr.addEventListener(expectedType, listener, false);
|
||||
attr.dispatchEvent(event);
|
||||
is(eventCount, 1, "Should have fired an event!");
|
||||
attr.removeEventListener(expectedType, listener, false);
|
||||
|
||||
var df = document.createDocumentFragment();
|
||||
expectedTarget = df;
|
||||
df.addEventListener(expectedType, listener, false);
|
||||
df.dispatchEvent(event);
|
||||
is(eventCount, 2, "Should have fired an event!");
|
||||
df.removeEventListener(expectedType, listener, false);
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue