Add a dummy implementation of contentEditable

This commit is contained in:
Alan Jeffrey 2020-04-21 16:56:58 -05:00
parent b60c70bab6
commit c00eb62090
3 changed files with 24 additions and 15 deletions

View file

@ -5,7 +5,7 @@
// https://html.spec.whatwg.org/multipage/#elementcontenteditable
[Exposed=Window]
interface mixin ElementContentEditable {
// [CEReactions]
// attribute DOMString contentEditable;
// readonly attribute boolean isContentEditable;
[CEReactions]
attribute DOMString contentEditable;
readonly attribute boolean isContentEditable;
};