RESOLVED FIXED 4331
dispatchEvent should raise an exception
https://bugs.webkit.org/show_bug.cgi?id=4331
Summary dispatchEvent should raise an exception
Anders Carlsson
Reported 2005-08-08 01:05:19 PDT
If the event passed to dispatchEvent is null or unitialized, UNSPECIFIED_EVENT_TYPE_ERR should be raised.
Attachments
Throw exception (8.88 KB, patch)
2005-08-08 01:06 PDT, Anders Carlsson
andersca: review-
Better solution (19.80 KB, patch)
2005-08-08 14:02 PDT, Anders Carlsson
darin: review+
Anders Carlsson
Comment 1 2005-08-08 01:06:11 PDT
Created attachment 3275 [details] Throw exception
Anders Carlsson
Comment 2 2005-08-08 02:10:48 PDT
Comment on attachment 3275 [details] Throw exception I think the check in dispatchEvent is wrong so I'll mark it review- for now.
Anders Carlsson
Comment 3 2005-08-08 14:02:33 PDT
Created attachment 3284 [details] Better solution
Darin Adler
Comment 4 2005-08-08 15:17:02 PDT
Comment on attachment 3284 [details] Better solution Instead of this: evt->type().isNull() || evt->type() =="" should use: evt->type().isEmpty() Otherwise, r=me.
Justin Garcia
Comment 5 2005-08-09 14:27:53 PDT
Landed this, with the change suggested by Darin
Lucas Forschler
Comment 6 2019-02-06 09:03:01 PST
Mass moving XML DOM bugs to the "DOM" Component.
Note You need to log in before you can comment on or make changes to this bug.