| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 Copyright © 2001-2004 World Wide Web Consortium, | |
| 3 (Massachusetts Institute of Technology, European Research Consortium | |
| 4 for Informatics and Mathematics, Keio University). All | |
| 5 Rights Reserved. This work is distributed under the W3C® Software License [1] i
n the | |
| 6 hope that it will be useful, but WITHOUT ANY WARRANTY; without even | |
| 7 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
| 8 | |
| 9 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 | |
| 10 */ | |
| 11 | |
| 12 /** | |
| 13 * Gets URI that identifies the test. | |
| 14 * @return uri identifier of test | |
| 15 */ | |
| 16 function getTargetURI() { | |
| 17 return "http://www.w3.org/2001/DOM-Test-Suite/level2/events/dispatchEvent1
0"; | |
| 18 } | |
| 19 | |
| 20 var docsLoaded = -1000000; | |
| 21 var builder = null; | |
| 22 | |
| 23 // | |
| 24 // This function is called by the testing framework before | |
| 25 // running the test suite. | |
| 26 // | |
| 27 // If there are no configuration exceptions, asynchronous | |
| 28 // document loading is started. Otherwise, the status | |
| 29 // is set to complete and the exception is immediately | |
| 30 // raised when entering the body of the test. | |
| 31 // | |
| 32 function setUpPage() { | |
| 33 setUpPageStatus = 'running'; | |
| 34 try { | |
| 35 // | |
| 36 // creates test document builder, may throw exception | |
| 37 // | |
| 38 builder = createConfiguredBuilder(); | |
| 39 | |
| 40 docsLoaded = 0; | |
| 41 | |
| 42 var docRef = null; | |
| 43 if (typeof(this.doc) != 'undefined') { | |
| 44 docRef = this.doc; | |
| 45 } | |
| 46 docsLoaded += preload(docRef, "doc", "hc_staff"); | |
| 47 | |
| 48 if (docsLoaded == 1) { | |
| 49 setUpPageStatus = 'complete'; | |
| 50 } | |
| 51 } catch(ex) { | |
| 52 catchInitializationError(builder, ex); | |
| 53 setUpPageStatus = 'complete'; | |
| 54 } | |
| 55 } | |
| 56 | |
| 57 // | |
| 58 // This method is called on the completion of | |
| 59 // each asychronous load started in setUpTests. | |
| 60 // | |
| 61 // When every synchronous loaded document has completed, | |
| 62 // the page status is changed which allows the | |
| 63 // body of the test to be executed. | |
| 64 function loadComplete() { | |
| 65 if (++docsLoaded == 1) { | |
| 66 setUpPageStatus = 'complete'; | |
| 67 } | |
| 68 } | |
| 69 | |
| 70 //EventMonitor's require a document level variable named monitor | |
| 71 var monitor; | |
| 72 | |
| 73 /** | |
| 74 * | |
| 75 The same monitor is registered twice and an event is dispatched. The monitor sh
ould | |
| 76 receive only one handleEvent call. | |
| 77 | |
| 78 * @author Curt Arnold | |
| 79 * @see http://www.w3.org/TR/DOM-Level-2-Events/events#Events-EventTarget-dispatc
hEvent | |
| 80 * @see http://www.w3.org/TR/DOM-Level-2-Events/events#xpointer(id('Events-EventT
arget-dispatchEvent')/raises/exception[@name='EventException']/descr/p[substring
-before(.,':')='UNSPECIFIED_EVENT_TYPE_ERR']) | |
| 81 */ | |
| 82 function dispatchEvent10() { | |
| 83 var success; | |
| 84 if(checkInitialization(builder, "dispatchEvent10") != null) return; | |
| 85 var doc; | |
| 86 var target; | |
| 87 var evt; | |
| 88 var preventDefault; | |
| 89 monitor = new EventMonitor(); | |
| 90 | |
| 91 var atEvents = new Array(); | |
| 92 | |
| 93 var bubbledEvents = new Array(); | |
| 94 | |
| 95 var capturedEvents = new Array(); | |
| 96 | |
| 97 var docRef = null; | |
| 98 if (typeof(this.doc) != 'undefined') { | |
| 99 docRef = this.doc; | |
| 100 } | |
| 101 doc = load(docRef, "doc", "hc_staff"); | |
| 102 doc.addEventListener("foo", monitor.handleEvent, false); | |
| 103 doc.addEventListener("foo", monitor.handleEvent, false); | |
| 104 evt = doc.createEvent("Events"); | |
| 105 evt.initEvent("foo",true,false); | |
| 106 preventDefault = doc.dispatchEvent(evt); | |
| 107 atEvents = monitor.atEvents; | |
| 108 assertSize("atCount",1,atEvents); | |
| 109 bubbledEvents = monitor.bubbledEvents; | |
| 110 assertSize("bubbleCount",0,bubbledEvents); | |
| 111 capturedEvents = monitor.capturedEvents; | |
| 112 assertSize("captureCount",0,capturedEvents); | |
| 113 | |
| 114 } | |
| 115 | |
| 116 function runTest() { | |
| 117 dispatchEvent10(); | |
| 118 } | |
| OLD | NEW |