- From: <bugzilla@jessica.w3.org>
- Date: Wed, 09 Apr 2014 07:49:09 +0000
- To: public-webapps-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=25295 Bug ID: 25295 Summary: Small bugs in the descriptions Product: WebAppsWG Version: unspecified Hardware: PC OS: Windows NT Status: NEW Severity: normal Priority: P2 Component: DOM3 Events Assignee: travil@microsoft.com Reporter: crimsteam@gmail.com QA Contact: public-webapps-bugzilla@w3.org CC: mike@w3.org, www-dom@w3.org Hi, I gathered together a few minor bugs: ----------- Missing one argument in initCompositionEvent() Now we have five: void initCompositionEvent (DOMString typeArg, boolean bubblesArg, boolean cancelableArg, Window? viewArg, DOMString? dataArg); Should be six: void initCompositionEvent (DOMString typeArg, boolean bubblesArg, boolean cancelableArg, Window? viewArg, long detailArg, DOMString? dataArg); ----------- Missing define the FocusEventInit dictionary. All other interface have them. ----------- Wrong comment in some place: 4.2 Interface CustomEvent Introduced in DOM Level 2 << should be Introduced in DOM Level 3 4.3 Interface EventTarget Introduced in DOM Level 3 << should be Introduced in DOM Level 2 MouseEvent.buttons << sholud be mark that Introduced in DOM Level 3 ----------- Target for event type is not complete. I understand that you wrote: "When used with an [XML 1.0] or [HTML5] application, the specifications of those languages MAY restrict the semantics and scope (in particular the possible event targets) associated with an event type." But now we have different event target within the same specification: for event resize (https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#event-type-resize) we have defaultView but in event table (https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#h4_event-types-list) we have defaultView, Document. ----------- In the table that defines the types of events, rows "Context info: UIEvent.view" somtimes have only defaultView, but there is also defaultView, null. These are the correct values? Look: blur UIEvent.view: defaultView focus, focusin, focusout UIEvent.view: defaultView, null Any explanation why they have different values? Te same situtation: load, unload, abort, error, select UIEvent.view: defaultView, null resize, scroll UIEvent.view: defaultView -- You are receiving this mail because: You are the QA Contact for the bug.
Received on Wednesday, 9 April 2014 07:49:11 UTC