- From: Marcos Cáceres <notifications@github.com>
- Date: Thu, 07 May 2020 22:32:17 -0700
- To: w3c/editing <editing@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 8 May 2020 05:32:30 UTC
@marcoscaceres commented on this pull request.
> + </ul>
+ </p>
+ <p class="note">
+ Note that this specification does not have a shortcut to disable all editing UI. Authors should consider using a <code>textarea</code> or <code>contenteditable="plaintext-only"</code> for this purpose.
+ </p>
+ </section>
+ <section id="element-contenteditable-mixin">
+ <h2>Extensions to the <dfn>ElementContentEditable</dfn> mixin</h2>
+ <pre class="idl">
+ [Exposed=Window]
+ interface ElementContentEditable {
+ [SameObject, PutForwards=value] readonly attribute DOMTokenList contentEditableDisabled;
+ };
+ </pre>
+ <p>
+ The <code>contentEditableDisabled</code> WebIDL property reflects the contenteditable-disabled DOM content attribute.
```suggestion
The {{ElementContentEditable/contentEditableDisabled}} IDL attribute reflects the contenteditable-disabled DOM content attribute.
```
--
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/251#pullrequestreview-408005460
Received on Friday, 8 May 2020 05:32:30 UTC