We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Along with the existing specced IDL changes Chrome also has the below changes
interface mixin ParentNode { [Unscopable, RaisesException, CEReactions] void prepend((Node or DOMString or TrustedScript)... nodes); [Unscopable, RaisesException, CEReactions] void append((Node or DOMString or TrustedScript)... nodes); [Unscopable, RaisesException, CEReactions] void replaceChildren((Node or DOMString or TrustedScript)... nodes); };
interface mixin ChildNode { [Unscopable, RaisesException, CEReactions] void before((Node or DOMString or TrustedScript) ... nodes); [Unscopable, RaisesException, CEReactions] void after((Node or DOMString or TrustedScript)... nodes); [Unscopable, RaisesException, CEReactions] void replaceWith((Node or DOMString or TrustedScript)... nodes); };
The text was updated successfully, but these errors were encountered:
Moved DOMParts API IDL to its own issue #441
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Along with the existing specced IDL changes Chrome also has the below changes
The text was updated successfully, but these errors were encountered: