diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-06-15 21:47:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 21:47:16 -0700 |
commit | c58bcc23ea5c4b5f83944e111ce9a2d0ec2b5400 (patch) | |
tree | 388de9a62d0b9e8f01efae129985be1f04e6a830 /components/script/dom/webidls/HTMLTableHeaderCellElement.webidl | |
parent | 33766b2714443399808c950e5bb74b1f124f2bc4 (diff) | |
parent | e4ff934e82ec865dd9bb0626f012ff1464f80c2f (diff) | |
download | servo-c58bcc23ea5c4b5f83944e111ce9a2d0ec2b5400.tar.gz servo-c58bcc23ea5c4b5f83944e111ce9a2d0ec2b5400.zip |
Auto merge of #17224 - cbrewster:html_constructor, r=jdm
WebIDL HTMLConstructor support
<!-- Please describe your changes on the following line: -->
spec: https://html.spec.whatwg.org/multipage/#htmlconstructor
---
<!-- 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 #17194 (github issue number if applicable).
<!-- Either: -->
- [X] There are tests for these changes OR
- [ ] These changes do not require tests because _____
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17224)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/webidls/HTMLTableHeaderCellElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTableHeaderCellElement.webidl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/webidls/HTMLTableHeaderCellElement.webidl b/components/script/dom/webidls/HTMLTableHeaderCellElement.webidl index 9bf8f1fc950..b9185c93149 100644 --- a/components/script/dom/webidls/HTMLTableHeaderCellElement.webidl +++ b/components/script/dom/webidls/HTMLTableHeaderCellElement.webidl @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ // https://html.spec.whatwg.org/multipage/#htmltableheadercellelement +[HTMLConstructor] interface HTMLTableHeaderCellElement : HTMLTableCellElement { // attribute DOMString scope; // attribute DOMString abbr; |