Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct [CEReactions] usage on HTMLOptionsCollection and HTMLTableRowElement #1974

Merged
merged 3 commits into from
Oct 28, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -7611,7 +7611,7 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20html%3E..

<pre class="idl">interface <dfn>HTMLOptionsCollection</dfn> : <span>HTMLCollection</span> {
// inherits <span data-x="dom-HTMLCollection-item">item</span>(), <span data-x="dom-HTMLCollection-namedItem">namedItem</span>()
attribute unsigned long <span data-x="dom-HTMLOptionsCollection-length">length</span>; // shadows inherited <span data-x="dom-HTMLCollection-length">length</span>
[<span>CEReactions</span>] attribute unsigned long <span data-x="dom-HTMLOptionsCollection-length">length</span>; // shadows inherited <span data-x="dom-HTMLCollection-length">length</span>
[<span>CEReactions</span>] <a href="#dom-htmloptionscollection-setter">setter</a> void (unsigned long index, <span>HTMLOptionElement</span>? option);
[<span>CEReactions</span>] void <span data-x="dom-HTMLOptionsCollection-add">add</span>((<span>HTMLOptionElement</span> or <span>HTMLOptGroupElement</span>) element, optional (<span>HTMLElement</span> or long)? before = null);
[<span>CEReactions</span>] void <span data-x="dom-HTMLOptionsCollection-remove">remove</span>(long index);
Expand Down Expand Up @@ -39015,7 +39015,7 @@ interface <dfn>HTMLTableRowElement</dfn> : <span>HTMLElement</span> {
readonly attribute long <span data-x="dom-tr-rowIndex">rowIndex</span>;
readonly attribute long <span data-x="dom-tr-sectionRowIndex">sectionRowIndex</span>;
[SameObject] readonly attribute <span>HTMLCollection</span> <span data-x="dom-tr-cells">cells</span>;
[<span>CEReactions</span>] <span>HTMLElement</span> <span data-x="dom-tr-insertCell">insertCell</span>(optional long index = -1);
<span>HTMLElement</span> <span data-x="dom-tr-insertCell">insertCell</span>(optional long index = -1);
[<span>CEReactions</span>] void <span data-x="dom-tr-deleteCell">deleteCell</span>(long index);
};</pre>
</dd>
Expand Down