dom/events/test/test_eventctors.xul

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <?xml version="1.0"?>
michael@0 2 <?xml-stylesheet type="text/css" href="chrome://global/skin"?>
michael@0 3 <?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
michael@0 4 <!--
michael@0 5 https://bugzilla.mozilla.org/show_bug.cgi?id=675884
michael@0 6 -->
michael@0 7 <window title="Mozilla Bug 675884"
michael@0 8 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
michael@0 9 <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
michael@0 10
michael@0 11 <!-- test results are displayed in the html:body -->
michael@0 12 <body xmlns="http://www.w3.org/1999/xhtml">
michael@0 13 <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=675884"
michael@0 14 target="_blank">Mozilla Bug 675884</a>
michael@0 15 </body>
michael@0 16
michael@0 17 <!-- test code goes here -->
michael@0 18 <script type="application/javascript">
michael@0 19 <![CDATA[
michael@0 20 /** Test for Bug 675884 **/
michael@0 21
michael@0 22 // Most of the tests are in .html file, but test here that
michael@0 23 // isTrusted is handled correctly in chrome.
michael@0 24
michael@0 25 var receivedEvent;
michael@0 26 document.addEventListener("hello", function(e) { receivedEvent = e; }, true);
michael@0 27
michael@0 28 // Event
michael@0 29 var e;
michael@0 30 var ex = false;
michael@0 31 try {
michael@0 32 e = new Event();
michael@0 33 } catch(exp) {
michael@0 34 ex = true;
michael@0 35 }
michael@0 36 ok(ex, "First parameter is required!");
michael@0 37 ex = false;
michael@0 38
michael@0 39 e = new Event("hello");
michael@0 40 ok(e.type, "hello", "Wrong event type!");
michael@0 41 ok(e.isTrusted, "Event should be trusted!");
michael@0 42 ok(!e.bubbles, "Event shouldn't bubble!");
michael@0 43 ok(!e.cancelable, "Event shouldn't be cancelable!");
michael@0 44 document.dispatchEvent(e);
michael@0 45 is(receivedEvent, e, "Wrong event!");
michael@0 46
michael@0 47 ]]>
michael@0 48 </script>
michael@0 49 </window>

mercurial