1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/tests/mochitest/bugs/test_bug484775.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,55 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<!-- 1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=484775 1.8 +--> 1.9 +<head> 1.10 + <title>Test for Bug 484775</title> 1.11 + <script type="application/javascript" src="/MochiKit/MochiKit.js"></script> 1.12 + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> 1.13 + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> 1.14 +</head> 1.15 +<body> 1.16 +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=484775">Mozilla Bug 484775</a> 1.17 +<p id="display"></p> 1.18 +<div id="content" style="display: none"> 1.19 + 1.20 +</div> 1.21 +<pre id="test"> 1.22 +<script type="application/javascript"> 1.23 + 1.24 +/** Test for Bug 484775 **/ 1.25 + 1.26 +var expectedTarget = null; 1.27 +var expectedType = null; 1.28 +var eventCount = 0; 1.29 + 1.30 +function listener(evt) { 1.31 + ++eventCount; 1.32 + is(evt.type, expectedType, "Wrong event type!"); 1.33 + is(evt.target, expectedTarget, "Wrong event target!"); 1.34 +} 1.35 + 1.36 +expectedType = "TestEvent"; 1.37 +var event = document.createEvent("Event"); 1.38 +event.initEvent(expectedType, true, true); 1.39 +is(event.type, expectedType, "Wrong event type after initEvent!"); 1.40 + 1.41 +var attr = document.createAttribute("attribute"); 1.42 +expectedTarget = attr; 1.43 +attr.addEventListener(expectedType, listener, false); 1.44 +attr.dispatchEvent(event); 1.45 +is(eventCount, 1, "Should have fired an event!"); 1.46 +attr.removeEventListener(expectedType, listener, false); 1.47 + 1.48 +var df = document.createDocumentFragment(); 1.49 +expectedTarget = df; 1.50 +df.addEventListener(expectedType, listener, false); 1.51 +df.dispatchEvent(event); 1.52 +is(eventCount, 2, "Should have fired an event!"); 1.53 +df.removeEventListener(expectedType, listener, false); 1.54 + 1.55 +</script> 1.56 +</pre> 1.57 +</body> 1.58 +</html>