[Bug 25405] Input Event Types (some correct)

https://www.w3.org/Bugs/Public/show_bug.cgi?id=25405

--- Comment #2 from spiritRKS1910 <crimsteam@gmail.com> ---
About 'data' and nullable type:

CompositionEvent.data << nullable
InputEvent.data << not nullable

All other DOMString attributes are not nullable. In all cases default is empty
string and wondering if null is really returned in any case for above
attributes.

And in the very similar case:

partial interface CompositionEvent {
    // Originally introduced (and deprecated) in DOM Level 3
    void initCompositionEvent (DOMString typeArg, boolean bubblesArg, boolean
cancelableArg, Window? viewArg, DOMString? dataArg, DOMString? locale);
};

"locale" in this method is nullable, but in UIEvents not
(https://dvcs.w3.org/hg/d4e/raw-file/tip/source_respec.htm#composition-event-interface).

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Sunday, 27 April 2014 21:22:42 UTC