1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:27:43 +00:00

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>