- From: yosin <notifications@github.com>
- Date: Wed, 11 Jan 2017 00:12:05 -0800
- To: w3c/editing <editing@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 11 January 2017 08:12:37 UTC
The execCommand spec[1] doesn't have interface defintion for exeCommand and queryCommand*, we should have it like whatwg spec[2] ``` partial interface Document { [CEReactions] attribute DOMString designMode; [CEReactions] boolean execCommand( DOMString commandId, optional boolean showUI = false, optional DOMString value = ""); boolean queryCommandEnabled(DOMString commandId); boolean queryCommandIndeterm(DOMString commandId); boolean queryCommandState(DOMString commandId); boolean queryCommandSupported(DOMString commandId); DOMString queryCommandValue(DOMString commandId); } ``` [1] http://w3c.github.io/editing/execCommand.html [2] https://html.spec.whatwg.org/multipage/dom.html#the-document-object -- 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/issues/159
Received on Wednesday, 11 January 2017 08:12:37 UTC