mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 06:32:26 +02:00
LibWeb: Implement Node.lookupNamespaceURI()
This method takes a prefix and returns the namespace URI associated with it on the given node, or null if no namespace is found. (cherry picked from commit 27d429a85f359b9c87bf9807e4dea33f7092308a)
This commit is contained in:
committed by
Nico Weber
parent
c266e83c78
commit
e81cb6d41d
@@ -55,7 +55,7 @@ interface Node : EventTarget {
|
||||
boolean contains(Node? other);
|
||||
|
||||
[FIXME] DOMString? lookupPrefix(DOMString? namespace);
|
||||
[FIXME] DOMString? lookupNamespaceURI(DOMString? prefix);
|
||||
DOMString? lookupNamespaceURI(DOMString? prefix);
|
||||
[FIXME] boolean isDefaultNamespace(DOMString? namespace);
|
||||
|
||||
[ImplementedAs=pre_insert, CEReactions] Node insertBefore(Node node, Node? child);
|
||||
|
||||
Reference in New Issue
Block a user