diff --git a/wx-src/content.js b/wx-src/content.js index e03c2db1..0880a0b9 100644 --- a/wx-src/content.js +++ b/wx-src/content.js @@ -228,7 +228,13 @@ function insertTextIntoRichTextEditor(aRichTextEditorDocument, aClippingText, aA function createInputEventInstance() { - return new Event("input", { bubbles: true, cancelable: false }); + let eventInit = { + bubbles: true, + cancelable: false, + composed: true + }; + + return new Event("input", eventInit); }