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

Update HTMLCollection and Add HTMLCollectionOf<T extends Element> #78

Merged
merged 5 commits into from
Mar 24, 2016
Merged

Update HTMLCollection and Add HTMLCollectionOf<T extends Element> #78

merged 5 commits into from
Mar 24, 2016

Conversation

FranklinWhale
Copy link
Contributor

@msftclas
Copy link

Hi @FranklinWhale, I'm your friendly neighborhood Microsoft Pull Request Bot (You can call me MSBOT). Thanks for your contribution!

In order for us to evaluate and accept your PR, we ask that you sign a contribution license agreement. It's all electronic and will take just minutes. I promise there's no faxing. https://cla.microsoft.com.

TTYL, MSBOT;

@msftclas
Copy link

@FranklinWhale, Thanks for signing the contribution license agreement so quickly! Actual humans will now validate the agreement and then evaluate the PR.

Thanks, MSBOT;

@@ -7047,7 +7047,7 @@ interface HTMLTableElement extends HTMLElement {
/**
* Retrieves a collection of all tBody objects in the table. Objects in this collection are in source order.
*/
tBodies: HTMLCollection;
tBodies: HTMLCollectionOf<HTMLTableSectionElement>;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not HTMLTableBodyElement?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I followed the return type of the following functions:

createElement(tagName: "tbody"): HTMLTableSectionElement;
getElementsByTagName(tagname: "tbody"): NodeListOf<HTMLTableSectionElement>;
createTBody(): HTMLTableSectionElement;

@mhegazy
Copy link
Contributor

mhegazy commented Mar 24, 2016

👍

@mhegazy
Copy link
Contributor

mhegazy commented Mar 24, 2016

Thanks. LGTM.

@mhegazy mhegazy merged commit 363eccd into microsoft:master Mar 24, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants