1

Steps to reproduce:
go to a webpage that has a <noscript> tag
disable javascript

Expected behavior:
the text within the <noscript> tag should appear, like it does on safari. however, on orion, it does not.

Orion, OS version; hardware type:
Version 0.99.124.4.1-beta (WebKit 616.1.14.11.1)
MacBook Pro 14" 2021 (macOS Ventura 13.4 build 22F66)

Image/Video:

webpage used in the video:

<!DOCTYPE html><html><body>

<p id="a">JS disabled!</p>

<button id="b" onclick="this.innerHTML = Math.random()">
	Clicking me should do nothing!</button>

<noscript><p>This is wrapped in noscript!</p></noscript>

<script>
	document.getElementById("a").innerHTML = "JS enabled!";
	document.getElementById("b").innerHTML = "Clicking me should show a number!"
</script>

</body></html>
    a month later
    No one is typing