summaryrefslogtreecommitdiffstats
path: root/dom/webidl/XSLTProcessor.webidl
diff options
context:
space:
mode:
Diffstat (limited to 'dom/webidl/XSLTProcessor.webidl')
-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);
/**