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
If multiple threads try to call document.clone().append(html), they will fail.
.append(html) uses the document's parser, and that is not being cloned along with the document. And so multiple threads are hitting the same parser, which is not thread safe.
If multiple threads try to call
document.clone().append(html)
, they will fail..append(html)
uses the document's parser, and that is not being cloned along with the document. And so multiple threads are hitting the same parser, which is not thread safe.This is the root cause of #2280
The text was updated successfully, but these errors were encountered: