diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2020-01-04 21:50:28 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2020-01-26 15:50:20 -0500 |
commit | 4c9eab4d26e47a0df52a9ee843123535346aceda (patch) | |
tree | 8fc7524ec3883ddc817c6339ca963bb6c523d0d7 /dom | |
parent | 7a1cb50405028b3bf911262693f64c9ecad47f63 (diff) | |
download | uxp-4c9eab4d26e47a0df52a9ee843123535346aceda.tar.gz |
Bug 1340027 - Part 5: Add XSLTProcessor CEReactions annotation.
Tag UXP Issue #1344
Diffstat (limited to 'dom')
-rw-r--r-- | dom/webidl/XSLTProcessor.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/webidl/XSLTProcessor.webidl b/dom/webidl/XSLTProcessor.webidl index ce9ed846f0..276e1b3fa3 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); /** |