From a5a2fbc9d76b22213777916eb084958bb1f6d38a Mon Sep 17 00:00:00 2001 From: Gaming4JC Date: Sat, 4 Jan 2020 21:50:28 -0500 Subject: [PATCH] Bug 1340027 - Part 5: Add XSLTProcessor CEReactions annotation. Tag UXP Issue #1344 --- dom/webidl/XSLTProcessor.webidl | 4 ++-- 1 file 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); /**