Re: publish a new Working Draft of DOM Core; comment deadline March 2

Le 28 févr. 2011 à 17:59, Adrian Bateman a écrit :
> My preference is to not have two drafts in the WebApps working group with conflicting specification of the same feature.

Looking at 
http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#events
and 
http://www.w3.org/TR/DOM-Level-3-Events/#interface-Event

For the IDL definition the only line which is really different is

# DOM-Level-3-Events
  void initEvent(
 DOMString type, 
 optional boolean bubbles, 
 optional boolean cancelable);

# Web Dom Core
  void initEvent(
 in DOMString eventTypeArg, 
 in boolean canBubbleArg,
 in boolean cancelableArg);


The prose in between the two is very different. The prose of Web DOM Core is closer than the one of HTML5. I haven't looked into details. 

-- 
Karl Dubost - http://dev.opera.com/
Developer Relations & Tools, Opera Software

Received on Monday, 28 February 2011 17:36:14 UTC