mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Implement Document::CreateAttributeNS()
This commit is contained in:
parent
7b4f6126c8
commit
2353bc4798
4 changed files with 17 additions and 18 deletions
|
@ -40,14 +40,16 @@ interface Document : Node {
|
|||
[NewObject, Throws]
|
||||
ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data);
|
||||
|
||||
[NewObject, Throws]
|
||||
Attr createAttribute(DOMString localName);
|
||||
|
||||
[NewObject, Throws]
|
||||
Node importNode(Node node, optional boolean deep = false);
|
||||
[Throws]
|
||||
Node adoptNode(Node node);
|
||||
|
||||
[NewObject, Throws]
|
||||
Attr createAttribute(DOMString localName);
|
||||
[NewObject, Throws]
|
||||
Attr createAttributeNS(DOMString? namespace, DOMString localName);
|
||||
|
||||
[NewObject, Throws]
|
||||
Event createEvent(DOMString interface_);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue