Base: Add a <noscript> test page

This commit is contained in:
Linus Groh 2022-03-30 23:29:35 +01:00 committed by Andreas Kling
parent 04e40b7aaa
commit b64080a913
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>&lt;noscript&gt;</title>
</head>
<body>
<script>
alert("Scripting is enabled!");
</script>
<noscript>
Scripting is disabled!
</noscript>
</body>
</html>

View file

@ -73,6 +73,7 @@
<li><a href="br.html">br</a></li>
<li><a href="progressbar.html">progressbar</a></li>
<li><a href="textarea.html">textarea</a></li>
<li><a href="noscript.html">noscript</a></li>
</ul>
<h2>CSS</h2>