mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-25 11:48:06 +00:00
LibWeb/DOM: Add FIXMEs for missing functions in Node
This commit is contained in:
parent
62f74f3b77
commit
116c1f835d
Notes:
sideshowbarker
2024-07-18 02:43:56 +09:00
Author: https://github.com/jamierocks
Commit: 116c1f835d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/682
Reviewed-by: https://github.com/tcl3 ✅
1 changed files with 4 additions and 0 deletions
|
@ -54,6 +54,10 @@ interface Node : EventTarget {
|
||||||
unsigned short compareDocumentPosition(Node? otherNode);
|
unsigned short compareDocumentPosition(Node? otherNode);
|
||||||
boolean contains(Node? other);
|
boolean contains(Node? other);
|
||||||
|
|
||||||
|
[FIXME] DOMString? lookupPrefix(DOMString? namespace);
|
||||||
|
[FIXME] DOMString? lookupNamespaceURI(DOMString? prefix);
|
||||||
|
[FIXME] boolean isDefaultNamespace(DOMString? namespace);
|
||||||
|
|
||||||
[ImplementedAs=pre_insert, CEReactions] Node insertBefore(Node node, Node? child);
|
[ImplementedAs=pre_insert, CEReactions] Node insertBefore(Node node, Node? child);
|
||||||
[CEReactions] Node appendChild(Node node);
|
[CEReactions] Node appendChild(Node node);
|
||||||
[CEReactions] Node replaceChild(Node node, Node child);
|
[CEReactions] Node replaceChild(Node node, Node child);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue