Bug 1340027 - Part 1: Add DOM CEReactions annotation.

Tag UXP Issue #1344
This commit is contained in:
Gaming4JC 2020-01-04 20:41:41 -05:00 committed by Roy Tam
commit 0ff8d62963
9 changed files with 42 additions and 42 deletions

View file

@ -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);