You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
I noticed this extension logs an error whenever an element containing only text is updated.
This issue appears to be Firefox only. I observed this issue in v112.
The problem comes from this section of content.js line 154-156
I noticed this extension logs an error whenever an element containing only text is updated.
This issue appears to be Firefox only. I observed this issue in v112.
The problem comes from this section of content.js line 154-156
In firefox, when a node containing just text is updated,
node.dataset
is null, and the attempt to read.demodal
causes a type error.I think the above code could be changed as follows to filter out text-only mutations.
Here is a minimal html file which triggers the issue once per second.
npx http-server --port 8000
and navigate tohttp://localhost:8000/issue.html
The text was updated successfully, but these errors were encountered: