Bug 1340027 - Part 5: Add XSLTProcessor CEReactions annotation. r=smaug

This commit is contained in:
johndai1984 2017-06-29 10:28:00 -04:00
Родитель 4512523d9b
Коммит 21ef8236e2
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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