diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2020-01-04 20:41:41 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2020-01-26 15:50:18 -0500 |
commit | 1674f8f750b650e6d5fe2245f2c9bcfb5de48230 (patch) | |
tree | a462599f1c6fac0ac09364606ba4ce304f1375bc /dom/webidl/ParentNode.webidl | |
parent | cc533eaee5b800a534b93484598779debcdf5591 (diff) | |
download | UXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.tar UXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.tar.gz UXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.tar.lz UXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.tar.xz UXP-1674f8f750b650e6d5fe2245f2c9bcfb5de48230.zip |
Bug 1340027 - Part 1: Add DOM CEReactions annotation.
Tag UXP Issue #1344
Diffstat (limited to 'dom/webidl/ParentNode.webidl')
-rw-r--r-- | dom/webidl/ParentNode.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/webidl/ParentNode.webidl b/dom/webidl/ParentNode.webidl index 5834b9be3..aa6ca5db2 100644 --- a/dom/webidl/ParentNode.webidl +++ b/dom/webidl/ParentNode.webidl @@ -18,8 +18,8 @@ interface ParentNode { [Pure] readonly attribute unsigned long childElementCount; - [Throws, Unscopable] + [CEReactions, Throws, Unscopable] void prepend((Node or DOMString)... nodes); - [Throws, Unscopable] + [CEReactions, Throws, Unscopable] void append((Node or DOMString)... nodes); }; |