RESOLVED FIXED 4570
dispatchEvent12 test is incorrect
https://bugs.webkit.org/show_bug.cgi?id=4570
Summary dispatchEvent12 test is incorrect
Darin Adler
Reported 2005-08-21 17:36:40 PDT
Even after fixing bug 4540, the dispatchEvent12 test from the W3C DOM Level 2 Events test suite is failing. That's because the code does actually remove the same handleEvent function it adds. We can't pass the test until it's fixed.
Attachments
Curt Arnold
Comment 1 2005-08-26 14:23:50 PDT
It appears that the patch from bug 4491 was only partially applied and some how the following line was missed. diff -u -w -r1.1 dispatchEvent12.html Index: level2/events/dispatchEvent12.js =============================================================== ==== RCS file: /cvs/root/WebCore/layout-tests/dom/html/level2/events/dispatchEvent12.js,v retrieving revision 1.2 diff -u -w -r1.2 dispatchEvent12.js --- level2/events/dispatchEvent12.js 17 Aug 2005 21:08:18 -0000 1.2 +++ level2/events/dispatchEvent12.js 26 Aug 2005 20:57:57 -0000 @@ -121,7 +121,7 @@ var preventDefault; monitor = new EventMonitor(); - other = new EventMonitor(); + other = new EventListenerN10035(); var events = new Array();
Darin Adler
Comment 2 2005-08-26 19:52:00 PDT
OK, I'll take care of this.
Note You need to log in before you can comment on or make changes to this bug.