Noscript Subdomain Redirect Test

What this tests

This page contains a <noscript> block in its <head> that performs an immediate redirect to nojs.test-website-a.pages.dev.

Result

Steps

  1. Open this page with JavaScript enabled. You should see "JS is enabled" below, meaning the <noscript> redirect did not fire.
  2. Disable JavaScript (e.g. via DevTools, browser settings, or a Brave Shields toggle) and reload this page.
  3. If the browser does not protect against this technique, you will be redirected to nojs.test-website-a.pages.dev/noscript-redirect/landed.html.
  4. If the browser blocks or ignores the <noscript> redirect, you will stay on this page (and see the <noscript> fallback message below).

How it works

The <head> of this page contains:

<noscript>
  <meta http-equiv="refresh"
        content="0;url=https://nojs.test-website-a.pages.dev/noscript-redirect/landed.html" />
</noscript>

When JavaScript is disabled, the browser executes the <noscript> block, which triggers an immediate client-side redirect to the subdomain.

Expected results

Scenario Expected behavior
JS enabled Page loads normally, no redirect
JS disabled (unprotected browser) Redirected to nojs.test-website-a.pages.dev
JS disabled (protected browser) Stays on this page, noscript redirect blocked