Skip to content

Commit 217e703

Browse files
authored
Fix IDL definition of ElementContentEditable
Base [`ElementContentEditable`](https://html.spec.whatwg.org/multipage/interaction.html#elementcontenteditable) interface is an `interface mixin`. The `partial` definition needs to use `partial interface mixin` as a result per the Web IDL spec (see [partial interface mixin](https://heycam.github.io/webidl/#partial-interface-mixin)) definitions)
1 parent 35f7f15 commit 217e703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@

The VirtualKeyboard Interface

237237
<section data-dfn-for="ElementContentEditable">
238238
<h2>Extensions to the <dfn>ElementContentEditabledfn> mixinh2>
239239
<pre class="idl">
240-
partial interface ElementContentEditable {
240+
partial interface mixin ElementContentEditable {
241241
[CEReactions] attribute DOMString virtualKeyboardPolicy;
242242
};
243243
pre>

0 commit comments

Comments
 (0)