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
import{parseHTML}from'linkedom';constwindow=parseHTML('<!DOCTYPE html><html><head></head><body></body></html>');// These are OK:// window.document.body.innerHTML = '1';// window.document.body.innerText = '1';// These are not:window.document.body.innerHTML=1;window.document.body.innerText=1;
The behavior tested on the browser seems to be consistent with