fgnass / domino

Server-side DOM implementation based on Mozilla's dom.js
BSD 2-Clause "Simplified" License
768 stars 120 forks source link

noscript not handled properly #182

Open uuf6429 opened 2 years ago

uuf6429 commented 2 years ago

Especially since domino does not execute scripts, one would expect <noscript> to work. However this does not seem to be the case at the moment: https://stackblitz.com/edit/node-a2jfmn?file=index.js

By treating the content of noscript as a text node, it implies that the parser is in fact executing scripts. 😆