- From: Marcos Cáceres <notifications@github.com>
- Date: Sun, 28 Jul 2019 01:18:08 -0700
- To: w3c/editing <editing@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Sunday, 28 July 2019 08:18:30 UTC
marcoscaceres commented on this pull request. > + + dictionary EditingBeforeInputEventInit : EventInit { + DOMString command; + DOMString value; + }; + + [Exposed=Window, + Constructor(DOMString type, optional EditingInputEventInit eventInitDict = {})] + interface EditingInputEvent : Event { + readonly attribute DOMString command; + readonly attribute DOMString value; + }; + + dictionary EditingInputEventInit : EventInit { + DOMString command; + DOMString value; ```suggestion DOMString value = ""; ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/w3c/editing/pull/196#pullrequestreview-267495431
Received on Sunday, 28 July 2019 08:18:30 UTC