forked from mirrors/gecko-dev
<!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix (partially) #12415 (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [X] These changes do not require tests because they don't add any feature <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> * HTMLTableCaptionElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablecaptionelement)] * HTMLTableCellElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablecellelement)] * HTMLTableColElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablecolelement)] * HTMLTableElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltableelement)] * HTMLTableRowElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablerowelement)] * HTMLTableSectionElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablesectionelement)] Source-Repo: https://github.com/servo/servo Source-Revision: 7c8bd58c4a53077af564f8024179732dffa15b39
22 lines
784 B
Text
22 lines
784 B
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://html.spec.whatwg.org/multipage/#htmltablesectionelement
|
|
interface HTMLTableSectionElement : HTMLElement {
|
|
readonly attribute HTMLCollection rows;
|
|
[Throws]
|
|
HTMLElement insertRow(optional long index = -1);
|
|
[Throws]
|
|
void deleteRow(long index);
|
|
|
|
// also has obsolete members
|
|
};
|
|
|
|
// https://html.spec.whatwg.org/multipage/#HTMLTableSectionElement-partial
|
|
partial interface HTMLTableSectionElement {
|
|
// attribute DOMString align;
|
|
// attribute DOMString ch;
|
|
// attribute DOMString chOff;
|
|
// attribute DOMString vAlign;
|
|
};
|