Re: [w3c/editing] [execCommand] fix ReSpec errors (#196)

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