Bug 4570
Summary: | dispatchEvent12 test is incorrect | ||
---|---|---|---|
Product: | WebKit | Reporter: | Darin Adler <darin> |
Component: | WebKit Misc. | Assignee: | Darin Adler <darin> |
Status: | RESOLVED FIXED | ||
Severity: | Normal | CC: | andersca |
Priority: | P2 | ||
Version: | 420+ | ||
Hardware: | Mac | ||
OS: | OS X 10.4 | ||
Bug Depends on: | |||
Bug Blocks: | 4565 |
Darin Adler
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 | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Curt Arnold
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
OK, I'll take care of this.