Bug 1340027 - Part 5: Add XSLTProcessor CEReactions annotation.

Tag UXP Issue #1344
This commit is contained in:
Gaming4JC 2020-01-04 21:50:28 -05:00 committed by Roy Tam
commit a5a2fbc9d7

View file

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