mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
Bug 1340027 - Part 1: Add DOM CEReactions annotation.
Tag UXP Issue #1344
This commit is contained in:
parent
dd7fa403a8
commit
0ff8d62963
9 changed files with 42 additions and 42 deletions
|
|
@ -57,21 +57,21 @@ interface Node : EventTarget {
|
|||
[Pure]
|
||||
readonly attribute Node? nextSibling;
|
||||
|
||||
[SetterThrows, Pure]
|
||||
[CEReactions, SetterThrows, Pure]
|
||||
attribute DOMString? nodeValue;
|
||||
[Throws, Pure]
|
||||
[CEReactions, Throws, Pure]
|
||||
attribute DOMString? textContent;
|
||||
[Throws]
|
||||
[CEReactions, Throws]
|
||||
Node insertBefore(Node node, Node? child);
|
||||
[Throws]
|
||||
[CEReactions, Throws]
|
||||
Node appendChild(Node node);
|
||||
[Throws]
|
||||
[CEReactions, Throws]
|
||||
Node replaceChild(Node node, Node child);
|
||||
[Throws]
|
||||
[CEReactions, Throws]
|
||||
Node removeChild(Node child);
|
||||
void normalize();
|
||||
|
||||
[Throws]
|
||||
[CEReactions, Throws]
|
||||
Node cloneNode(optional boolean deep = false);
|
||||
[Pure]
|
||||
boolean isSameNode(Node? node);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue