This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 16357 - Avoid proliferating init*Event methods in preparation for Event constructors
Summary: Avoid proliferating init*Event methods in preparation for Event constructors
Status: RESOLVED FIXED
Alias: None
Product: WebAppsWG
Classification: Unclassified
Component: HISTORICAL - DOM3 Events (show other bugs)
Version: unspecified
Hardware: PC Windows NT
: P2 normal
Target Milestone: ---
Assignee: Travis Leithead [MSFT]
QA Contact: public-webapps-bugzilla
URL: http://lists.w3.org/Archives/Public/w...
Whiteboard:
Keywords: LC, needsReview
Depends on:
Blocks:
 
Reported: 2012-03-13 23:50 UTC by Travis Leithead [MSFT]
Modified: 2012-04-19 07:23 UTC (History)
6 users (show)

See Also:


Attachments

Description Travis Leithead [MSFT] 2012-03-13 23:50:56 UTC
PORTING email comments to bugs for LC tracking purposes
-------------------------------------------------------

On Tue, 27 Sep 2011 15:56:43 +0200, Kentaro Hara <haraken@chromium.org>  
wrote:
> We have been working on implementing constructors for Events:
>
> https://bugs.webkit.org/show_bug.cgi?id=67824
>
> However, some Events do not yet have the specs for their constructors. We
> would be happy if you could take a look at our spec proposals for the
> following DOM Level 3 Events:
>
> http://www.w3.org/Bugs/Public/show_bug.cgi?id=14050
>
> http://www.w3.org/Bugs/Public/show_bug.cgi?id=14051
>
> http://www.w3.org/Bugs/Public/show_bug.cgi?id=14052
>
> http://www.w3.org/Bugs/Public/show_bug.cgi?id=14053
>
> http://www.w3.org/Bugs/Public/show_bug.cgi?id=14054
>
> http://www.w3.org/Bugs/Public/show_bug.cgi?id=14055

It would also be great if for the interfaces that are newly introduced we  
do not introduce a init*Event method. CompositionEvent, TextEvent,  
WheelEvent, can probably have it removed. UIEvent, MouseEvent, and  
KeyboardEvent should probably carry a note about their init*Event methods  
being strongly discouraged, as we cannot really remove those I think.


-- 
Anne van Kesteren
http://annevankesteren.nl/
Comment 1 Travis Leithead [MSFT] 2012-04-07 00:29:03 UTC
For consistency, I've gone ahead and added DEPRECATION warnings for all init*Event methods with the exception of initEvent and initCustomEvent.

Deprecation implies you don't have to implement the method unless you want to for backwards compatibility (same definition as used for the Mutation and MutationName events.

I didn't remove (vs. deprecate) the init* events from the newly added interfaces because they already shipped in IE9, thus we _do_ have a need to continue to implement them and the definition of deprecated seemed to apply best to this scenario. But other implementations that want to claim conformance to this spec don't need to do so, especially with event constructors.

I also left the deprecation notes somewhat vague about "some future spec" defining them, since these particular event constructors aren't in DOM4 and Jacob's other draft isn't yet incorporated into charter.

Let me know if this action is acceptable.
Comment 2 Anne 2012-04-07 07:47:27 UTC
I don't think that's acceptable. A standard should describe the end goal, not some inbetween state.
Comment 3 Travis Leithead [MSFT] 2012-04-10 21:52:24 UTC
(In reply to comment #2)
> I don't think that's acceptable. A standard should describe the end goal, not
> some inbetween state.

Understand, but if I remove the init methods completely from CompositionEvent, and WheelEvent (TextEvent is gone), I'm going to get a bug later that says that "I cannot initialize the properties of a composition/wheel event!"

That's going to then lead to specifying event constructors as the only real alternative to bringing back the init methods.

I don't want to add event constructors because that's what DOM4 is introducing, and I don't want to be introducing new features to DOM3 events at this point in it's life. (Reminder: it needs to be finished!)

Marking these as deprecated was the best option I had. I'd rather have this spec finish with a deprecated set of init methods knowing that they may never be implemented in some user agents, versus finishing with a set of interfaces that don't support initialization at all.
Comment 4 Anne 2012-04-10 21:54:44 UTC
How about adding a note that we're not adding them because we want to bring this spec to REC, but implementations will support them anyway because they're in the version of the spec currently in development?
Comment 5 Travis Leithead [MSFT] 2012-04-10 21:56:29 UTC
(In reply to comment #4)
> How about adding a note that we're not adding them because we want to bring
> this spec to REC, but implementations will support them anyway because they're
> in the version of the spec currently in development?

That would be acceptable as long as you let me provide the API description in a non-normative section somewhere (say in an appendix)?
Comment 6 Anne 2012-04-10 22:00:20 UTC
So you'd define event constructors non-normatively along with a reference to DOM4? Why not just point to the UI Events draft? But either way that seems fine to me. The event constructors follow naturally from the event interface so it's not like we can change them anyway once we agreed on the event interface.
Comment 7 Travis Leithead [MSFT] 2012-04-10 22:22:34 UTC
(In reply to comment #6)
> So you'd define event constructors non-normatively along with a reference to
> DOM4? Why not just point to the UI Events draft? But either way that seems fine
> to me. The event constructors follow naturally from the event interface so it's
> not like we can change them anyway once we agreed on the event interface.

Oh, I misinterpreted your use of the word "them" as referring to init* methods. You were actually thinking of event constructors. I was actually planning on just moving the init* methods for CompositionEvent and WheelEvent to a non-normative appendix and describe them there for completeness, but perhaps just describing the event constructors in the same place non-normatively would be sufficient.
Comment 8 Travis Leithead [MSFT] 2012-04-19 00:46:14 UTC
(In reply to comment #6)
> So you'd define event constructors non-normatively along with a reference to
> DOM4? Why not just point to the UI Events draft? But either way that seems 
> fine to me.

With the latest revision of the spec, I've axed the init* methods from all of the new event interfaces that were newly defined in DOM Level 3 Events:
* CustomEvent
* FocusEvent
* WheelEvent
* KeyboardEvent
* CompositionEvent
...and moved them into a non-normative appendix (now Appendix A) for historical reasons. Appendix A includes a description of the state of the world for these legacy init* methods as well as linking to DOM4 for the latest in event constructor guidance. To complete the package, I non-normatively describe the WebIDL for event constructors for the interfaces I listed previously and add:
* Event
* UIEvent
* MouseEvent
...to ensure that all interfaces that arent deprecated (i.e., MutationEvent and MutationNameEvent) have an event constructor described. This should allow the entrepreneurial user agent to use event constructors if desired. I also make it clear that DOM L3 Events doesn't require a conforming implementation to implement the legacy init* methods or the event constructors, though an implementation should probably implement one or the other to be sure that authors can initialize these event interfaces.

Appropriate deprecation notices were put on the init* methods that remain, to discourage their use, and indicate that they won't be back in a future standard. (I didn't include the notice on the Event interface since you are still describing it in DOM4.)

Please let me know if this is a satisfactory resolution of this bug.
Comment 9 Anne 2012-04-19 07:23:43 UTC
I don't think we should suggest that fresh implementations are allowed to support the init* methods. It seems somewhat wrong to me to even allow them to be implemented given that a) that's not interoperable and b) the end goal is to remove them, but given that you feel strongly about mentioning them I guess I might be okay with that, but I don't want to give the impression they're okay.