Results 1 - 3 of 3

Document.queryCommandSupported()

The Document.queryCommandSupported() method reports whether or not the specified editor command is supported by the browser.
API DOM editor Method Reference

Document.execCommand()

When an HTML document has been switched to designMode, the document object exposes the execCommand method which allows one to run commands to manipulate the contents of the editable region. Most commands affect the document's selection (bold, italics, etc.), while others insert new elements (adding a link) or affect an entire line (indenting). When using contentEditable, calling execCommand() will affect the currently active editable element.
API DOM editor Method NeedsBrowserCompatibility NeedsExample Reference

Document.designMode

document.designMode controls whether the entire document is editable. Valid values are "on" and "off". According to the specification, this property is meant to default to "off". Firefox follows this standard. The earlier versions of Chrome and IE default to "inherit". Starting in Chrome 43, the default is "off" and "inherit" is no longer supported. In IE6-10, the value is capitalized. 
API Document editor HTML DOM NeedsBrowserCompatibility NeedsContent NeedsSpecTable Property Reference Référence