summaryrefslogtreecommitdiffstats
path: root/dom
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2020-01-04 21:50:28 -0500
committerGaming4JC <g4jc@hyperbola.info>2020-01-26 15:50:20 -0500
commit4c9eab4d26e47a0df52a9ee843123535346aceda (patch)
tree8fc7524ec3883ddc817c6339ca963bb6c523d0d7 /dom
parent7a1cb50405028b3bf911262693f64c9ecad47f63 (diff)
downloadUXP-4c9eab4d26e47a0df52a9ee843123535346aceda.tar
UXP-4c9eab4d26e47a0df52a9ee843123535346aceda.tar.gz
UXP-4c9eab4d26e47a0df52a9ee843123535346aceda.tar.lz
UXP-4c9eab4d26e47a0df52a9ee843123535346aceda.tar.xz
UXP-4c9eab4d26e47a0df52a9ee843123535346aceda.zip
Bug 1340027 - Part 5: Add XSLTProcessor CEReactions annotation.
Tag UXP Issue #1344
Diffstat (limited to 'dom')
-rw-r--r--dom/webidl/XSLTProcessor.webidl4
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/webidl/XSLTProcessor.webidl b/dom/webidl/XSLTProcessor.webidl
index ce9ed846f..276e1b3fa 100644
--- a/dom/webidl/XSLTProcessor.webidl
+++ b/dom/webidl/XSLTProcessor.webidl
@@ -30,7 +30,7 @@ interface XSLTProcessor {
* @param output This document is used to generate the output
* @return DocumentFragment The result of the transformation
*/
- [Throws]
+ [CEReactions, Throws]
DocumentFragment transformToFragment(Node source,
Document output);
@@ -41,7 +41,7 @@ interface XSLTProcessor {
* @param source The node to be transformed
* @return Document The result of the transformation
*/
- [Throws]
+ [CEReactions, Throws]
Document transformToDocument(Node source);
/**