Skip to content

Commit

Permalink
Editorial: rename ElementRegistrationOptions to ElementDefinitionOptions
Browse files Browse the repository at this point in the history
These days the process is called "element definition", albeit in a registry.
  • Loading branch information
domenic authored and annevk committed May 8, 2016
1 parent 3210b7c commit a082daa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source
Expand Up @@ -67658,12 +67658,12 @@ console.log(plasticButton2.getAttribute("is")); // will output "plastic-button"<
<code>Window</code> object.</p>

<pre class="idl">interface <dfn>CustomElementsRegistry</dfn> {
void <span data-x="dom-CustomElementsRegistry-define">define</span>(DOMString name, Function constructor, optional ElementRegistrationOptions options);
void <span data-x="dom-CustomElementsRegistry-define">define</span>(DOMString name, Function constructor, optional ElementDefinitionOptions options);
any <span data-x="dom-CustomElementsRegistry-get">get</span>(DOMString name);
[NewObject] Promise&lt;void&gt; <span data-x="dom-CustomElementsRegistry-whenDefined">whenDefined</span>(DOMString name);
};

dictionary <dfn>ElementRegistrationOptions</dfn> {
dictionary <dfn>ElementDefinitionOptions</dfn> {
DOMString extends;
};</pre>

Expand Down

0 comments on commit a082daa

Please sign in to comment.