mirror of
https://github.com/servo/servo.git
synced 2025-08-13 17:35:36 +01:00
Implement removeAttributeNode
This commit implement removeAttributeNode, as described here: https://dom.spec.whatwg.org/#dom-element-removeattributenode See also #8724 and #8068.
This commit is contained in:
parent
918681931f
commit
d28c9a1588
5 changed files with 8 additions and 18 deletions
|
@ -49,6 +49,8 @@ interface Element : Node {
|
|||
void setAttributeNS(DOMString? namespace, DOMString name, DOMString value);
|
||||
void removeAttribute(DOMString name);
|
||||
void removeAttributeNS(DOMString? namespace, DOMString localName);
|
||||
[Throws]
|
||||
Attr removeAttributeNode(Attr oldAttr);
|
||||
boolean hasAttribute(DOMString name);
|
||||
boolean hasAttributeNS(DOMString? namespace, DOMString localName);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue