- From: <bugzilla@jessica.w3.org>
- Date: Thu, 10 Apr 2014 00:13:51 +0000
- To: public-webapps-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=25295 --- Comment #1 from spiritRKS1910 <crimsteam@gmail.com> --- The next few; ----------- https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#idl-interface-MouseEvent-initializers partial interface MouseEvent { // Deprecated in DOM Level 3 << should be "Changed and depreaced in DOM Level 3" }; This method has one additional argument (when compared with D2E) so better inform about them. ----------- https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#idl-def-Event IDL for isTrusted has the form: readonly attribute boolean isTrusted; http://dom.spec.whatwg.org/#interface-event In new DOM we have additional extended attribute: [Unforgeable] readonly attribute boolean isTrusted; It's important and should be add. Similar situation (but less meaning): interface DocumentEvent { Event createEvent (DOMString eventInterface); }; change to: interface DocumentEvent { [NewObject] Event createEvent (DOMString eventInterface); }; ----------- Please for all parameters in method/constructor/table description delete "Arg" sufiks. It's unnecessary and extends the descriptions (especially init*Event). I checked few other specyfications and none of them use "Arg". This will enhance convergence between documents. Even in D3E sometimes you don't use them. -- You are receiving this mail because: You are the QA Contact for the bug.
Received on Thursday, 10 April 2014 00:13:56 UTC