We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FormHistoryControl log an error to the console when the user opens a page using the <frameset> tag.
<frameset>
To Reproduce
TypeError: MutationObserver.observe: Argument 1 is not an object. 3 [collectFormData.js:963:25](moz-extension://baedb3c4-9d4c-4c37-9592-7709714d6a1c/content/collectFormData.js) addBodyObserver moz-extension://baedb3c4-9d4c-4c37-9592-7709714d6a1c/content/collectFormData.js:963 addAllHandlers moz-extension://baedb3c4-9d4c-4c37-9592-7709714d6a1c/content/collectFormData.js:1046 <anonymous> moz-extension://baedb3c4-9d4c-4c37-9592-7709714d6a1c/content/collectFormData.js:1050 inject resource://gre/modules/ExtensionContent.sys.mjs:581 AsyncFunctionNext self-hosted:852
Expected behavior No error. Support for <frameset>
Desktop
Fix in collectFormData.js:964, replace
aDocument.querySelector("body"),
by
aDocument.body,
The text was updated successfully, but these errors were encountered:
Fix stephanmahieu#153 <frameset> causes "TypeError: MutationObserver.…
932ada7
…observe: Argument 1 is not an object"
Fix error adding MutationObserver to framesets (#153)
9ce0a9b
Fixed in v2.5.7.1, released 18 October.
Sorry, something went wrong.
No branches or pull requests
FormHistoryControl log an error to the console when the user opens a page using the
<frameset>
tag.To Reproduce
Expected behavior
No error. Support for
<frameset>
Desktop
Fix
in collectFormData.js:964, replace
by
The text was updated successfully, but these errors were encountered: