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

Improve DOM interfaces' extended attributes #7601

Merged
merged 5 commits into from Sep 20, 2015
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Fix ParentNode missing attributes

ParentNode.children is [SameObject], querySelectorAll() is [NewObject].
  • Loading branch information
nox committed Sep 11, 2015
commit 42254bac7ea268bbb1f627af0d3a152c16fdca8c
@@ -9,7 +9,7 @@

[NoInterfaceObject]
interface ParentNode {
[Constant]
[SameObject]
readonly attribute HTMLCollection children;
[Pure]
readonly attribute Element? firstElementChild;
@@ -28,7 +28,6 @@ interface ParentNode {
//Elements queryAll(DOMString relativeSelectors);
[Throws]
Element? querySelector(DOMString selectors);
//[NewObject]
[Throws]
[NewObject, Throws]
NodeList querySelectorAll(DOMString selectors);
};
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.