Nightly private modes

(default settings)
brave logo
brave
1.77

private
brave logo
brave
1.77

Tor
chrome logo
chrome
135.0

private
edge logo
edge
135.0

private
firefox logo
firefox
137.0a1

private
opera logo
opera
118.0

private
safari logo
safari
18.2

private
tor logo
tor
14.5a3

private
vivaldi logo
vivaldi
7.2

private
State Partitioning testsWhich browsers isolate websites to prevent them from sharing data to track you?
A common vulnerability of web browsers is that they allow tracking companies to 'tag' your browser with some data ('state') that identifies you. When third-party trackers are embedded in websites, they can see this identifying data as you browse to different websites. Fortunately, it is possible for this category of leaks to be fixed by partitioning all data stored in the browser such that no data can be shared between websites.
Alt-Svc
Alt-Svc allows the server to indicate to the web browser that a resource should be loaded on a different server. Because this is a persistent setting, it could be used to track users across websites if it is not correctly partitioned.
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same first party: h3, h3, h3, h3, h3
result, different first party: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same first party: h3, h3, h3, h3, h3
result, different first party: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same first party: h3, h3, h3, h3, h3
result, different first party: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same first party: h3, h3, h3, h3
result, different first party: h2, h2, h2, h2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same first party: h3, h3, h3, h3, h3
result, different first party: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party: h2, h2, h2, h2
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same first party: h3, h3, h3, h3, h3
result, different first party: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
blob
A 'blob URL' is a local reference to some raw data. Trackers can use a blob URL to share data between websites.
Passed
write: (secret) => {
      try {
        let blobURL = URL.createObjectURL(new Blob([secret]));
        fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async (secret) => {
      let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
      let result = await response.json();
      let blobUrl = decodeURIComponent(result.blobUrl);
      let blobResponse = await fetch(blobUrl);
      return blobResponse.text();
    }
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party:
Error: Failed to fetch,
Error: Failed to fetch,
Error: Failed to fetch,
Error: Failed to fetch,
Error: Failed to fetch
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      try {
        let blobURL = URL.createObjectURL(new Blob([secret]));
        fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async (secret) => {
      let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
      let result = await response.json();
      let blobUrl = decodeURIComponent(result.blobUrl);
      let blobResponse = await fetch(blobUrl);
      return blobResponse.text();
    }
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party:
Error: Failed to fetch,
Error: Failed to fetch,
Error: Failed to fetch,
Error: Failed to fetch,
Error: Failed to fetch
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
write: (secret) => {
      try {
        let blobURL = URL.createObjectURL(new Blob([secret]));
        fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async (secret) => {
      let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
      let result = await response.json();
      let blobUrl = decodeURIComponent(result.blobUrl);
      let blobResponse = await fetch(blobUrl);
      return blobResponse.text();
    }
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
write: (secret) => {
      try {
        let blobURL = URL.createObjectURL(new Blob([secret]));
        fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async (secret) => {
      let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
      let result = await response.json();
      let blobUrl = decodeURIComponent(result.blobUrl);
      let blobResponse = await fetch(blobUrl);
      return blobResponse.text();
    }
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: (secret) => {
      try {
        let blobURL = URL.createObjectURL(new Blob([secret]));
        fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async (secret) => {
      let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
      let result = await response.json();
      let blobUrl = decodeURIComponent(result.blobUrl);
      let blobResponse = await fetch(blobUrl);
      return blobResponse.text();
    }
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party:
Error: NetworkError when attempting to fetch resource.,
Error: NetworkError when attempting to fetch resource.,
Error: NetworkError when attempting to fetch resource.,
Error: NetworkError when attempting to fetch resource.
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Failed
write: (secret) => {
      try {
        let blobURL = URL.createObjectURL(new Blob([secret]));
        fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async (secret) => {
      let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
      let result = await response.json();
      let blobUrl = decodeURIComponent(result.blobUrl);
      let blobResponse = await fetch(blobUrl);
      return blobResponse.text();
    }
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: (secret) => {
      try {
        let blobURL = URL.createObjectURL(new Blob([secret]));
        fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async (secret) => {
      let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
      let result = await response.json();
      let blobUrl = decodeURIComponent(result.blobUrl);
      let blobResponse = await fetch(blobUrl);
      return blobResponse.text();
    }
result, same first party:
Error: Load failed,
Error: Load failed,
Error: Load failed,
Error: Load failed
result, different first party:
Error: Load failed,
Error: Load failed,
Error: Load failed,
Error: Load failed
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: (secret) => {
      try {
        let blobURL = URL.createObjectURL(new Blob([secret]));
        fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async (secret) => {
      let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
      let result = await response.json();
      let blobUrl = decodeURIComponent(result.blobUrl);
      let blobResponse = await fetch(blobUrl);
      return blobResponse.text();
    }
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party:
Error: NetworkError when attempting to fetch resource.,
Error: NetworkError when attempting to fetch resource.,
Error: NetworkError when attempting to fetch resource.,
Error: NetworkError when attempting to fetch resource.,
Error: NetworkError when attempting to fetch resource.
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
write: (secret) => {
      try {
        let blobURL = URL.createObjectURL(new Blob([secret]));
        fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async (secret) => {
      let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
      let result = await response.json();
      let blobUrl = decodeURIComponent(result.blobUrl);
      let blobResponse = await fetch(blobUrl);
      return blobResponse.text();
    }
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
BroadcastChannel
A BroadcastChannel is designed to send messages between tabs. In some browsers it can be used for cross-site communication and tracking.
Passed
write: (secret) => {
      try {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data === "request") {
            bc.postMessage(secret);
          }
        };
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () =>
      new Promise((resolve, reject) => {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data !== "request") {
            resolve(event.data);
          }
        };
        bc.postMessage("request");
        setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
      })
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      try {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data === "request") {
            bc.postMessage(secret);
          }
        };
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () =>
      new Promise((resolve, reject) => {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data !== "request") {
            resolve(event.data);
          }
        };
        bc.postMessage("request");
        setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
      })
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      try {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data === "request") {
            bc.postMessage(secret);
          }
        };
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () =>
      new Promise((resolve, reject) => {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data !== "request") {
            resolve(event.data);
          }
        };
        bc.postMessage("request");
        setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
      })
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      try {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data === "request") {
            bc.postMessage(secret);
          }
        };
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () =>
      new Promise((resolve, reject) => {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data !== "request") {
            resolve(event.data);
          }
        };
        bc.postMessage("request");
        setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
      })
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      try {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data === "request") {
            bc.postMessage(secret);
          }
        };
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () =>
      new Promise((resolve, reject) => {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data !== "request") {
            resolve(event.data);
          }
        };
        bc.postMessage("request");
        setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
      })
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (secret) => {
      try {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data === "request") {
            bc.postMessage(secret);
          }
        };
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () =>
      new Promise((resolve, reject) => {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data !== "request") {
            resolve(event.data);
          }
        };
        bc.postMessage("request");
        setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
      })
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      try {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data === "request") {
            bc.postMessage(secret);
          }
        };
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () =>
      new Promise((resolve, reject) => {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data !== "request") {
            resolve(event.data);
          }
        };
        bc.postMessage("request");
        setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
      })
result, same first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
result, different first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: (secret) => {
      try {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data === "request") {
            bc.postMessage(secret);
          }
        };
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () =>
      new Promise((resolve, reject) => {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data !== "request") {
            resolve(event.data);
          }
        };
        bc.postMessage("request");
        setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
      })
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party:
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      try {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data === "request") {
            bc.postMessage(secret);
          }
        };
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () =>
      new Promise((resolve, reject) => {
        let bc = new BroadcastChannel("secrets");
        bc.onmessage = (event) => {
          if (event.data !== "request") {
            resolve(event.data);
          }
        };
        bc.postMessage("request");
        setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
      })
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
CacheStorage
The Cache API is a content storage mechanism originally introduced to support ServiceWorkers. If the same Cache object is accessible to multiple websites, it can be abused to track users.
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party:
Error: can't access property "url",
cacheKeys[0] is undefined,
Error: can't access property "url",
cacheKeys[0] is undefined,
Error: can't access property "url",
cacheKeys[0] is undefined,
Error: can't access property "url",
cacheKeys[0] is undefined
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same first party:
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url')
result, different first party:
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party:
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
cookie (HTTP)
The cookie, first introduced by Netscape in 1994, is a small amount of data stored by your browser on a website's behalf. It has legitimate uses, but it is also the classic cross-site tracking mechanism, and today still the most popular method of tracking users across websites. Browsers can stop cookies from being used for cross-site tracking by either blocking or partitioning them.
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_http,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_http,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_http,
4823b503-1134-4495-9521-589c3cadb53e_http,
7b8dca09-76bf-49f2-afcb-a91cdd692309_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_http,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_http,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_http,
f45c459c-5f59-4574-babc-86efafb20e14_http,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2_http,
e55181f7-2aca-4c30-9a92-3491983f9617_http,
f566ba5d-ee36-4b64-a42d-b5747f068895_http,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_http,
203a504b-96ce-449e-a71f-f5d63594e59a_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_http,
57b852fb-1d89-4246-bdfa-0358c6522fc0_http,
48bc70ec-6769-476a-ad77-a340f70557f8_http,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_http,
62807c4d-1588-4f45-9ad3-aaafe56a0497_http
result, different first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_http,
57b852fb-1d89-4246-bdfa-0358c6522fc0_http,
48bc70ec-6769-476a-ad77-a340f70557f8_http,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_http,
62807c4d-1588-4f45-9ad3-aaafe56a0497_http
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_http,
c256577c-3fb1-4313-9d33-63732756dd86_http,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_http,
f3e02565-bdae-49e3-a7db-063f329a1fbe_http
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94_http,
d278d65a-73bf-45d1-a6a1-883a31a6e059_http,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_http,
8a221de0-7361-4126-a282-ce8d09ee7e8a_http,
415283d0-dc14-4738-acf2-94d3bc317cce_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same first party: , , ,
result, different first party: , , ,
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f_http,
70c04d6e-f9a9-40c0-befa-e612e1ad2491_http,
0b1f9b17-e805-4333-92c1-36ffc60a5556_http,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b_http,
7498691f-abaf-4bb9-b2ce-5daf69605ca7_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1_http,
b0c78218-66b9-43ca-af33-770f378ec58d_http,
5abdef5b-b566-4486-ae6e-21ac177da9ae_http,
89191af8-baf2-41e8-9b20-e09608b0e822_http,
d1d5c108-4cd2-4362-9b18-764d78b3371b_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
cookie (JS)
The cookie, first introduced by Netscape in 1994, is a small amount of data stored by your browser on a website's behalf. It has legitimate uses, but it is also the classic cross-site tracking mechanism, and today still the most popular method of tracking users across websites. Browsers can stop cookies from being used for cross-site tracking by either blocking or partitioning them.
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_js,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_js,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_js,
4823b503-1134-4495-9521-589c3cadb53e_js,
7b8dca09-76bf-49f2-afcb-a91cdd692309_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_js,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_js,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_js,
f45c459c-5f59-4574-babc-86efafb20e14_js,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2_js,
e55181f7-2aca-4c30-9a92-3491983f9617_js,
f566ba5d-ee36-4b64-a42d-b5747f068895_js,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_js,
203a504b-96ce-449e-a71f-f5d63594e59a_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_js,
57b852fb-1d89-4246-bdfa-0358c6522fc0_js,
48bc70ec-6769-476a-ad77-a340f70557f8_js,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_js,
62807c4d-1588-4f45-9ad3-aaafe56a0497_js
result, different first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_js,
57b852fb-1d89-4246-bdfa-0358c6522fc0_js,
48bc70ec-6769-476a-ad77-a340f70557f8_js,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_js,
62807c4d-1588-4f45-9ad3-aaafe56a0497_js
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_js,
c256577c-3fb1-4313-9d33-63732756dd86_js,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_js,
f3e02565-bdae-49e3-a7db-063f329a1fbe_js
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94_js,
d278d65a-73bf-45d1-a6a1-883a31a6e059_js,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_js,
8a221de0-7361-4126-a282-ce8d09ee7e8a_js,
415283d0-dc14-4738-acf2-94d3bc317cce_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: , , ,
result, different first party: , , ,
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f_js,
70c04d6e-f9a9-40c0-befa-e612e1ad2491_js,
0b1f9b17-e805-4333-92c1-36ffc60a5556_js,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b_js,
7498691f-abaf-4bb9-b2ce-5daf69605ca7_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1_js,
b0c78218-66b9-43ca-af33-770f378ec58d_js,
5abdef5b-b566-4486-ae6e-21ac177da9ae_js,
89191af8-baf2-41e8-9b20-e09608b0e822_js,
d1d5c108-4cd2-4362-9b18-764d78b3371b_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
CookieStore
The Cookie Store API is an alternative asynchronous API for managing cookies, supported by some browsers.
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
CSS cache
CSS stylesheets are cached, and if that cache is shared between websites, it can be used to track users across sites.
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same first party:
fake_898020062051285,
fake_7829910404001028,
fake_4652850865735916,
fake_9501070215642662,
fake_46396309615389564
result, different first party:
fake_6816280776955015,
fake_3731318223313136,
fake_04907273934393053,
fake_025954451742633333,
fake_5673591420889996
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same first party:
fake_41816490454340305,
fake_5356270079797532,
fake_6310306782676303,
fake_7386559645197917,
fake_1799074179430047
result, different first party:
fake_6193128313594032,
fake_4440270647284865,
fake_2232439150639367,
fake_6282895123604593,
fake_5500195789595994
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same first party:
fake_23070324092329275,
fake_04746121037950757,
fake_6859441497976004,
fake_1949530809199964,
fake_26688906504765697
result, different first party:
fake_1395042329669689,
fake_5327461405818554,
fake_5107601376977053,
fake_36120010170531547,
fake_3072159190879531
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same first party:
fake_8768405367629917,
fake_7870989290012462,
fake_9895720163581256,
fake_619061763320178,
fake_7219384258881585
result, different first party:
fake_44039393427238593,
fake_3705027852848979,
fake_041685041804711664,
fake_41289530806304464,
fake_5927514878708937
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same first party:
fake_1927381017605283,
fake_31860992940587773,
fake_8904401871683263,
fake_2822720671133827
result, different first party:
fake_06075872813476835,
fake_35108182189937165,
fake_18230142567724994,
fake_03219324192518358
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same first party:
fake_5947176531349656,
fake_4446766310203365,
fake_8991398151410597,
fake_8423292881523878,
fake_263783160746232
result, different first party:
fake_1995820254610674,
fake_41076733554190037,
fake_9347163785570829,
fake_2993876589917217,
fake_4825363499458579
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same first party:
fake_8387141970088501,
fake_615141275483363,
fake_1065515662822687,
fake_6932684709944468
result, different first party:
fake_5234689650391906,
fake_89842113731854,
fake_3251761970542335,
fake_9999771523778451
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same first party:
fake_3668448298631013,
fake_5871920557968244,
fake_6799279120880746,
fake_3128168675884564,
fake_6823400237003978
result, different first party:
fake_7858519255453487,
fake_6415397061580181,
fake_4120267078355133,
fake_5776025694153366,
fake_7792515509953755
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same first party:
fake_00031370011537923403,
fake_3688730167313119,
fake_8616583086245526,
fake_747511127083665,
fake_20213141990675787
result, different first party:
fake_8156111601916345,
fake_6315418784048139,
fake_1331137157713096,
fake_9847584455535816,
fake_7397503274995956
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
favicon cache
A favicon is an icon that represents a website, typically shown in browser tab and bookmarks menu. If the favicon cache is not partitioned, it can be used to track users across websites.
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same first party: 1, 1, 1, 1
result, different first party: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same first party: 1, 1, 1, 1
result, different first party: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
fetch cache
When a resource is received via the Fetch API, it is frequently cached. That cache can potentially be abused for cross-site tracking.
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1
result, different first party: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 2, 2, 2, 2
result, different first party: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
font cache
Web fonts are sometimes stored in their own cache, which is vulnerable to being abused for cross-site tracking.
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1
result, different first party: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 2, 2, 2, 2
result, different first party: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
getDirectory
navigator.storage.getDirectory exposes a location for storing files to web content. In some cases, these files may be shared across tabs.
Passed
write: async (secret) => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt", { create: true });
        const stream = await fileHandle.createWritable();
        await stream.write(secret);
        await stream.close();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt");
        const file = await fileHandle.getFile();
        return file.text();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt", { create: true });
        const stream = await fileHandle.createWritable();
        await stream.write(secret);
        await stream.close();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt");
        const file = await fileHandle.getFile();
        return file.text();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt", { create: true });
        const stream = await fileHandle.createWritable();
        await stream.write(secret);
        await stream.close();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt");
        const file = await fileHandle.getFile();
        return file.text();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt", { create: true });
        const stream = await fileHandle.createWritable();
        await stream.write(secret);
        await stream.close();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt");
        const file = await fileHandle.getFile();
        return file.text();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt", { create: true });
        const stream = await fileHandle.createWritable();
        await stream.write(secret);
        await stream.close();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt");
        const file = await fileHandle.getFile();
        return file.text();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Passed
write: async (secret) => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt", { create: true });
        const stream = await fileHandle.createWritable();
        await stream.write(secret);
        await stream.close();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt");
        const file = await fileHandle.getFile();
        return file.text();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt", { create: true });
        const stream = await fileHandle.createWritable();
        await stream.write(secret);
        await stream.close();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt");
        const file = await fileHandle.getFile();
        return file.text();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async (secret) => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt", { create: true });
        const stream = await fileHandle.createWritable();
        await stream.write(secret);
        await stream.close();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt");
        const file = await fileHandle.getFile();
        return file.text();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt", { create: true });
        const stream = await fileHandle.createWritable();
        await stream.write(secret);
        await stream.close();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      try {
        const root = await navigator.storage.getDirectory();
        const fileHandle = await root.getFileHandle("secret.txt");
        const file = await fileHandle.getFile();
        return file.text();
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
H1 connection
HTTP/1.x are the classic web connection protocols. If these connections are re-used across websites, they can be used to track users.
Passed
write: async (secret) => {
      await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party: , , ,
result, different first party: , , ,
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: async (secret) => {
      await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
H2 connection
HTTP/2 is a web connection protocol introduced in 2015. Some browsers re-use HTTP/2 connections across websites and can thus be used to track users.
Passed
write: async (secret) => {
      await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party: , , ,
result, different first party: , , ,
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: async (secret) => {
      await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
    }
read: async () => {
      let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
      return await response.text();
    }
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
H3 connection
HTTP/3 is a new standard HTTP connection protocol, still in draft but widely supported by browsers. If it is not partitioned, it can be used to track users across websites.
Passed
write: async (secret) => {
      // Ensure that we can switch over to h3 via alt-svc:
      for (let i = 0; i<3; ++i) {
        await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
        await sleepMs(500);
      }
      // Are we now connecting over h3?
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
      let text = await response.text();
      // Empty response text indicates we are not connecting over h3:
      if (text.trim() === "") {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
      return await response.text();
    }
result, same first party:
5b455731b9e1dd38f932ff03c04e4537,
d9cfb1a37b6571f4e8b8830f663ec38e,
6659b2f0a034e959866a81d18cfdeb76,
cb28be7eca49e886b3d0c1cc2fb7c3e9,
a2f2966d50b62af24ab085a1cd61e488
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      // Ensure that we can switch over to h3 via alt-svc:
      for (let i = 0; i<3; ++i) {
        await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
        await sleepMs(500);
      }
      // Are we now connecting over h3?
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
      let text = await response.text();
      // Empty response text indicates we are not connecting over h3:
      if (text.trim() === "") {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
      return await response.text();
    }
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Ensure that we can switch over to h3 via alt-svc:
      for (let i = 0; i<3; ++i) {
        await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
        await sleepMs(500);
      }
      // Are we now connecting over h3?
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
      let text = await response.text();
      // Empty response text indicates we are not connecting over h3:
      if (text.trim() === "") {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
      return await response.text();
    }
result, same first party:
01ff7cf93866fb0c0a8b3483cd36f13b,
3870804025256087629129e701faa2c6,
bd583c73a201119f2ae4c1fd25ac20e6,
28286432ed8d86431ef3930d51b66b5e,
9cded5bfcac4fb46ae362b8d87053a8e
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Ensure that we can switch over to h3 via alt-svc:
      for (let i = 0; i<3; ++i) {
        await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
        await sleepMs(500);
      }
      // Are we now connecting over h3?
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
      let text = await response.text();
      // Empty response text indicates we are not connecting over h3:
      if (text.trim() === "") {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
      return await response.text();
    }
result, same first party:
36fb14427f63a129a54d05bb7274c704,
7b3301abf8ebc0ea654920551cd34e66,
369be2185a6bc8b3512439e4d976d9d2,
deab7438f06925e248a6f483d08914ce,
332e6343150f3fbdc8be4f3467c881ff
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Ensure that we can switch over to h3 via alt-svc:
      for (let i = 0; i<3; ++i) {
        await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
        await sleepMs(500);
      }
      // Are we now connecting over h3?
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
      let text = await response.text();
      // Empty response text indicates we are not connecting over h3:
      if (text.trim() === "") {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
      return await response.text();
    }
result, same first party:
7225b39a086465461ac6d1ade273f429,
c3d0e324669336394d2139f5a7ad7eda,
c357b427bf1fbfb1058cbe3d55f91ce4,
3c478743d5d561004cb06abd49857d14
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (secret) => {
      // Ensure that we can switch over to h3 via alt-svc:
      for (let i = 0; i<3; ++i) {
        await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
        await sleepMs(500);
      }
      // Are we now connecting over h3?
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
      let text = await response.text();
      // Empty response text indicates we are not connecting over h3:
      if (text.trim() === "") {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
      return await response.text();
    }
result, same first party:
1a06ec4b9b8c04b14a3c8781105d5588,
a243ccfe51939658b84e14a497d05448,
7f243782081c379e781b362aa61f4c00,
4534bdfeb6474d6b2993b65412a6adb1,
7a2efd3208a80e2a69328fc42f29cc1f
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      // Ensure that we can switch over to h3 via alt-svc:
      for (let i = 0; i<3; ++i) {
        await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
        await sleepMs(500);
      }
      // Are we now connecting over h3?
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
      let text = await response.text();
      // Empty response text indicates we are not connecting over h3:
      if (text.trim() === "") {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
      return await response.text();
    }
result, same first party: , , ,
result, different first party: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async (secret) => {
      // Ensure that we can switch over to h3 via alt-svc:
      for (let i = 0; i<3; ++i) {
        await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
        await sleepMs(500);
      }
      // Are we now connecting over h3?
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
      let text = await response.text();
      // Empty response text indicates we are not connecting over h3:
      if (text.trim() === "") {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
      return await response.text();
    }
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Ensure that we can switch over to h3 via alt-svc:
      for (let i = 0; i<3; ++i) {
        await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
        await sleepMs(500);
      }
      // Are we now connecting over h3?
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
      let text = await response.text();
      // Empty response text indicates we are not connecting over h3:
      if (text.trim() === "") {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
      return await response.text();
    }
result, same first party:
b1dfc5460fd812c2f75d09978f7702fd,
9d4262382b52bad3565dd08503f6020d,
754afb02449045aceaec0a3feb2c67cf,
e3a386c131306b66030befee6f07a7aa,
07da98e3e364a0f852b7651c8ca8f275
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
HSTS cache

            
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
HSTS cache (fetch)

            
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: null
read: null
result, same first party: , , , ,
result, different first party:
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected,
HTTPS used by default; no HSTS cache issue expected
unsupported: , , , ,
passed: true, true, true, true, true
test failed: false, false, false, false, false
iframe cache
An iframe is an element in a web page than allows websites to embed a second web page. Caching of this web page could be abused for cross-site tracking.
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1
result, different first party: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 2, 2, 2, 2
result, different first party: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
image cache
Caching of images in web browsers is a standard behavior. But if that cache leaks between websites, it can be abused for cross-site tracking.
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1
result, different first party: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 2, 2, 2, 2
result, different first party: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
indexedDB
The IndexedDB API exposes a transactional database to web pages. That database can be used to track users across websites, unless it is partitioned.
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party: undefined
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same first party: undefined
result, different first party: undefined
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party:
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
localStorage
The localStorage API gives websites access to a key-value database that will remain available across visits. If the localStorage API is not partitioned or blocked, it can also be used to track users across websites.
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: , , ,
result, different first party: , , ,
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party:
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
locks
navigator.locks (only supported in some browsers) allows scripts on multiple tabs to coordinate. If this API is not partitioned, it can be used for cross-site tracking.
Passed
write: async (key) => {
      if (navigator.locks) {
        navigator.locks.request(key, lock => new Promise((f,r) => {}));
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].clientId;
      } else {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (navigator.locks) {
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].name;
      }
    }
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party:
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (navigator.locks) {
        navigator.locks.request(key, lock => new Promise((f,r) => {}));
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].clientId;
      } else {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (navigator.locks) {
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].name;
      }
    }
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party:
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (navigator.locks) {
        navigator.locks.request(key, lock => new Promise((f,r) => {}));
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].clientId;
      } else {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (navigator.locks) {
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].name;
      }
    }
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party:
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (navigator.locks) {
        navigator.locks.request(key, lock => new Promise((f,r) => {}));
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].clientId;
      } else {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (navigator.locks) {
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].name;
      }
    }
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party:
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (navigator.locks) {
        navigator.locks.request(key, lock => new Promise((f,r) => {}));
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].clientId;
      } else {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (navigator.locks) {
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].name;
      }
    }
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party:
Error: LockManager.query: query() is not allowed in this context,
Error: LockManager.query: query() is not allowed in this context,
Error: LockManager.query: query() is not allowed in this context,
Error: LockManager.query: query() is not allowed in this context
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      if (navigator.locks) {
        navigator.locks.request(key, lock => new Promise((f,r) => {}));
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].clientId;
      } else {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (navigator.locks) {
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].name;
      }
    }
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party:
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (navigator.locks) {
        navigator.locks.request(key, lock => new Promise((f,r) => {}));
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].clientId;
      } else {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (navigator.locks) {
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].name;
      }
    }
result, same first party:
Error: undefined is not an object (evaluating 'queryResult.held[0].name'),
Error: undefined is not an object (evaluating 'queryResult.held[0].name'),
Error: undefined is not an object (evaluating 'queryResult.held[0].name'),
Error: undefined is not an object (evaluating 'queryResult.held[0].name')
result, different first party:
Error: undefined is not an object (evaluating 'queryResult.held[0].name'),
Error: undefined is not an object (evaluating 'queryResult.held[0].name'),
Error: undefined is not an object (evaluating 'queryResult.held[0].name'),
Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Passed
write: async (key) => {
      if (navigator.locks) {
        navigator.locks.request(key, lock => new Promise((f,r) => {}));
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].clientId;
      } else {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (navigator.locks) {
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].name;
      }
    }
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party:
Error: LockManager.query: query() is not allowed in this context,
Error: LockManager.query: query() is not allowed in this context,
Error: LockManager.query: query() is not allowed in this context,
Error: LockManager.query: query() is not allowed in this context,
Error: LockManager.query: query() is not allowed in this context
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (navigator.locks) {
        navigator.locks.request(key, lock => new Promise((f,r) => {}));
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].clientId;
      } else {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (navigator.locks) {
        let queryResult = await navigator.locks.query();
        return queryResult.held[0].name;
      }
    }
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party:
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name'),
Error: Cannot read properties of undefined (reading 'name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
prefetch cache
A <link rel='prefetch'...> suggests to browsers they should fetch a resource ahead of time and cache it. But if browsers don't partition this cache, it can be used to track users across websites.
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same first party: 1, 1, 1, 1
result, different first party: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same first party:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
result, different first party:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same first party:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
result, different first party:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
script cache
Caching of scripts in web browsers is a standard behavior. But if that cache leaks between websites, it can be abused for cross-site tracking.
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1
result, different first party: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 2, 2, 2, 2
result, different first party: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
ServiceWorker
The ServiceWorker API allows websites to run code in the background and store content in the browser for offline use. If a ServiceWorker can be accessed from multiple websites, it can be abused to track users across sites.
Passed
write: async (key) => {
      if (!navigator.serviceWorker) {
        throw new Error("Unsupported");
      }
      let registration = await navigator.serviceWorker.register(
        'serviceWorker.js');
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      await fetch(`serviceworker-write?secret=${key}`);
    }
read: async () => {
      console.log("trying to register the serviceworker now...");
      const registration = await Promise.race([
        navigator.serviceWorker.register('serviceWorker.js'),
        sleepMs(500)
      ]);
      if (registration === undefined) {
        // We timed out or otherwise failed.
        throw new Error("ServiceWorker registration failed");
      }
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      let response = await fetch("serviceworker-read");
      return await response.text();
    }
result, same first party:
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (!navigator.serviceWorker) {
        throw new Error("Unsupported");
      }
      let registration = await navigator.serviceWorker.register(
        'serviceWorker.js');
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      await fetch(`serviceworker-write?secret=${key}`);
    }
read: async () => {
      console.log("trying to register the serviceworker now...");
      const registration = await Promise.race([
        navigator.serviceWorker.register('serviceWorker.js'),
        sleepMs(500)
      ]);
      if (registration === undefined) {
        // We timed out or otherwise failed.
        throw new Error("ServiceWorker registration failed");
      }
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      let response = await fetch("serviceworker-read");
      return await response.text();
    }
result, same first party:
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
result, different first party: , Error: ServiceWorker registration failed, , , Error: ServiceWorker registration failed
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (!navigator.serviceWorker) {
        throw new Error("Unsupported");
      }
      let registration = await navigator.serviceWorker.register(
        'serviceWorker.js');
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      await fetch(`serviceworker-write?secret=${key}`);
    }
read: async () => {
      console.log("trying to register the serviceworker now...");
      const registration = await Promise.race([
        navigator.serviceWorker.register('serviceWorker.js'),
        sleepMs(500)
      ]);
      if (registration === undefined) {
        // We timed out or otherwise failed.
        throw new Error("ServiceWorker registration failed");
      }
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      let response = await fetch("serviceworker-read");
      return await response.text();
    }
result, same first party:
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (!navigator.serviceWorker) {
        throw new Error("Unsupported");
      }
      let registration = await navigator.serviceWorker.register(
        'serviceWorker.js');
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      await fetch(`serviceworker-write?secret=${key}`);
    }
read: async () => {
      console.log("trying to register the serviceworker now...");
      const registration = await Promise.race([
        navigator.serviceWorker.register('serviceWorker.js'),
        sleepMs(500)
      ]);
      if (registration === undefined) {
        // We timed out or otherwise failed.
        throw new Error("ServiceWorker registration failed");
      }
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      let response = await fetch("serviceworker-read");
      return await response.text();
    }
result, same first party:
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (key) => {
      if (!navigator.serviceWorker) {
        throw new Error("Unsupported");
      }
      let registration = await navigator.serviceWorker.register(
        'serviceWorker.js');
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      await fetch(`serviceworker-write?secret=${key}`);
    }
read: async () => {
      console.log("trying to register the serviceworker now...");
      const registration = await Promise.race([
        navigator.serviceWorker.register('serviceWorker.js'),
        sleepMs(500)
      ]);
      if (registration === undefined) {
        // We timed out or otherwise failed.
        throw new Error("ServiceWorker registration failed");
      }
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      let response = await fetch("serviceworker-read");
      return await response.text();
    }
result, same first party:
Error: can't access property "register",
navigator.serviceWorker is undefined,
Error: can't access property "register",
navigator.serviceWorker is undefined,
Error: can't access property "register",
navigator.serviceWorker is undefined,
Error: can't access property "register",
navigator.serviceWorker is undefined
result, different first party:
Error: can't access property "register",
navigator.serviceWorker is undefined,
Error: can't access property "register",
navigator.serviceWorker is undefined,
Error: can't access property "register",
navigator.serviceWorker is undefined,
Error: can't access property "register",
navigator.serviceWorker is undefined
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Passed
write: async (key) => {
      if (!navigator.serviceWorker) {
        throw new Error("Unsupported");
      }
      let registration = await navigator.serviceWorker.register(
        'serviceWorker.js');
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      await fetch(`serviceworker-write?secret=${key}`);
    }
read: async () => {
      console.log("trying to register the serviceworker now...");
      const registration = await Promise.race([
        navigator.serviceWorker.register('serviceWorker.js'),
        sleepMs(500)
      ]);
      if (registration === undefined) {
        // We timed out or otherwise failed.
        throw new Error("ServiceWorker registration failed");
      }
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      let response = await fetch("serviceworker-read");
      return await response.text();
    }
result, same first party:
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (!navigator.serviceWorker) {
        throw new Error("Unsupported");
      }
      let registration = await navigator.serviceWorker.register(
        'serviceWorker.js');
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      await fetch(`serviceworker-write?secret=${key}`);
    }
read: async () => {
      console.log("trying to register the serviceworker now...");
      const registration = await Promise.race([
        navigator.serviceWorker.register('serviceWorker.js'),
        sleepMs(500)
      ]);
      if (registration === undefined) {
        // We timed out or otherwise failed.
        throw new Error("ServiceWorker registration failed");
      }
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      let response = await fetch("serviceworker-read");
      return await response.text();
    }
result, same first party: , , ,
result, different first party: , , ,
unsupported: false, false, false, false
passed: undefined
test failed: true, true, true, true
Unsupported
write: async (key) => {
      if (!navigator.serviceWorker) {
        throw new Error("Unsupported");
      }
      let registration = await navigator.serviceWorker.register(
        'serviceWorker.js');
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      await fetch(`serviceworker-write?secret=${key}`);
    }
read: async () => {
      console.log("trying to register the serviceworker now...");
      const registration = await Promise.race([
        navigator.serviceWorker.register('serviceWorker.js'),
        sleepMs(500)
      ]);
      if (registration === undefined) {
        // We timed out or otherwise failed.
        throw new Error("ServiceWorker registration failed");
      }
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      let response = await fetch("serviceworker-read");
      return await response.text();
    }
result, same first party:
Error: navigator.serviceWorker is undefined,
Error: navigator.serviceWorker is undefined,
Error: navigator.serviceWorker is undefined,
Error: navigator.serviceWorker is undefined,
Error: navigator.serviceWorker is undefined
result, different first party:
Error: navigator.serviceWorker is undefined,
Error: navigator.serviceWorker is undefined,
Error: navigator.serviceWorker is undefined,
Error: navigator.serviceWorker is undefined,
Error: navigator.serviceWorker is undefined
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (key) => {
      if (!navigator.serviceWorker) {
        throw new Error("Unsupported");
      }
      let registration = await navigator.serviceWorker.register(
        'serviceWorker.js');
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      await fetch(`serviceworker-write?secret=${key}`);
    }
read: async () => {
      console.log("trying to register the serviceworker now...");
      const registration = await Promise.race([
        navigator.serviceWorker.register('serviceWorker.js'),
        sleepMs(500)
      ]);
      if (registration === undefined) {
        // We timed out or otherwise failed.
        throw new Error("ServiceWorker registration failed");
      }
      console.log(registration);
      await navigator.serviceWorker.ready;
      console.log("service worker ready");
      await sleepMs(100);
      let response = await fetch("serviceworker-read");
      return await response.text();
    }
result, same first party:
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
,
<html>
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx/1.18.0 (Ubuntu)</center>
</body>
</html>
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
<!-- a padding to disable MSIE and Chrome friendly error page -->
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
SharedWorker
The SharedWorker API allows scripts from multiple tabs to share a background thread of computation. If SharedWorker is not partitioned, then it can be abused to shared data between websites in your browser.
Passed
write: async (secret) => {
      try {
        let worker = new SharedWorker("supercookies_sharedworker.js");
        worker.port.start();
//        console.log("worker", worker);
        const messagePromise = new Promise((resolve) => {
          worker.port.onmessage = (e) => resolve(e.data);
        });
        worker.port.postMessage(secret);
        await messagePromise;
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let worker = new SharedWorker("supercookies_sharedworker.js");
      worker.port.start();
      const messagePromise = new Promise((resolve, reject) => {
        worker.port.onmessage = (e) => resolve(e.data);
        setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
      });
      worker.port.postMessage("request");
      const message = await messagePromise;
      if (message === "none") {
        throw new Error("Unsupported");
      }
      return message;
    }
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        let worker = new SharedWorker("supercookies_sharedworker.js");
        worker.port.start();
//        console.log("worker", worker);
        const messagePromise = new Promise((resolve) => {
          worker.port.onmessage = (e) => resolve(e.data);
        });
        worker.port.postMessage(secret);
        await messagePromise;
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let worker = new SharedWorker("supercookies_sharedworker.js");
      worker.port.start();
      const messagePromise = new Promise((resolve, reject) => {
        worker.port.onmessage = (e) => resolve(e.data);
        setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
      });
      worker.port.postMessage("request");
      const message = await messagePromise;
      if (message === "none") {
        throw new Error("Unsupported");
      }
      return message;
    }
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party:
Error: no SharedWorker message received,
Error: no SharedWorker message received,
Error: no SharedWorker message received,
Error: no SharedWorker message received,
Error: no SharedWorker message received
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        let worker = new SharedWorker("supercookies_sharedworker.js");
        worker.port.start();
//        console.log("worker", worker);
        const messagePromise = new Promise((resolve) => {
          worker.port.onmessage = (e) => resolve(e.data);
        });
        worker.port.postMessage(secret);
        await messagePromise;
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let worker = new SharedWorker("supercookies_sharedworker.js");
      worker.port.start();
      const messagePromise = new Promise((resolve, reject) => {
        worker.port.onmessage = (e) => resolve(e.data);
        setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
      });
      worker.port.postMessage("request");
      const message = await messagePromise;
      if (message === "none") {
        throw new Error("Unsupported");
      }
      return message;
    }
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        let worker = new SharedWorker("supercookies_sharedworker.js");
        worker.port.start();
//        console.log("worker", worker);
        const messagePromise = new Promise((resolve) => {
          worker.port.onmessage = (e) => resolve(e.data);
        });
        worker.port.postMessage(secret);
        await messagePromise;
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let worker = new SharedWorker("supercookies_sharedworker.js");
      worker.port.start();
      const messagePromise = new Promise((resolve, reject) => {
        worker.port.onmessage = (e) => resolve(e.data);
        setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
      });
      worker.port.postMessage("request");
      const message = await messagePromise;
      if (message === "none") {
        throw new Error("Unsupported");
      }
      return message;
    }
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        let worker = new SharedWorker("supercookies_sharedworker.js");
        worker.port.start();
//        console.log("worker", worker);
        const messagePromise = new Promise((resolve) => {
          worker.port.onmessage = (e) => resolve(e.data);
        });
        worker.port.postMessage(secret);
        await messagePromise;
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let worker = new SharedWorker("supercookies_sharedworker.js");
      worker.port.start();
      const messagePromise = new Promise((resolve, reject) => {
        worker.port.onmessage = (e) => resolve(e.data);
        setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
      });
      worker.port.postMessage("request");
      const message = await messagePromise;
      if (message === "none") {
        throw new Error("Unsupported");
      }
      return message;
    }
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (secret) => {
      try {
        let worker = new SharedWorker("supercookies_sharedworker.js");
        worker.port.start();
//        console.log("worker", worker);
        const messagePromise = new Promise((resolve) => {
          worker.port.onmessage = (e) => resolve(e.data);
        });
        worker.port.postMessage(secret);
        await messagePromise;
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let worker = new SharedWorker("supercookies_sharedworker.js");
      worker.port.start();
      const messagePromise = new Promise((resolve, reject) => {
        worker.port.onmessage = (e) => resolve(e.data);
        setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
      });
      worker.port.postMessage("request");
      const message = await messagePromise;
      if (message === "none") {
        throw new Error("Unsupported");
      }
      return message;
    }
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      try {
        let worker = new SharedWorker("supercookies_sharedworker.js");
        worker.port.start();
//        console.log("worker", worker);
        const messagePromise = new Promise((resolve) => {
          worker.port.onmessage = (e) => resolve(e.data);
        });
        worker.port.postMessage(secret);
        await messagePromise;
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let worker = new SharedWorker("supercookies_sharedworker.js");
      worker.port.start();
      const messagePromise = new Promise((resolve, reject) => {
        worker.port.onmessage = (e) => resolve(e.data);
        setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
      });
      worker.port.postMessage("request");
      const message = await messagePromise;
      if (message === "none") {
        throw new Error("Unsupported");
      }
      return message;
    }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Passed
write: async (secret) => {
      try {
        let worker = new SharedWorker("supercookies_sharedworker.js");
        worker.port.start();
//        console.log("worker", worker);
        const messagePromise = new Promise((resolve) => {
          worker.port.onmessage = (e) => resolve(e.data);
        });
        worker.port.postMessage(secret);
        await messagePromise;
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let worker = new SharedWorker("supercookies_sharedworker.js");
      worker.port.start();
      const messagePromise = new Promise((resolve, reject) => {
        worker.port.onmessage = (e) => resolve(e.data);
        setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
      });
      worker.port.postMessage("request");
      const message = await messagePromise;
      if (message === "none") {
        throw new Error("Unsupported");
      }
      return message;
    }
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party:
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        let worker = new SharedWorker("supercookies_sharedworker.js");
        worker.port.start();
//        console.log("worker", worker);
        const messagePromise = new Promise((resolve) => {
          worker.port.onmessage = (e) => resolve(e.data);
        });
        worker.port.postMessage(secret);
        await messagePromise;
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let worker = new SharedWorker("supercookies_sharedworker.js");
      worker.port.start();
      const messagePromise = new Promise((resolve, reject) => {
        worker.port.onmessage = (e) => resolve(e.data);
        setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
      });
      worker.port.postMessage("request");
      const message = await messagePromise;
      if (message === "none") {
        throw new Error("Unsupported");
      }
      return message;
    }
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
TLS Session ID
The TLS protocol is used by HTTPS to make connections secure. If the browser were to re-use a TLS session, then the session ID could be used to track users across websites.
Passed
write: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
read: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
result, same first party:
4491d8bd148d49a82bbf8b5986eee3ae6bb0d3b17f02a7025be23bbd769b3b77,
6c1a59972d9c7bfb85554fedc86e4cae55a7f2993c6c6658b11714bac10b4c3f,
865c59f8d2deec216dce1f76671efc39161c5ce4ed9661b5c7f2fddd473f74e1,
37060736d5d5853fb59aea1e3e97517451d2d96be3ac31ba0a97c8a95f31f0aa,
38934f92db1e5750accad83f7dd27a65492cc5d5a0df117d2b41c4acdd459f74
result, different first party:
38aa49a1b86b87952d9bc314969f557d4737d0fbc19f09752993a280ff6eed68,
da359e0336501237cf79281cef0abfbc4abb862a8a422b41d3acf15657bac3d7,
35a5d2b8f112a386f43490023d17e61906c98fa30252a57909abc1a401258adf,
fba0036c04dbb1d7d7a92053603f1511b23e6f550993560c068d72ae0f045576,
b435f2c87914b2ebe73905b7e416949c8f143976d80d39afe68fcceeb1920211
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
read: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
result, same first party:
9072e9b165eeaf98cbbea0b04f137e2a66052e6276d80822a1d6bd93648076ba,
7699f351ba411f064f0ea58a1b909e22ffad5f4b29371d5e68b52018b86b8c46,
22f6a51926d2e6908e2a9d380b47bebb0a2c91d7be344d2cdb79f3867d1024ba,
4566f2be3f4201a327bd87ac0779eeb040da98876d5a3acc5b8550ae9d4cbc53,
cb6e7bcfdc78f9a341026099a764581705b2a4f90415fa1e51f0d67b61f9044b
result, different first party:
7d4a3a6006a1ee667fcd15820ba13ce52c214033303d7090628c3639f071843f,
275802a59a4fadda03b02e1fd7dce1e6a037c4a72a58346c5c04993ba140f614,
4414ba607490d27beef9f627e2a50928d0e0fad74433dd26b5f335c30fe6aa2b,
edbe12953fca5fc4c6498f58f57fe47bcba6139723f8269fc0bea44143227323,
94689134878f27dac5cc2bcd2244049cf4527c7e6a4d4e72e6b944243efd9a01
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
read: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
result, same first party:
f7cc99b15a506eb9e8f45d06bbd87569ebe55d5793cb7a8599e417a60299ab9d,
2e0483d2e6fa9d978ffa93053d73d80fb87aaed99e2a1a21aafdbd84facf3575,
42386226d7a3125f88eb5a6d45a672d72078e193e3f0d2e6b59c558b0f330bf0,
c1f248e6f5fba7fd594a1a548e7853b4fc0893171f16bf4f9846bab7135eb168,
38ffd31602bcb2ed11403ca453f3d96b92b47e3e961c272059902792620e004d
result, different first party:
264e08ba6effccf79354fccc73d4309abdfbb505c110928c89a4b32302098043,
3167c9c816c12950bf8c011376bdb800db7fc9b2fd11fce836be051065adbb34,
23c0568b486d7400331d335a8949f55e6909f2f2b114a048c1978ddde2d9b08f,
cfd25e7e8427ad0ad6d57617d9be019774aaed72f3e3d2a12b2d42be7a260710,
7b1675de624e72e97abf5f94d9511d386672e67bb2424351c59564ec018ffefa
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
read: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
result, same first party:
9dbe825c4683568327de84f44cea8f3dd3241688982f14132a36e35849e20d86,
46934c4c52edcdc210ff6e314c8dbf2f4b4abf4a5b71b9e47000282052ab58d7,
3297f90e9a2794169d028499c69b3b82321ad69a0dfa1d39f641858595f00b7c,
2f53da6c76d6f07af0e357db8dc6b107c954ea80776521c8981389a7a1193b48,
af54ffe95a6af61d774be9dc6a8f402c3afa691ac249ce6355c68a6ac981ecc9
result, different first party:
0c4f1409c92cdc98d1b0ab62149c9c373d480ece08bfda9b16453886067c5f70,
54107bc43841cb79d88341dc0fe3bbf37d968284f18b4f769f9f761b02dc9173,
8ddf1e86858f03c26c51878f084dc8112ba66395925c1eea2197cc0bf868ec46,
5aac7d983fd9ba603df5e1fcd30eb2144d6b2c46cd0e0764caefe0424d7a5302,
dad3f3006caadc92a6ace6cbd4b4102534c4447c01b99aa5afa4cdf7ef2035ed
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
read: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
result, same first party:
211a8b01c74f0a0f26290d301aca35a3f2c0b309fe738ad62f19875b6cd26ac5,
5ae5cf7048d3ce94423a21f3c2a1b1f6089c51a7acb38de1cd14a0c1146331f0,
06db04d22543d51b4a4181ccea93090c3b2bac152d06cbff012bba09c503a957,
e0aaa63e4f67617a1b1992fc34a22cb7f05f07dbd4ffdac2d68053d6969a9e5e
result, different first party:
63dcfc70b898e2ad3e3b857c6053fbe88c0c3a67cd5e0f3dc3c5490368788d55,
049c7fce5c8c8a3c509998848785d215d98d95bd248241f9206578bfb428b0a9,
138fbe3031dc81316775b2a6166edfdf4508b49d8b444a905b647c54365454a1,
16fd7e38468754b71d967a035a8178cca0289b7fc7dcabd3879b7f9bb7ceede3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
read: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
result, same first party:
671807223bcf5eadb404516171f786c33545d020129b10c5d87999c5fc1ab20a,
ca2c5c8893997ae11d1308b2dd5ddca88e28ac9836ec3f26a1c45ead8a9abeb9,
bec02919145b377aecfab6bd95190d70cb038b382eda47af1d6f72a93c751426,
7f3a2f4c8a11c28dd5728938c1b859b36f06bcdfa54a2c41cadc10cc07a52003,
7de96f839ebc6990eaf08a8d1b6f1e748f6324e3c74e4048550a2421311d7d56
result, different first party:
8d5ac1cde0173426b0860e001d4569e1831e42ed66bafe36d9fd2fd6799318cf,
8704c89e9a76d2fc24a3fbfd9af597edc0fadc2ab0cf94f6ea96599c7d34593b,
c08bf4749b703eeddc9730581b8aa2b2f91c2b4c16a839825fb4fc319a1c9dc9,
47128871a29475cbbad17583bc18198d7fbd177d2b2f80410b696d07bf852f45,
bddf9622160281d5dcf82a9b6eaba0c7b3bb1e40465085f35163de236cd2eabf
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
read: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
result, same first party:
b462e1c6bbbd96779a9f5ddd7dbd296c0c76b5f5221fc357ee447487bbe20c34,
147438e11004abcd40edccaf9ccc27951344843c4aae047dc3b0f5b6c9361ea7,
6e34200dc906332de79d5e14ffc7a60748a1492e9cf223880086874b1a178dc1,
6781057fd75bea8299b3e4d36ccc829052bbe6d35783d78b63f5b8aef7ac153b
result, different first party:
44819130cee74278f7abaeebe1461d89574f9976a02bd7f6b94449ea343de176,
69965e5bda4849bd51e774e295041ea1be7d8fd254cfe1126a095d44a70c7417,
900a1c9f562d9d1d4fb2d52ff831ef1b0f46946e4e9be0937b6b81128fef819f,
8dc71823200535a594c82f06e26d4de5f8afcfb07139c9faecf48a20ba4bc8a0
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
read: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
result, same first party:
daf70fc57fa08f16353cc44aa26c04edf5a8e152a474913b494bac3b1b74aac3,
68c199027a7cc2830a1cb1c36e310af06bafe420c0a12ec55bb1cc78787a826a,
a58d9587ecb9b4b5fd444fe2818e50cb551348e7d6c64208940141f9c389641e,
adc3ba4fd95c11fb38342687da40246faa4de868f565e1bc73022e9f244e6cac,
529da2a87d10d46f960adb51de93646e31d74682b6e314420fbbf50d64c3a7a7
result, different first party:
42f201ffe647c4e3e7fc97b8587cd5c15e86835dd2c81d57d6c11729fcf44182,
15ffcec16d5a6b900398164f98d5eb6f668e7642f255f872a9c9dc396ccc409b,
3bab25fc5b2c0b184da58e75c4a546137e1ffae1c12e16f2301e41a08acd77c3,
034e29ebb89d0f9b335b7373e14370a0543d44ad26156380c8d95af2d80e2dc6,
059df64d34ff829a58f631f75d6f77143c5cf118fe344bb91fdc6b1d49a09017
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
read: async () => {
      let results = await fetch("https://tls.privacytests2.org:8900/");
      return (await results.json()).sessionId;
    }
result, same first party:
3365d3deed98f798cbfad3dc446348ae84d2ea3b52e79a19a3ca19b9763de6f1,
8d7f64dea138d85ee16b250b3cdddbfe208f8fde07acc68a4e918b35e7b01273,
8d62527154e2cca283a31e8a622d1cb6a369400a17ea357f354c1d6967caa7e6,
357a802ab6dec39eac551f3f24588e0f0760b099eab07c099e6cd89ccb9b7245,
d39cacc4d41e1c032cd94fc8f961c3bbfdb9b93324d5ee252c819737a2ec0ff7
result, different first party:
8476a70ad0b12abbfb386374de75627d197cb94e1e38f6831e22bfc26736b8fc,
a8ba3d36db536a71eb496ec467afd4282fc772f3fd5d897e7b0a34790c145bcf,
be3c0e67a0360e7b4ffce2c5b8d4da674e13e84297b455681f4610ae9ecf1217,
ce6ea5ae52a6e8cd44d64172ac7d96f341cf575afabac91e66572867f24253a6,
2d2ecf5e64dd1ddba906c2a64ae7ff5f5af854b586b3c408db1268470ea63eec
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
XMLHttpRequest cache
Similar to the newer Fetch API, any resource received may be cached by the browser. The cache is potentially vulnerable to cross-site tracking attack.
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1
result, different first party: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 2, 2, 2, 2
result, different first party: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Navigation testsWhich browsers prevent websites from sharing tracking data when you click on a link?
When you click a hyperlink to navigate your browser from one site to another, certain browser APIs allow the first site to communicate to the second site. These privacy vulnerabilities can be fixed by introducing new limits on how much data is transfered between sites.',
document.referrer
The Referer [sic] request header is a mechanism used by browsers to let a website know where the user is visiting from. This header is inherently tracking users across websites. In recent times, browsers have switched to a policy of trimming a referrer to convey less tracking information, but Referer continues to convey cross-site tracking data by default.
Failed
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
result, different first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
result, different first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
result, different first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
result, different first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
result, different first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
unsupported: false, false, false, false
passed: false, false, false, false
test failed: false, false, false, false
Failed
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
result, different first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Failed
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
result, different first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
result, different first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
sessionStorage
The sessionStorage API is similar to the localStorage API, but it does not persist across tabs or across browser sessions. Nonetheless, it can be used to track users if they navigate from one website to another. This tracking can be thwarted by partitioning sessionStorage between websites.
Passed
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
9a557dff-ccf4-4993-b9f7-b2d1055d8461,
4823b503-1134-4495-9521-589c3cadb53e,
7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party:
417197c0-7b6c-4460-95e1-7d87a88fd9a4,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
957c3d9b-94a2-437e-90a4-dcd34e6ec526,
f45c459c-5f59-4574-babc-86efafb20e14,
bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party:
f002d203-bad5-464e-a749-bde11b88f6e2,
e55181f7-2aca-4c30-9a92-3491983f9617,
f566ba5d-ee36-4b64-a42d-b5747f068895,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party:
26b78d4f-805a-4e0d-91aa-8204bb2772bc,
57b852fb-1d89-4246-bdfa-0358c6522fc0,
48bc70ec-6769-476a-ad77-a340f70557f8,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
c256577c-3fb1-4313-9d33-63732756dd86,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party:
6235624d-f5d4-492a-97c2-4f553c093a94,
d278d65a-73bf-45d1-a6a1-883a31a6e059,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
8a221de0-7361-4126-a282-ce8d09ee7e8a,
415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party:
37d4c549-1aec-4356-911f-711e5a47a7e6,
26c885e1-7310-4a66-bba8-5408fbc4f46b,
987682f5-aaa8-49ce-a1b3-9648c3d47a14,
dab5796b-80d4-4026-90fc-b5bdf36016e2
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
70c04d6e-f9a9-40c0-befa-e612e1ad2491,
0b1f9b17-e805-4333-92c1-36ffc60a5556,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party:
24619319-19ed-4def-851e-bea12959a8b1,
b0c78218-66b9-43ca-af33-770f378ec58d,
5abdef5b-b566-4486-ae6e-21ac177da9ae,
89191af8-baf2-41e8-9b20-e09608b0e822,
d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
window.name
The window.name API allows websites to store data that will persist after the user has navigated the tab to a different website. This mechanism could be partitioned so that data is not allowed to persist between websites.
Passed
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party:
name_7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a,
name_edf66da1-2a57-4a6d-a5e7-ce5aabfa925c,
name_9a557dff-ccf4-4993-b9f7-b2d1055d8461,
name_4823b503-1134-4495-9521-589c3cadb53e,
name_7b8dca09-76bf-49f2-afcb-a91cdd692309
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party:
name_417197c0-7b6c-4460-95e1-7d87a88fd9a4,
name_fce7f615-e817-4eb2-92ae-a5c39cf23a4e,
name_957c3d9b-94a2-437e-90a4-dcd34e6ec526,
name_f45c459c-5f59-4574-babc-86efafb20e14,
name_bc1001e5-71e4-4ed9-95b4-82b89d54faae
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party:
name_f002d203-bad5-464e-a749-bde11b88f6e2,
name_e55181f7-2aca-4c30-9a92-3491983f9617,
name_f566ba5d-ee36-4b64-a42d-b5747f068895,
name_3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
name_203a504b-96ce-449e-a71f-f5d63594e59a
result, different first party:
name_f002d203-bad5-464e-a749-bde11b88f6e2,
name_e55181f7-2aca-4c30-9a92-3491983f9617,
name_f566ba5d-ee36-4b64-a42d-b5747f068895,
name_3cd095d6-77ce-4875-bbda-bb6dc025e3b7,
name_203a504b-96ce-449e-a71f-f5d63594e59a
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party:
name_26b78d4f-805a-4e0d-91aa-8204bb2772bc,
name_57b852fb-1d89-4246-bdfa-0358c6522fc0,
name_48bc70ec-6769-476a-ad77-a340f70557f8,
name_f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
name_62807c4d-1588-4f45-9ad3-aaafe56a0497
result, different first party:
name_26b78d4f-805a-4e0d-91aa-8204bb2772bc,
name_57b852fb-1d89-4246-bdfa-0358c6522fc0,
name_48bc70ec-6769-476a-ad77-a340f70557f8,
name_f5f7d0a9-b3b9-48ba-8014-e6021a6df504,
name_62807c4d-1588-4f45-9ad3-aaafe56a0497
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party:
name_c48c8f03-e5ed-4afc-9eda-e14fdbef73b3,
name_c256577c-3fb1-4313-9d33-63732756dd86,
name_656c1ba2-1c08-4ebb-9574-cf86ec8f280c,
name_f3e02565-bdae-49e3-a7db-063f329a1fbe
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Failed
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party:
name_6235624d-f5d4-492a-97c2-4f553c093a94,
name_d278d65a-73bf-45d1-a6a1-883a31a6e059,
name_d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
name_8a221de0-7361-4126-a282-ce8d09ee7e8a,
name_415283d0-dc14-4738-acf2-94d3bc317cce
result, different first party:
name_6235624d-f5d4-492a-97c2-4f553c093a94,
name_d278d65a-73bf-45d1-a6a1-883a31a6e059,
name_d9f20191-ac2a-4e06-aa5a-394bf2a376e4,
name_8a221de0-7361-4126-a282-ce8d09ee7e8a,
name_415283d0-dc14-4738-acf2-94d3bc317cce
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party:
name_37d4c549-1aec-4356-911f-711e5a47a7e6,
name_26c885e1-7310-4a66-bba8-5408fbc4f46b,
name_987682f5-aaa8-49ce-a1b3-9648c3d47a14,
name_dab5796b-80d4-4026-90fc-b5bdf36016e2
result, different first party: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party:
name_f0541ba1-93f1-4879-bc7e-5e4c53f0147f,
name_70c04d6e-f9a9-40c0-befa-e612e1ad2491,
name_0b1f9b17-e805-4333-92c1-36ffc60a5556,
name_ef9a2d5a-e563-4400-9e6a-1aa349dee04b,
name_7498691f-abaf-4bb9-b2ce-5daf69605ca7
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party:
name_24619319-19ed-4def-851e-bea12959a8b1,
name_b0c78218-66b9-43ca-af33-770f378ec58d,
name_5abdef5b-b566-4486-ae6e-21ac177da9ae,
name_89191af8-baf2-41e8-9b20-e09608b0e822,
name_d1d5c108-4cd2-4362-9b18-764d78b3371b
result, different first party:
name_24619319-19ed-4def-851e-bea12959a8b1,
name_b0c78218-66b9-43ca-af33-770f378ec58d,
name_5abdef5b-b566-4486-ae6e-21ac177da9ae,
name_89191af8-baf2-41e8-9b20-e09608b0e822,
name_d1d5c108-4cd2-4362-9b18-764d78b3371b
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
HTTPS testsWhich browsers prevent unencrypted network connections?
HTTPS is the protocol that web browsers use to connect securely to websites. When HTTPS is being used, the connection is encrypted so that third parties on the network cannot read content being sent between the server and your browser. In the past, insecure connections were the default and websites would need to actively request that a browser use HTTPS. Now the status quo is shifting, and browser makers are moving toward a world where HTTPS is the default protocol.`
Insecure website warning

            
Passed
passed: true, true, true, true, true
result:
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded
Passed
passed: true, true, true, true, true
result:
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded
Passed
passed: true, true, true, true, true
result:
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded
Passed
passed: true, true, true, true, true
result:
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded
Failed
passed: false, false, false, false
result:
Insecure website loaded,
Insecure website loaded,
Insecure website loaded,
Insecure website loaded
Passed
passed: true, true, true, true, true
result:
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded
Failed
passed: false, false, false, false
result:
Insecure website loaded,
Insecure website loaded,
Insecure website loaded,
Insecure website loaded
Passed
passed: true, true, true, true, true
result:
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded
Passed
passed: true, true, true, true, true
result:
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded,
Insecure website never loaded
Upgradable address
Checks to see if an insecure address entered into the browser's address bar is upgraded to HTTPS whenever possible.
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true
passed: true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true
passed: true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Upgradable hyperlink
Checks to see if the user has clicked on a hyperlink to an insecure address, if the browser upgrades that address to HTTPS whenever possible.
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true
passed: true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true
passed: true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Passed
upgraded: true, true, true, true, true
passed: true, true, true, true, true
Upgradable image
Checks to see if the browser attempts to upgrade an insecure address for an image to HTTPS whenever possible.
Passed
passed: true, true, true, true, true
result: upgraded, upgraded, upgraded, upgraded, upgraded
Passed
passed: true, true, true, true, true
result: upgraded, upgraded, upgraded, upgraded, upgraded
Passed
passed: true, true, true, true, true
result: upgraded, upgraded, upgraded, upgraded, upgraded
Passed
passed: true, true, true, true, true
result: upgraded, upgraded, upgraded, upgraded, upgraded
Passed
passed: true, true, true, true
result: upgraded, upgraded, upgraded, upgraded
Passed
passed: true, true, true, true, true
result: upgraded, upgraded, upgraded, upgraded, upgraded
Passed
passed: true, true, true, true
result: upgraded, upgraded, upgraded, upgraded
Passed
passed: true, true, true, true, true
result: upgraded, upgraded, upgraded, upgraded, upgraded
Passed
passed: true, true, true, true, true
result: upgraded, upgraded, upgraded, upgraded, upgraded
Upgradable script
Checks to see if the browser attempts to upgrade an insecure address for an script to HTTPS whenever possible.
Passed
passed: true, true, true, true, true
result: blocked, blocked, blocked, blocked, blocked
Passed
passed: true, true, true, true, true
result: blocked, blocked, blocked, blocked, blocked
Passed
passed: true, true, true, true, true
result: blocked, blocked, blocked, blocked, blocked
Passed
passed: true, true, true, true, true
result: blocked, blocked, blocked, blocked, blocked
Passed
passed: true, true, true, true
result: blocked, blocked, blocked, blocked
Passed
passed: true, true, true, true, true
result: blocked, blocked, blocked, blocked, blocked
Passed
passed: true, true, true, true
result: blocked, blocked, blocked, blocked
Passed
passed: true, true, true, true, true
result: upgraded, upgraded, upgraded, upgraded, upgraded
Passed
passed: true, true, true, true, true
result: blocked, blocked, blocked, blocked, blocked
Misc testsWhich browsers provide additional assorted privacy protections?
This category includes tests for the presence of miscellaneous privacy features
ECH enabled
Encrypted Client Hello (ECH) is a new protocol that hides the website you are visiting from third-party network eavesdroppers.
Passed
SNI_status: encrypted
passed: true, true, true, true, true
Failed
SNI_status: plaintext
passed: false, false, false, false, false
Failed
SNI_status: encrypted
passed: true, true, false, true, true
Failed
SNI_status: plaintext
passed: false, true, true, true, true
Failed
SNI_status: encrypted
passed: true, false, true, true
Failed
SNI_status: encrypted
passed: true, true, true, false, true
Failed
SNI_status: plaintext
passed: false, false, false, false
Failed
SNI_status: plaintext
passed: false, false, false, false, false
Failed
SNI_status: plaintext
passed: false, true, true, false, true
GPC enabled first-party
The Global Privacy Control is an HTTP header that can be sent by a browser to instruct a website not to sell the user's personal data to third parties. This test checks to see if the GPC header is sent by default to the top-level website.
Passed
header value: 1
passed: true, true, true, true, true
Passed
header value: 1
passed: true, true, true, true, true
Failed
header value: undefined
passed: false, false, false, false, false
Failed
header value: undefined
passed: false, false, false, false, false
Passed
header value: 1
passed: true, true, true, true
Failed
header value: undefined
passed: false, false, false, false, false
Failed
header value: undefined
passed: false, false, false, false
Passed
header value: 1
passed: true, true, true, true, true
Failed
header value: undefined
passed: false, false, false, false, false
GPC enabled third-party
The Global Privacy Control is an HTTP header that can be sent by a browser to instruct a visited website not to sell the user's personal data to other parties. This test checks to see if the GPC header is sent to third-party elements on the web page.
Passed
sec-gpc: 1
passed: true, true, true, true, true
Passed
sec-gpc: 1
passed: true, true, true, true, true
Failed
passed: false, false, false, false, false
Failed
passed: false, false, false, false, false
Passed
sec-gpc: 1
passed: true, true, true, true
Failed
passed: false, false, false, false, false
Failed
passed: false, false, false, false
Passed
sec-gpc: 1
passed: true, true, true, true, true
Failed
passed: false, false, false, false, false
IP address leak
IP addresses can be used to uniquely identify a large percentage of users. A proxy, VPN, or Tor can mask a user's IP address.
Failed
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
passed: false, false, false, false, false
Failed
passed: false, false, false, false, false
Failed
passed: false, false, false, false
Failed
passed: false, false, false, false, false
Failed
passed: false, false, false, false
Passed
passed: true, true, true, true, true
Failed
passed: false, false, false, false, false
Stream isolation
Browsers that use Tor can use a different Tor circuit per top-level website.
Unsupported
write: () => {
      if (!usingTor) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (usingTor) {
        return ipAddress;
      } else {
        throw new Error("Unsupported");
      }
    }
unsupported: true, true, true, true, true
readSameFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
readDifferentFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
testFailed: false, false, false, false, false
Passed
write: () => {
      if (!usingTor) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (usingTor) {
        return ipAddress;
      } else {
        throw new Error("Unsupported");
      }
    }
unsupported: false, false, false, false, false
readSameFirstParty:
185.246.188.74,
185.220.101.25,
185.129.61.6,
185.220.101.12,
185.220.100.243
readDifferentFirstParty:
192.42.116.184,
185.220.101.0,
185.220.101.18,
45.138.16.70,
185.220.101.14
passed: true, true, true, true, true
testFailed: false, false, false, false, false
Unsupported
write: () => {
      if (!usingTor) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (usingTor) {
        return ipAddress;
      } else {
        throw new Error("Unsupported");
      }
    }
unsupported: true, true, true, true, true
readSameFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
readDifferentFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
testFailed: false, false, false, false, false
Unsupported
write: () => {
      if (!usingTor) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (usingTor) {
        return ipAddress;
      } else {
        throw new Error("Unsupported");
      }
    }
unsupported: true, true, true, true, true
readSameFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
readDifferentFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
testFailed: false, false, false, false, false
Unsupported
write: () => {
      if (!usingTor) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (usingTor) {
        return ipAddress;
      } else {
        throw new Error("Unsupported");
      }
    }
unsupported: true, true, true, true
readSameFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
readDifferentFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
testFailed: false, false, false, false
Unsupported
write: () => {
      if (!usingTor) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (usingTor) {
        return ipAddress;
      } else {
        throw new Error("Unsupported");
      }
    }
unsupported: true, true, true, true, true
readSameFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
readDifferentFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
testFailed: false, false, false, false, false
Unsupported
write: () => {
      if (!usingTor) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (usingTor) {
        return ipAddress;
      } else {
        throw new Error("Unsupported");
      }
    }
unsupported: true, true, true, true
readSameFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
readDifferentFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
testFailed: false, false, false, false
Passed
write: () => {
      if (!usingTor) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (usingTor) {
        return ipAddress;
      } else {
        throw new Error("Unsupported");
      }
    }
unsupported: false, false, false, false, false
readSameFirstParty:
45.128.133.242,
2407:3640:2207:8882::1,
2a0b:f4c0:16c:16::1,
2001:620:20d0::24,
2001:67c:6ec:203:192:42:116:174
readDifferentFirstParty:
2a03:e600:100::4,
2a0d:bbc7:0:1::3cc,
23.154.177.30,
185.107.57.66,
2a12:a800:1:1:2:58:56:35
passed: true, true, true, true, true
testFailed: false, false, false, false, false
Unsupported
write: () => {
      if (!usingTor) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      if (usingTor) {
        return ipAddress;
      } else {
        throw new Error("Unsupported");
      }
    }
unsupported: true, true, true, true, true
readSameFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
readDifferentFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
testFailed: false, false, false, false, false
Tor enabled
The Tor network sends the browser's web requests through a series of relays to hide a user's IP address, thereby helping to mask their identity and location. This test checks to see if the Tor network is being used by default.
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Passed
IsTorExit: true, true, true, true, true
passed: true, true, true, true, true
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false, false
passed: false, false, false, false
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false, false
passed: false, false, false, false
Passed
IsTorExit: true, true, true, true, true
passed: true, true, true, true, true
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Fingerprinting resistance testsWhich browsers hide what's unique about your device?
Fingerprinting is a technique trackers use to uniquely identify you as you browse the web. A fingerprinting script will measure several characteristics of your browser and, combining this data, will build a fingerprint that may uniquely identify you among web users. Browsers can introduce countermeasures, such as minimizing the distinguishing information disclosed by certain web APIs so your browser is harder to pick out from the crowd (so-called 'fingerprinting resistance').`,
Media query screen height
Height of the user's screen in pixels.
Passed
expression: undefined
desired expression: undefined
actual value: 1293,1290,1289,1294,1288
desired value: undefined
passed: true,true,true,true,true
Passed
expression: undefined
desired expression: undefined
actual value: 1293,1292,1293,1291,1293
desired value: undefined
passed: true,true,true,true,true
Failed
expression: undefined
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
Failed
expression: undefined
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
Failed
expression: undefined
desired expression: undefined
actual value: 1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false
Failed
expression: undefined
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
Passed
expression: undefined
desired expression: undefined
actual value: 860,860,860,860
desired value: undefined
passed: true,true,true,true
Passed
expression: undefined
desired expression: undefined
actual value: 900,900,900,900,900
desired value: undefined
passed: true,true,true,true,true
Failed
expression: undefined
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
Media query screen width
Width of the user's screen in pixels.
Passed
expression: undefined
desired expression: undefined
actual value: 1155,1160,1156,1160,1157
desired value: undefined
passed: true,true,true,true,true
Passed
expression: undefined
desired expression: undefined
actual value: 1158,1158,1156,1158,1155
desired value: undefined
passed: true,true,true,true,true
Failed
expression: undefined
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
Failed
expression: undefined
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
Failed
expression: undefined
desired expression: undefined
actual value: 2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false
Failed
expression: undefined
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
Passed
expression: undefined
desired expression: undefined
actual value: 1083,1083,1083,1083
desired value: undefined
passed: true,true,true,true
Passed
expression: undefined
desired expression: undefined
actual value: 1400,1400,1400,1400,1400
desired value: undefined
passed: true,true,true,true,true
Failed
expression: undefined
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
outerHeight
Height of the browser window in pixels, including browser chrome.
Passed
expression: outerHeight
desired expression: undefined
actual value: 1293,1290,1289,1294,1288
desired value: undefined
passed: true,true,true,true,true
Passed
expression: outerHeight
desired expression: undefined
actual value: 1293,1292,1293,1291,1293
desired value: undefined
passed: true,true,true,true,true
Failed
expression: outerHeight
desired expression: undefined
actual value: 1371,1371,1371,1371,1371
desired value: undefined
passed: false,false,false,false,false
Failed
expression: outerHeight
desired expression: undefined
actual value: 1371,1371,1371,1371,1371
desired value: undefined
passed: false,false,false,false,false
Failed
expression: outerHeight
desired expression: undefined
actual value: 1040,1040,1040,1040
desired value: undefined
passed: false,false,false,false
Failed
expression: outerHeight
desired expression: undefined
actual value: 1061,1061,1061,1061,1061
desired value: undefined
passed: false,false,false,false,false
Passed
expression: outerHeight
desired expression: undefined
actual value: 860,860,860,860
desired value: undefined
passed: true,true,true,true
Passed
expression: outerHeight
desired expression: undefined
actual value: 900,900,900,900,900
desired value: undefined
passed: true,true,true,true,true
Failed
expression: outerHeight
desired expression: undefined
actual value: 1371,1371,1371,1371,1371
desired value: undefined
passed: false,false,false,false,false
screen.height
Height of the user's screen, in pixels.
Failed
expression: screen.height
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screen.height
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screen.height
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screen.height
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screen.height
desired expression: undefined
actual value: 1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false
Failed
expression: screen.height
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
Passed
expression: screen.height
desired expression: undefined
actual value: 860,860,860,860
desired value: undefined
passed: true,true,true,true
Passed
expression: screen.height
desired expression: undefined
actual value: 900,900,900,900,900
desired value: undefined
passed: true,true,true,true,true
Failed
expression: screen.height
desired expression: undefined
actual value: 1440,1440,1440,1440,1440
desired value: undefined
passed: false,false,false,false,false
screen.width
Width of the user's screen, in pixels.
Failed
expression: screen.width
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screen.width
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screen.width
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screen.width
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screen.width
desired expression: undefined
actual value: 2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false
Failed
expression: screen.width
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
Passed
expression: screen.width
desired expression: undefined
actual value: 1083,1083,1083,1083
desired value: undefined
passed: true,true,true,true
Passed
expression: screen.width
desired expression: undefined
actual value: 1400,1400,1400,1400,1400
desired value: undefined
passed: true,true,true,true,true
Failed
expression: screen.width
desired expression: undefined
actual value: 2560,2560,2560,2560,2560
desired value: undefined
passed: false,false,false,false,false
screenX
Position, in pixels, of the left edge of the browser window on screen.
Passed
expression: screenX
desired expression: undefined
actual value: 4,5,3,7,1
desired value: undefined
passed: true,true,true,true,true
Passed
expression: screenX
desired expression: undefined
actual value: 6,2,4,4,5
desired value: undefined
passed: true,true,true,true,true
Failed
expression: screenX
desired expression: undefined
actual value: 22,22,22,22,22
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screenX
desired expression: undefined
actual value: 22,22,22,22,22
desired value: undefined
passed: false,false,false,false,false
Passed
expression: screenX
desired expression: undefined
actual value: 4,4,4,4
desired value: undefined
passed: true,true,true,true
Failed
expression: screenX
desired expression: undefined
actual value: 320,320,320,320,320
desired value: undefined
passed: false,false,false,false,false
Passed
expression: screenX
desired expression: undefined
actual value: 0,0,0,0
desired value: undefined
passed: true,true,true,true
Passed
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
Failed
expression: screenX
desired expression: undefined
actual value: 22,22,22,22,22
desired value: undefined
passed: false,false,false,false,false
screenY
Position, in pixels, of the top edge of the browser window on screen.
Passed
expression: screenY
desired expression: undefined
actual value: 8,4,7,1,8
desired value: undefined
passed: true,true,true,true,true
Passed
expression: screenY
desired expression: undefined
actual value: 4,5,5,3,0
desired value: undefined
passed: true,true,true,true,true
Failed
expression: screenY
desired expression: undefined
actual value: 47,47,47,47,47
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screenY
desired expression: undefined
actual value: 47,47,47,47,47
desired value: undefined
passed: false,false,false,false,false
Failed
expression: screenY
desired expression: undefined
actual value: 25,25,25,25
desired value: undefined
passed: false,false,false,false
Failed
expression: screenY
desired expression: undefined
actual value: 202,202,202,202,202
desired value: undefined
passed: false,false,false,false,false
Passed
expression: screenY
desired expression: undefined
actual value: 0,0,0,0
desired value: undefined
passed: true,true,true,true
Passed
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
Failed
expression: screenY
desired expression: undefined
actual value: 47,47,47,47,47
desired value: undefined
passed: false,false,false,false,false
System font detection
Web pages can detect the presence of a font installed on the user's system. The presence or absence of various fonts is commonly used to fingerprint users.
Passed
expression: undefined
desired expression: undefined
actual value: undefined
desired value: undefined
passed: true,true,true,true,true
Passed
expression: undefined
desired expression: undefined
actual value: undefined
desired value: undefined
passed: true,true,true,true,true
Failed
expression: undefined
desired expression: undefined
actual value: undefined
desired value: undefined
passed: false,false,false,false,false
Failed
expression: undefined
desired expression: undefined
actual value: undefined
desired value: undefined
passed: false,false,false,false,false
Passed
expression: undefined
desired expression: undefined
actual value: undefined
desired value: undefined
passed: true,true,true,true
Failed
expression: undefined
desired expression: undefined
actual value: undefined
desired value: undefined
passed: false,false,false,false,false
Passed
expression: undefined
desired expression: undefined
actual value: undefined
desired value: undefined
passed: true,true,true,true
Passed
expression: undefined
desired expression: undefined
actual value: undefined
desired value: undefined
passed: true,true,true,true,true
Failed
expression: undefined
desired expression: undefined
actual value: undefined
desired value: undefined
passed: false,false,false,false,false
Tracking query parameter testsWhich browsers remove URL parameters that can track you?
When you browse from one web page to another, tracking companies will frequently attach a 'tracking query parameter' to the address of the second web page. That query parameter may contain a unique identifier that tracks you individually as you browse the web. And these query parameters are frequently synchronized with cookies, making them a powerful tracking vector. Web browsers can protect you from known tracking query parameters by stripping them from web addresses before your browser sends them. (The set of tracking query parameters tested here was largely borrowed from Brave.)`
__hsfp
HubSpot tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
__hssc
HubSpot tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
__hstc
HubSpot tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
__s
Drip.com email address tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
_hsenc
HubSpot tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
_openstat
Yandex tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
dclid
DoubleClick Click ID (Google)
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
fbclid
Facebook Click Identifier
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
gclid
Google Click Identifier
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
hsCtaTracking
HubSpot tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
mc_eid
Mailchimp Email ID (email recipient's address)
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
mkt_tok
Adobe Marketo tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
ml_subscriber
MailerLite email tracking
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
ml_subscriber_hash
MailerLite email tracking
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
msclkid
Microsoft Click ID
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
oly_anon_id
Omeda marketing 'anonymous' customer id
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
oly_enc_id
Omeda marketing 'known' customer id
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
rb_clickid
Unknown high-entropy tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
s_cid
Adobe Site Catalyst tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
vero_conv
Vero tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
vero_id
Vero tracking parameter
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
wickedid
Wicked Reports e-commerce tracking
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
yclid
Yandex Click ID
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false
Failed
value: 8838641713856685
passed: false, false, false, false, false
Passed
passed: true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 8838641713856685
passed: false, false, false, false, false
Tracker content blocking testsWhich browsers block important known tracking scripts and pixels?
When you visit a web page, it frequently has third-party embedded tracking content, such as scripts and tracking pixels. These embedded components spy on you. Some browsers and browser extensions maintain list of tracking companies and block their content from being loaded. This section checks to see if a browser blocks 20 of the largest trackers listed by https://whotracks.me.`
Adobe
Tests whether the browser blocks the page from loading the tracker at https://munchkin.marketo.net/munchkin.js
Passed
url: https://munchkin.marketo.net/munchkin.js
passed: true, true, true, true, true
Passed
url: https://munchkin.marketo.net/munchkin.js
passed: true, true, true, true, true
Failed
url: https://munchkin.marketo.net/munchkin.js
passed: false, false, false, false, false
Failed
url: https://munchkin.marketo.net/munchkin.js
passed: false, false, false, false, false
Passed
url: https://munchkin.marketo.net/munchkin.js
passed: true, true, true, true
Failed
url: https://munchkin.marketo.net/munchkin.js
passed: false, false, false, false, false
Failed
url: https://munchkin.marketo.net/munchkin.js
passed: false, false, false, false
Failed
url: https://munchkin.marketo.net/munchkin.js
passed: false, false, false, false, false
Failed
url: https://munchkin.marketo.net/munchkin.js
passed: false, false, false, false, false
Adobe Audience Manager
Tests whether the browser blocks the page from loading the tracker at https://dpm.demdex.net/ibs
Passed
url: https://dpm.demdex.net/ibs
passed: true, true, true, true, true
Passed
url: https://dpm.demdex.net/ibs
passed: true, true, true, true, true
Failed
url: https://dpm.demdex.net/ibs
passed: false, false, false, false, false
Failed
url: https://dpm.demdex.net/ibs
passed: false, false, false, false, false
Passed
url: https://dpm.demdex.net/ibs
passed: true, true, true, true
Failed
url: https://dpm.demdex.net/ibs
passed: false, false, false, false, false
Failed
url: https://dpm.demdex.net/ibs
passed: false, false, false, false
Failed
url: https://dpm.demdex.net/ibs
passed: false, false, false, false, false
Failed
url: https://dpm.demdex.net/ibs
passed: false, false, false, false, false
Amazon adsystem
Tests whether the browser blocks the page from loading the tracker at https://s.amazon-adsystem.com/dcm
Passed
url: https://s.amazon-adsystem.com/dcm
passed: true, true, true, true, true
Passed
url: https://s.amazon-adsystem.com/dcm
passed: true, true, true, true, true
Failed
url: https://s.amazon-adsystem.com/dcm
passed: false, false, false, false, false
Failed
url: https://s.amazon-adsystem.com/dcm
passed: false, false, false, false, false
Passed
url: https://s.amazon-adsystem.com/dcm
passed: true, true, true, true
Failed
url: https://s.amazon-adsystem.com/dcm
passed: false, false, false, false, false
Failed
url: https://s.amazon-adsystem.com/dcm
passed: false, false, false, false
Failed
url: https://s.amazon-adsystem.com/dcm
passed: false, false, false, false, false
Failed
url: https://s.amazon-adsystem.com/dcm
passed: false, false, false, false, false
AppNexus
Tests whether the browser blocks the page from loading the tracker at https://ib.adnxs.com/px?id=178248&t=1
Passed
url: https://ib.adnxs.com/px?id=178248&t=1
passed: true, true, true, true, true
Passed
url: https://ib.adnxs.com/px?id=178248&t=1
passed: true, true, true, true, true
Failed
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false, false, false, false, false
Failed
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false, false, false, false, false
Passed
url: https://ib.adnxs.com/px?id=178248&t=1
passed: true, true, true, true
Failed
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false, false, false, false, false
Failed
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false, false, false, false
Failed
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false, false, false, false, false
Failed
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false, false, false, false, false
Bing Ads
Tests whether the browser blocks the page from loading the tracker at https://bat.bing.com/bat.js
Passed
url: https://bat.bing.com/bat.js
passed: true, true, true, true, true
Passed
url: https://bat.bing.com/bat.js
passed: true, true, true, true, true
Failed
url: https://bat.bing.com/bat.js
passed: false, false, false, false, false
Failed
url: https://bat.bing.com/bat.js
passed: false, false, false, false, false
Passed
url: https://bat.bing.com/bat.js
passed: true, true, true, true
Failed
url: https://bat.bing.com/bat.js
passed: false, false, false, false, false
Failed
url: https://bat.bing.com/bat.js
passed: false, false, false, false
Failed
url: https://bat.bing.com/bat.js
passed: false, false, false, false, false
Failed
url: https://bat.bing.com/bat.js
passed: false, false, false, false, false
Chartbeat
Tests whether the browser blocks the page from loading the tracker at https://static.chartbeat.com/js/chartbeat.js
Passed
url: https://static.chartbeat.com/js/chartbeat.js
passed: true, true, true, true, true
Passed
url: https://static.chartbeat.com/js/chartbeat.js
passed: true, true, true, true, true
Failed
url: https://static.chartbeat.com/js/chartbeat.js
passed: false, false, false, false, false
Failed
url: https://static.chartbeat.com/js/chartbeat.js
passed: false, false, false, false, false
Passed
url: https://static.chartbeat.com/js/chartbeat.js
passed: true, true, true, true
Failed
url: https://static.chartbeat.com/js/chartbeat.js
passed: false, false, false, false, false
Passed
url: https://static.chartbeat.com/js/chartbeat.js
passed: true, true, true, true
Failed
url: https://static.chartbeat.com/js/chartbeat.js
passed: false, false, false, false, false
Failed
url: https://static.chartbeat.com/js/chartbeat.js
passed: false, false, false, false, false
Criteo
Tests whether the browser blocks the page from loading the tracker at https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
Passed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: true, true, true, true, true
Passed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: true, true, true, true, true
Failed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false, false, false, false, false
Failed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false, false, false, false, false
Passed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: true, true, true, true
Failed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false, false, false, false, false
Failed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false, false, false, false
Failed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false, false, false, false, false
Failed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false, false, false, false, false
DoubleClick (Google)
Tests whether the browser blocks the page from loading the tracker at https://securepubads.g.doubleclick.net/static/glade.js
Passed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: true, true, true, true, true
Passed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: true, true, true, true, true
Failed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false, false, false, false, false
Failed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false, false, false, false, false
Passed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: true, true, true, true
Failed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false, false, false, false, false
Failed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false, false, false, false
Failed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false, false, false, false, false
Failed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false, false, false, false, false
Facebook tracking
Tests whether the browser blocks the page from loading the tracker at https://connect.facebook.net/en_US/fbevents.js
Passed
url: https://connect.facebook.net/en_US/fbevents.js
passed: true, true, true, true, true
Passed
url: https://connect.facebook.net/en_US/fbevents.js
passed: true, true, true, true, true
Failed
url: https://connect.facebook.net/en_US/fbevents.js
passed: false, false, false, false, false
Failed
url: https://connect.facebook.net/en_US/fbevents.js
passed: false, false, false, false, false
Passed
url: https://connect.facebook.net/en_US/fbevents.js
passed: true, true, true, true
Failed
url: https://connect.facebook.net/en_US/fbevents.js
passed: false, false, false, false, false
Passed
url: https://connect.facebook.net/en_US/fbevents.js
passed: true, true, true, true
Failed
url: https://connect.facebook.net/en_US/fbevents.js
passed: false, false, false, false, false
Failed
url: https://connect.facebook.net/en_US/fbevents.js
passed: false, false, false, false, false
Google (third-party ad pixel)
Tests whether the browser blocks the page from loading the tracker at https://www.google.com/pagead/1p-user-list/
Passed
url: https://www.google.com/pagead/1p-user-list/
passed: true, true, true, true, true
Passed
url: https://www.google.com/pagead/1p-user-list/
passed: true, true, true, true, true
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false, false, false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false, false, false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false, false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false, false, false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false, false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false, false, false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false, false, false
Google Analytics
Tests whether the browser blocks the page from loading the tracker at https://google-analytics.com/urchin.js
Passed
url: https://google-analytics.com/urchin.js
passed: true, true, true, true, true
Passed
url: https://google-analytics.com/urchin.js
passed: true, true, true, true, true
Failed
url: https://google-analytics.com/urchin.js
passed: false, false, false, false, false
Failed
url: https://google-analytics.com/urchin.js
passed: false, false, false, false, false
Passed
url: https://google-analytics.com/urchin.js
passed: true, true, true, true
Failed
url: https://google-analytics.com/urchin.js
passed: false, false, false, false, false
Passed
url: https://google-analytics.com/urchin.js
passed: true, true, true, true
Failed
url: https://google-analytics.com/urchin.js
passed: false, false, false, false, false
Failed
url: https://google-analytics.com/urchin.js
passed: false, false, false, false, false
Google Tag Manager
Tests whether the browser blocks the page from loading the tracker at https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
Passed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: true, true, true, true, true
Passed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: true, true, true, true, true
Failed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false, false, false, false, false
Failed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false, false, false, false, false
Failed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false, false, false, false
Failed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false, false, false, false, false
Passed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: true, true, true, true
Failed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false, false, false, false, false
Failed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false, false, false, false, false
Index Exchange
Tests whether the browser blocks the page from loading the tracker at https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
Passed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: true, true, true, true, true
Passed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: true, true, true, true, true
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false, false, false, false, false
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false, false, false, false, false
Passed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: true, true, true, true
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false, false, false, false, false
Passed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: true, true, true, true
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false, false, false, false, false
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false, false, false, false, false
New Relic
Tests whether the browser blocks the page from loading the tracker at https://js-agent.newrelic.com/nr-1212.min.js
Passed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: true, true, true, true, true
Passed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: true, true, true, true, true
Failed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false, false, false, false, false
Failed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false, false, false, false, false
Passed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: true, true, true, true
Failed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false, false, false, false, false
Failed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false, false, false, false
Failed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false, false, false, false, false
Failed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false, false, false, false, false
Quantcast
Tests whether the browser blocks the page from loading the tracker at https://pixel.quantserve.com/pixel
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true, true
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true, true
Failed
url: https://pixel.quantserve.com/pixel
passed: false, false, false, false, false
Failed
url: https://pixel.quantserve.com/pixel
passed: false, false, false, false, false
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true
Failed
url: https://pixel.quantserve.com/pixel
passed: false, false, false, false, false
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true
Failed
url: https://pixel.quantserve.com/pixel
passed: false, false, false, false, false
Failed
url: https://pixel.quantserve.com/pixel
passed: false, false, false, false, false
Scorecard Research Beacon
Tests whether the browser blocks the page from loading the tracker at https://sb.scorecardresearch.com/internal-c2/default/cs.js
Passed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: true, true, true, true, true
Passed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: true, true, true, true, true
Failed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false, false, false, false, false
Failed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false, false, false, false, false
Passed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: true, true, true, true
Failed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false, false, false, false, false
Failed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false, false, false, false
Failed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false, false, false, false, false
Failed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false, false, false, false, false
Taboola
Tests whether the browser blocks the page from loading the tracker at https://trc.taboola.com/futureplc-tomsguide/trc/3/json
Passed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: true, true, true, true, true
Passed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: true, true, true, true, true
Failed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false, false, false, false, false
Failed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false, false, false, false, false
Passed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: true, true, true, true
Failed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false, false, false, false, false
Failed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false, false, false, false
Failed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false, false, false, false, false
Failed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false, false, false, false, false
Twitter pixel
Tests whether the browser blocks the page from loading the tracker at https://t.co/i/adsct
Passed
url: https://t.co/i/adsct
passed: true, true, true, true, true
Passed
url: https://t.co/i/adsct
passed: true, true, true, true, true
Failed
url: https://t.co/i/adsct
passed: false, false, false, false, false
Failed
url: https://t.co/i/adsct
passed: false, false, false, false, false
Passed
url: https://t.co/i/adsct
passed: true, true, true, true
Failed
url: https://t.co/i/adsct
passed: false, false, false, false, false
Failed
url: https://t.co/i/adsct
passed: false, false, false, false
Failed
url: https://t.co/i/adsct
passed: false, false, false, false, false
Failed
url: https://t.co/i/adsct
passed: false, false, false, false, false
Yandex Ads
Tests whether the browser blocks the page from loading the tracker at https://yandex.ru/ads/system/header-bidding.js
Passed
url: https://yandex.ru/ads/system/header-bidding.js
passed: true, true, true, true, true
Passed
url: https://yandex.ru/ads/system/header-bidding.js
passed: true, true, true, true, true
Failed
url: https://yandex.ru/ads/system/header-bidding.js
passed: false, false, false, false, false
Failed
url: https://yandex.ru/ads/system/header-bidding.js
passed: false, false, false, false, false
Failed
url: https://yandex.ru/ads/system/header-bidding.js
passed: false, false, false, false
Failed
url: https://yandex.ru/ads/system/header-bidding.js
passed: false, false, false, false, false
Failed
url: https://yandex.ru/ads/system/header-bidding.js
passed: false, false, false, false
Failed
url: https://yandex.ru/ads/system/header-bidding.js
passed: false, false, false, false, false
Failed
url: https://yandex.ru/ads/system/header-bidding.js
passed: false, false, false, false, false
Tracking cookie protection testsWhich browsers block important known tracking cookies?
A large fraction of web pages on the web have hidden third-party trackers that read and write cookies in your browser. These cookies can be used to track your browsing across websites. This section checks to see if a browser stops cross-site tracking by cookies from 20 of the largest trackers listed by https://whotracks.me.`,
Adobe
Tests whether the browser stops cookies from munchkin.marketo.net from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://munchkin.marketo.net/munchkin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://munchkin.marketo.net/munchkin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://munchkin.marketo.net/munchkin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://munchkin.marketo.net/munchkin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://munchkin.marketo.net/munchkin.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://munchkin.marketo.net/munchkin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://munchkin.marketo.net/munchkin.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://munchkin.marketo.net/munchkin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://munchkin.marketo.net/munchkin.js
cookieFound: false, false, false, false, false
Adobe Audience Manager
Tests whether the browser stops cookies from dpm.demdex.net from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://dpm.demdex.net/ibs
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dpm.demdex.net/ibs
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dpm.demdex.net/ibs
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dpm.demdex.net/ibs
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://dpm.demdex.net/ibs
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dpm.demdex.net/ibs
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://dpm.demdex.net/ibs
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dpm.demdex.net/ibs
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dpm.demdex.net/ibs
cookieFound: false, false, false, false, false
Amazon adsystem
Tests whether the browser stops cookies from s.amazon-adsystem.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://s.amazon-adsystem.com/dcm
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://s.amazon-adsystem.com/dcm
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://s.amazon-adsystem.com/dcm
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://s.amazon-adsystem.com/dcm
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://s.amazon-adsystem.com/dcm
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://s.amazon-adsystem.com/dcm
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://s.amazon-adsystem.com/dcm
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://s.amazon-adsystem.com/dcm
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://s.amazon-adsystem.com/dcm
cookieFound: false, false, false, false, false
AppNexus
Tests whether the browser stops cookies from ib.adnxs.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: false, false, false, false, false
Bing Ads
Tests whether the browser stops cookies from bat.bing.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://bat.bing.com/bat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://bat.bing.com/bat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://bat.bing.com/bat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://bat.bing.com/bat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://bat.bing.com/bat.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://bat.bing.com/bat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://bat.bing.com/bat.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://bat.bing.com/bat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://bat.bing.com/bat.js
cookieFound: false, false, false, false, false
Chartbeat
Tests whether the browser stops cookies from static.chartbeat.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: false, false, false, false, false
Failed
passed: false, false, false, false, false
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: true, true, true, true, true
Passed
passed: true, true, true, true
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: false, false, false, false, false
Criteo
Tests whether the browser stops cookies from dis.criteo.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: false, false, false, false, false
DoubleClick (Google)
Tests whether the browser stops cookies from securepubads.g.doubleclick.net from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: false, false, false, false, false
Facebook tracking
Tests whether the browser stops cookies from connect.facebook.net from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: false, false, false, false, false
Google (third-party ad pixel)
Tests whether the browser stops cookies from www.google.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://www.google.com/pagead/1p-user-list/
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.google.com/pagead/1p-user-list/
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.google.com/pagead/1p-user-list/
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.google.com/pagead/1p-user-list/
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://www.google.com/pagead/1p-user-list/
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.google.com/pagead/1p-user-list/
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://www.google.com/pagead/1p-user-list/
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.google.com/pagead/1p-user-list/
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.google.com/pagead/1p-user-list/
cookieFound: false, false, false, false, false
Google Analytics
Tests whether the browser stops cookies from google-analytics.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://google-analytics.com/urchin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://google-analytics.com/urchin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://google-analytics.com/urchin.js
cookieFound: false, false, false, false, false
Failed
passed: false, false, false, false, false
url: https://google-analytics.com/urchin.js
cookieFound: true, true, true, true, true
Passed
passed: true, true, true, true
url: https://google-analytics.com/urchin.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://google-analytics.com/urchin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://google-analytics.com/urchin.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://google-analytics.com/urchin.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://google-analytics.com/urchin.js
cookieFound: false, false, false, false, false
Google Tag Manager
Tests whether the browser stops cookies from www.googletagmanager.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: false, false, false, false, false
Failed
passed: false, false, false, false, false
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: true, true, true, true, true
Passed
passed: true, true, true, true
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: false, false, false, false, false
Index Exchange
Tests whether the browser stops cookies from dsum-sec.casalemedia.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: false, false, false, false, false
New Relic
Tests whether the browser stops cookies from js-agent.newrelic.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: false, false, false, false, false
Failed
passed: false, false, false, false, false
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: true, true, true, true, true
Passed
passed: true, true, true, true
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: false, false, false, false, false
Quantcast
Tests whether the browser stops cookies from pixel.quantserve.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://pixel.quantserve.com/pixel
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://pixel.quantserve.com/pixel
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://pixel.quantserve.com/pixel
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://pixel.quantserve.com/pixel
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://pixel.quantserve.com/pixel
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://pixel.quantserve.com/pixel
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://pixel.quantserve.com/pixel
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://pixel.quantserve.com/pixel
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://pixel.quantserve.com/pixel
cookieFound: false, false, false, false, false
Scorecard Research Beacon
Tests whether the browser stops cookies from sb.scorecardresearch.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: false, false, false, false, false
Failed
passed: false, false, false, false, false
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: true, true, true, true, true
Passed
passed: true, true, true, true
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: false, false, false, false, false
Taboola
Tests whether the browser stops cookies from trc.taboola.com from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: false, false, false, false, false
Twitter pixel
Tests whether the browser stops cookies from t.co from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://t.co/i/adsct
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://t.co/i/adsct
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://t.co/i/adsct
cookieFound: false, false, false, false, false
Failed
passed: false, false, false, false, false
url: https://t.co/i/adsct
cookieFound: true, true, true, true, true
Passed
passed: true, true, true, true
url: https://t.co/i/adsct
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://t.co/i/adsct
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://t.co/i/adsct
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://t.co/i/adsct
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://t.co/i/adsct
cookieFound: false, false, false, false, false
Yandex Ads
Tests whether the browser stops cookies from yandex.ru from tracking users across websites.
Passed
passed: true, true, true, true, true
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: false, false, false, false
Passed
passed: true, true, true, true, true
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: false, false, false, false, false
Passed
passed: true, true, true, true, true
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: false, false, false, false, false
Cross-session first-party tracking testsWhich browsers prevent websites from tracking you across browser sessions?
A common vulnerability of web browsers is that they allow websites ("first parties") to 'tag' your browser with some tracking data. This tag can be used to re-identify you when you return to a website you visited before. This category of leaks can be prevented by browser if they clean or isolate data between browser sessions. (In cases where a user has logged into a website or entered detailed information, it may be justifiable for a browser to retain information across sessions. These tests check when no such justification exists: when you have entered no significant information into a website, will the browser still retain data that allows you to be tracked across sessions?)
Alt-Svc
Alt-Svc allows the server to indicate to the web browser that a resource should be loaded on a different server. Because this is a persistent setting, it could be used to track users across websites if it is not correctly partitioned.
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h2, h2, h2, h2, h2
result, different session: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3
result, different session: h2, h2, h2, h2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h2, h2, h2, h2
result, different session: h2, h2, h2, h2
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h2, h2, h2, h2, h2
result, different session: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
CacheStorage
The Cache API is a content storage mechanism originally introduced to support ServiceWorkers. If the same Cache object is accessible to multiple websites, it can be abused to track users.
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_1p,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_1p,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_1p,
4823b503-1134-4495-9521-589c3cadb53e_1p,
7b8dca09-76bf-49f2-afcb-a91cdd692309_1p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_1p,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_1p,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_1p,
f45c459c-5f59-4574-babc-86efafb20e14_1p,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_1p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
f002d203-bad5-464e-a749-bde11b88f6e2_1p,
e55181f7-2aca-4c30-9a92-3491983f9617_1p,
f566ba5d-ee36-4b64-a42d-b5747f068895_1p,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_1p,
203a504b-96ce-449e-a71f-f5d63594e59a_1p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_1p,
57b852fb-1d89-4246-bdfa-0358c6522fc0_1p,
48bc70ec-6769-476a-ad77-a340f70557f8_1p,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_1p,
62807c4d-1588-4f45-9ad3-aaafe56a0497_1p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_1p,
c256577c-3fb1-4313-9d33-63732756dd86_1p,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_1p,
f3e02565-bdae-49e3-a7db-063f329a1fbe_1p
result, different session:
Error: can't access property "url",
cacheKeys[0] is undefined,
Error: can't access property "url",
cacheKeys[0] is undefined,
Error: can't access property "url",
cacheKeys[0] is undefined,
Error: can't access property "url",
cacheKeys[0] is undefined
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
6235624d-f5d4-492a-97c2-4f553c093a94_1p,
d278d65a-73bf-45d1-a6a1-883a31a6e059_1p,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_1p,
8a221de0-7361-4126-a282-ce8d09ee7e8a_1p,
415283d0-dc14-4738-acf2-94d3bc317cce_1p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url')
result, different session:
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f_1p,
70c04d6e-f9a9-40c0-befa-e612e1ad2491_1p,
0b1f9b17-e805-4333-92c1-36ffc60a5556_1p,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b_1p,
7498691f-abaf-4bb9-b2ce-5daf69605ca7_1p
result, different session:
Error: cacheKeys[0] is undefined,
Error: cacheKeys[0] is undefined,
Error: cacheKeys[0] is undefined,
Error: cacheKeys[0] is undefined,
Error: cacheKeys[0] is undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
24619319-19ed-4def-851e-bea12959a8b1_1p,
b0c78218-66b9-43ca-af33-770f378ec58d_1p,
5abdef5b-b566-4486-ae6e-21ac177da9ae_1p,
89191af8-baf2-41e8-9b20-e09608b0e822_1p,
d1d5c108-4cd2-4362-9b18-764d78b3371b_1p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
cookie (HTTP)
The cookie, first introduced by Netscape in 1994, is a small amount of data stored by your browser on a website's behalf. It has legitimate uses, but it is also the classic cross-site tracking mechanism, and today still the most popular method of tracking users across websites. Browsers can stop cookies from being used for cross-site tracking by either blocking or partitioning them.
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_1p_http,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_1p_http,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_1p_http,
4823b503-1134-4495-9521-589c3cadb53e_1p_http,
7b8dca09-76bf-49f2-afcb-a91cdd692309_1p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_1p_http,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_1p_http,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_1p_http,
f45c459c-5f59-4574-babc-86efafb20e14_1p_http,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_1p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
f002d203-bad5-464e-a749-bde11b88f6e2_1p_http,
e55181f7-2aca-4c30-9a92-3491983f9617_1p_http,
f566ba5d-ee36-4b64-a42d-b5747f068895_1p_http,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_1p_http,
203a504b-96ce-449e-a71f-f5d63594e59a_1p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_1p_http,
57b852fb-1d89-4246-bdfa-0358c6522fc0_1p_http,
48bc70ec-6769-476a-ad77-a340f70557f8_1p_http,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_1p_http,
62807c4d-1588-4f45-9ad3-aaafe56a0497_1p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_1p_http,
c256577c-3fb1-4313-9d33-63732756dd86_1p_http,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_1p_http,
f3e02565-bdae-49e3-a7db-063f329a1fbe_1p_http
result, different session: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
6235624d-f5d4-492a-97c2-4f553c093a94_1p_http,
d278d65a-73bf-45d1-a6a1-883a31a6e059_1p_http,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_1p_http,
8a221de0-7361-4126-a282-ce8d09ee7e8a_1p_http,
415283d0-dc14-4738-acf2-94d3bc317cce_1p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session: , , ,
result, different session: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f_1p_http,
70c04d6e-f9a9-40c0-befa-e612e1ad2491_1p_http,
0b1f9b17-e805-4333-92c1-36ffc60a5556_1p_http,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b_1p_http,
7498691f-abaf-4bb9-b2ce-5daf69605ca7_1p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
24619319-19ed-4def-851e-bea12959a8b1_1p_http,
b0c78218-66b9-43ca-af33-770f378ec58d_1p_http,
5abdef5b-b566-4486-ae6e-21ac177da9ae_1p_http,
89191af8-baf2-41e8-9b20-e09608b0e822_1p_http,
d1d5c108-4cd2-4362-9b18-764d78b3371b_1p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
cookie (JS)
The cookie, first introduced by Netscape in 1994, is a small amount of data stored by your browser on a website's behalf. It has legitimate uses, but it is also the classic cross-site tracking mechanism, and today still the most popular method of tracking users across websites. Browsers can stop cookies from being used for cross-site tracking by either blocking or partitioning them.
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_1p_js,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_1p_js,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_1p_js,
4823b503-1134-4495-9521-589c3cadb53e_1p_js,
7b8dca09-76bf-49f2-afcb-a91cdd692309_1p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_1p_js,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_1p_js,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_1p_js,
f45c459c-5f59-4574-babc-86efafb20e14_1p_js,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_1p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
f002d203-bad5-464e-a749-bde11b88f6e2_1p_js,
e55181f7-2aca-4c30-9a92-3491983f9617_1p_js,
f566ba5d-ee36-4b64-a42d-b5747f068895_1p_js,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_1p_js,
203a504b-96ce-449e-a71f-f5d63594e59a_1p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_1p_js,
57b852fb-1d89-4246-bdfa-0358c6522fc0_1p_js,
48bc70ec-6769-476a-ad77-a340f70557f8_1p_js,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_1p_js,
62807c4d-1588-4f45-9ad3-aaafe56a0497_1p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_1p_js,
c256577c-3fb1-4313-9d33-63732756dd86_1p_js,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_1p_js,
f3e02565-bdae-49e3-a7db-063f329a1fbe_1p_js
result, different session: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
6235624d-f5d4-492a-97c2-4f553c093a94_1p_js,
d278d65a-73bf-45d1-a6a1-883a31a6e059_1p_js,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_1p_js,
8a221de0-7361-4126-a282-ce8d09ee7e8a_1p_js,
415283d0-dc14-4738-acf2-94d3bc317cce_1p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session: , , ,
result, different session: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f_1p_js,
70c04d6e-f9a9-40c0-befa-e612e1ad2491_1p_js,
0b1f9b17-e805-4333-92c1-36ffc60a5556_1p_js,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b_1p_js,
7498691f-abaf-4bb9-b2ce-5daf69605ca7_1p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
24619319-19ed-4def-851e-bea12959a8b1_1p_js,
b0c78218-66b9-43ca-af33-770f378ec58d_1p_js,
5abdef5b-b566-4486-ae6e-21ac177da9ae_1p_js,
89191af8-baf2-41e8-9b20-e09608b0e822_1p_js,
d1d5c108-4cd2-4362-9b18-764d78b3371b_1p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
CookieStore
The Cookie Store API is an alternative asynchronous API for managing cookies, supported by some browsers.
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_1p,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_1p,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_1p,
4823b503-1134-4495-9521-589c3cadb53e_1p,
7b8dca09-76bf-49f2-afcb-a91cdd692309_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_1p,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_1p,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_1p,
f45c459c-5f59-4574-babc-86efafb20e14_1p,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
f002d203-bad5-464e-a749-bde11b88f6e2_1p,
e55181f7-2aca-4c30-9a92-3491983f9617_1p,
f566ba5d-ee36-4b64-a42d-b5747f068895_1p,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_1p,
203a504b-96ce-449e-a71f-f5d63594e59a_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_1p,
57b852fb-1d89-4246-bdfa-0358c6522fc0_1p,
48bc70ec-6769-476a-ad77-a340f70557f8_1p,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_1p,
62807c4d-1588-4f45-9ad3-aaafe56a0497_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_1p,
c256577c-3fb1-4313-9d33-63732756dd86_1p,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_1p,
f3e02565-bdae-49e3-a7db-063f329a1fbe_1p
result, different session: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
6235624d-f5d4-492a-97c2-4f553c093a94_1p,
d278d65a-73bf-45d1-a6a1-883a31a6e059_1p,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_1p,
8a221de0-7361-4126-a282-ce8d09ee7e8a_1p,
415283d0-dc14-4738-acf2-94d3bc317cce_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different session:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different session:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
24619319-19ed-4def-851e-bea12959a8b1_1p,
b0c78218-66b9-43ca-af33-770f378ec58d_1p,
5abdef5b-b566-4486-ae6e-21ac177da9ae_1p,
89191af8-baf2-41e8-9b20-e09608b0e822_1p,
d1d5c108-4cd2-4362-9b18-764d78b3371b_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
CSS cache
CSS stylesheets are cached, and if that cache is shared between websites, it can be used to track users across sites.
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_26827674547565383,
fake_9395149965506324,
fake_4555869978157725,
fake_1403759720309743,
fake_4984015402207176
result, different session:
fake_2769694260487652,
fake_46599452731258917,
fake_18671161167874284,
fake_15388011989101313,
fake_3230398953102167
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_36193274518585206,
fake_8207126351039067,
fake_3576099322406019,
fake_10991179741290513,
fake_7759486139148588
result, different session:
fake_40553000617353896,
fake_017383975014620745,
fake_16284907094088452,
fake_4523693269408775,
fake_004473584946290465
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_21734284134773763,
fake_7984840123321009,
fake_010742210346850412,
fake_5136455856146516,
fake_6741772882615418
result, different session:
fake_6771604833033924,
fake_11294193779973982,
fake_15484880818447633,
fake_9209927709252128,
fake_8581088147525511
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_5889242383748969,
fake_05255038748694818,
fake_2805063671881085,
fake_8414323946824409,
fake_8986228506954466
result, different session:
fake_9032072658358477,
fake_547667863941045,
fake_762642562514795,
fake_11811177673207851,
fake_1621793733997039
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_6893582854881262,
fake_026811234412148055,
fake_5441996256087727,
fake_6813587647305621
result, different session:
fake_1027416461032562,
fake_6429578265116309,
fake_8506798043307868,
fake_2378437520088863
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_9087143060315532,
fake_6199795474036331,
fake_8747488202964888,
fake_58187047288828,
fake_7070299598358167
result, different session:
fake_7770711151564229,
fake_39940092349350453,
fake_32931426583286205,
fake_49636185934674426,
fake_5226291396979179
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_1500301741974852,
fake_32954384041146345,
fake_0369348016947193,
fake_8115500468699615
result, different session:
fake_8363604750584381,
fake_9887990878939008,
fake_4110890144006265,
fake_07337799348891849
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_5726004449776858,
fake_6987989951018798,
fake_8700747487476499,
fake_608745256895405,
fake_26935026697877573
result, different session:
fake_1684496688764363,
fake_18331569882066145,
fake_30823615500503854,
fake_29329972587814335,
fake_6352562149215022
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_4626129890747892,
fake_36317379674089545,
fake_5182963319247202,
fake_5767616149497468,
fake_8906412107899673
result, different session:
fake_44297088441633714,
fake_4765978673702098,
fake_2580169714132583,
fake_28132944617580713,
fake_5591270445809577
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
favicon cache
A favicon is an icon that represents a website, typically shown in browser tab and bookmarks menu. If the favicon cache is not partitioned, it can be used to track users across websites.
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 2, 2, 2, 2, 2
result, different session: 4, 4, 4, 4, 4
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
fetch cache
When a resource is received via the Fetch API, it is frequently cached. That cache can potentially be abused for cross-site tracking.
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
font cache
Web fonts are sometimes stored in their own cache, which is vulnerable to being abused for cross-site tracking.
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
iframe cache
An iframe is an element in a web page than allows websites to embed a second web page. Caching of this web page could be abused for cross-site tracking.
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
image cache
Caching of images in web browsers is a standard behavior. But if that cache leaks between websites, it can be abused for cross-site tracking.
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
indexedDB
The IndexedDB API exposes a transactional database to web pages. That database can be used to track users across websites, unless it is partitioned.
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_1p,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_1p,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_1p,
4823b503-1134-4495-9521-589c3cadb53e_1p,
7b8dca09-76bf-49f2-afcb-a91cdd692309_1p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_1p,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_1p,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_1p,
f45c459c-5f59-4574-babc-86efafb20e14_1p,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_1p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
f002d203-bad5-464e-a749-bde11b88f6e2_1p,
e55181f7-2aca-4c30-9a92-3491983f9617_1p,
f566ba5d-ee36-4b64-a42d-b5747f068895_1p,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_1p,
203a504b-96ce-449e-a71f-f5d63594e59a_1p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_1p,
57b852fb-1d89-4246-bdfa-0358c6522fc0_1p,
48bc70ec-6769-476a-ad77-a340f70557f8_1p,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_1p,
62807c4d-1588-4f45-9ad3-aaafe56a0497_1p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_1p,
c256577c-3fb1-4313-9d33-63732756dd86_1p,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_1p,
f3e02565-bdae-49e3-a7db-063f329a1fbe_1p
result, different session: undefined
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
6235624d-f5d4-492a-97c2-4f553c093a94_1p,
d278d65a-73bf-45d1-a6a1-883a31a6e059_1p,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_1p,
8a221de0-7361-4126-a282-ce8d09ee7e8a_1p,
415283d0-dc14-4738-acf2-94d3bc317cce_1p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session: undefined
result, different session: undefined
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f_1p,
70c04d6e-f9a9-40c0-befa-e612e1ad2491_1p,
0b1f9b17-e805-4333-92c1-36ffc60a5556_1p,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b_1p,
7498691f-abaf-4bb9-b2ce-5daf69605ca7_1p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
24619319-19ed-4def-851e-bea12959a8b1_1p,
b0c78218-66b9-43ca-af33-770f378ec58d_1p,
5abdef5b-b566-4486-ae6e-21ac177da9ae_1p,
89191af8-baf2-41e8-9b20-e09608b0e822_1p,
d1d5c108-4cd2-4362-9b18-764d78b3371b_1p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
localStorage
The localStorage API gives websites access to a key-value database that will remain available across visits. If the localStorage API is not partitioned or blocked, it can also be used to track users across websites.
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_1p,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_1p,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_1p,
4823b503-1134-4495-9521-589c3cadb53e_1p,
7b8dca09-76bf-49f2-afcb-a91cdd692309_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_1p,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_1p,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_1p,
f45c459c-5f59-4574-babc-86efafb20e14_1p,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
f002d203-bad5-464e-a749-bde11b88f6e2_1p,
e55181f7-2aca-4c30-9a92-3491983f9617_1p,
f566ba5d-ee36-4b64-a42d-b5747f068895_1p,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_1p,
203a504b-96ce-449e-a71f-f5d63594e59a_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_1p,
57b852fb-1d89-4246-bdfa-0358c6522fc0_1p,
48bc70ec-6769-476a-ad77-a340f70557f8_1p,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_1p,
62807c4d-1588-4f45-9ad3-aaafe56a0497_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_1p,
c256577c-3fb1-4313-9d33-63732756dd86_1p,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_1p,
f3e02565-bdae-49e3-a7db-063f329a1fbe_1p
result, different session: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
6235624d-f5d4-492a-97c2-4f553c093a94_1p,
d278d65a-73bf-45d1-a6a1-883a31a6e059_1p,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_1p,
8a221de0-7361-4126-a282-ce8d09ee7e8a_1p,
415283d0-dc14-4738-acf2-94d3bc317cce_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session: , , ,
result, different session: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
f0541ba1-93f1-4879-bc7e-5e4c53f0147f_1p,
70c04d6e-f9a9-40c0-befa-e612e1ad2491_1p,
0b1f9b17-e805-4333-92c1-36ffc60a5556_1p,
ef9a2d5a-e563-4400-9e6a-1aa349dee04b_1p,
7498691f-abaf-4bb9-b2ce-5daf69605ca7_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
24619319-19ed-4def-851e-bea12959a8b1_1p,
b0c78218-66b9-43ca-af33-770f378ec58d_1p,
5abdef5b-b566-4486-ae6e-21ac177da9ae_1p,
89191af8-baf2-41e8-9b20-e09608b0e822_1p,
d1d5c108-4cd2-4362-9b18-764d78b3371b_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
prefetch cache
A <link rel='prefetch'...> suggests to browsers they should fetch a resource ahead of time and cache it. But if browsers don't partition this cache, it can be used to track users across websites.
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
result, different session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
result, different session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
script cache
Caching of scripts in web browsers is a standard behavior. But if that cache leaks between websites, it can be abused for cross-site tracking.
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
XMLHttpRequest cache
Similar to the newer Fetch API, any resource received may be cached by the browser. The cache is potentially vulnerable to cross-site tracking attack.
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Cross-session third-party tracking testsWhich browsers prevent third-party trackers from tracking you across browser sessions?
A common vulnerability of web browsers is that they allow third-party trackers to 'tag' your browser with some tracking data. This tag can be used to re-identify you when you return to a website you visited before. This category of leaks can be prevented by browser if they clean or isolate data between browser sessions. (In cases where a user has logged into a website or entered detailed information, it may be justifiable for a browser to retain information across sessions. These tests check when no such justification exists: when you have entered no significant information into a website, will the browser still retain data that allows you to be tracked across sessions?)
Alt-Svc
Alt-Svc allows the server to indicate to the web browser that a resource should be loaded on a different server. Because this is a persistent setting, it could be used to track users across websites if it is not correctly partitioned.
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h2, h2, h2, h2, h2
result, different session: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3
result, different session: h2, h2, h2, h2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h2, h2, h2, h2
result, different session: h2, h2, h2, h2
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h2, h2, h2, h2, h2
result, different session: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async () => {
      // Clear Alt-Svc caching first.
      let responseText = "";
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/clear");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after clear:", responseText);
      // Store "h3" state in Alt-Svc cache
      for (let i = 0; i < 3; ++i) {
        await fetch(altSvcOrigin + "/set");
        await sleepMs(100);
      }
      responseText = await fetchText(altSvcOrigin + "/protocol");
      console.log("after set:", responseText);
    }
read: async () => {
      const protocol = await fetchText(altSvcOrigin + "/protocol");
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (protocol !== "h3") {
          throw new Error("Unsupported");
        }
      }
      return protocol;
    }
result, same session: h3, h3, h3, h3, h3
result, different session: h2, h2, h2, h2, h2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
CacheStorage
The Cache API is a content storage mechanism originally introduced to support ServiceWorkers. If the same Cache object is accessible to multiple websites, it can be abused to track users.
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_3p,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_3p,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_3p,
4823b503-1134-4495-9521-589c3cadb53e_3p,
7b8dca09-76bf-49f2-afcb-a91cdd692309_3p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_3p,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_3p,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_3p,
f45c459c-5f59-4574-babc-86efafb20e14_3p,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_3p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
f002d203-bad5-464e-a749-bde11b88f6e2_3p,
e55181f7-2aca-4c30-9a92-3491983f9617_3p,
f566ba5d-ee36-4b64-a42d-b5747f068895_3p,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_3p,
203a504b-96ce-449e-a71f-f5d63594e59a_3p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_3p,
57b852fb-1d89-4246-bdfa-0358c6522fc0_3p,
48bc70ec-6769-476a-ad77-a340f70557f8_3p,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_3p,
62807c4d-1588-4f45-9ad3-aaafe56a0497_3p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_3p,
c256577c-3fb1-4313-9d33-63732756dd86_3p,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_3p,
f3e02565-bdae-49e3-a7db-063f329a1fbe_3p
result, different session:
Error: can't access property "url",
cacheKeys[0] is undefined,
Error: can't access property "url",
cacheKeys[0] is undefined,
Error: can't access property "url",
cacheKeys[0] is undefined,
Error: can't access property "url",
cacheKeys[0] is undefined
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
6235624d-f5d4-492a-97c2-4f553c093a94_3p,
d278d65a-73bf-45d1-a6a1-883a31a6e059_3p,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_3p,
8a221de0-7361-4126-a282-ce8d09ee7e8a_3p,
415283d0-dc14-4738-acf2-94d3bc317cce_3p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url')
result, different session:
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.
result, different session:
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (key) => {
      try {
        let cache = await caches.open("supercookies");
        cache.addAll([`test.css?key=${key}`]);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: async () => {
      let cache = await caches.open("supercookies");
      let cacheKeys = await cache.keys();
      let url = cacheKeys[0].url;
      return (new URL(url)).searchParams.get("key");
    }
result, same session:
24619319-19ed-4def-851e-bea12959a8b1_3p,
b0c78218-66b9-43ca-af33-770f378ec58d_3p,
5abdef5b-b566-4486-ae6e-21ac177da9ae_3p,
89191af8-baf2-41e8-9b20-e09608b0e822_3p,
d1d5c108-4cd2-4362-9b18-764d78b3371b_3p
result, different session:
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url'),
Error: Cannot read properties of undefined (reading 'url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
cookie (HTTP)
The cookie, first introduced by Netscape in 1994, is a small amount of data stored by your browser on a website's behalf. It has legitimate uses, but it is also the classic cross-site tracking mechanism, and today still the most popular method of tracking users across websites. Browsers can stop cookies from being used for cross-site tracking by either blocking or partitioning them.
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_3p_http,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_3p_http,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_3p_http,
4823b503-1134-4495-9521-589c3cadb53e_3p_http,
7b8dca09-76bf-49f2-afcb-a91cdd692309_3p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_3p_http,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_3p_http,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_3p_http,
f45c459c-5f59-4574-babc-86efafb20e14_3p_http,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_3p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_3p_http,
57b852fb-1d89-4246-bdfa-0358c6522fc0_3p_http,
48bc70ec-6769-476a-ad77-a340f70557f8_3p_http,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_3p_http,
62807c4d-1588-4f45-9ad3-aaafe56a0497_3p_http
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session: , , ,
result, different session: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session: , , ,
result, different session: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      // Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
      await fetch(`${baseURI}cookie?secret=${secret}_http`);
    }
read: async () => {
      // Test if we now send a requests with a 'cookie' header containing the secret.
      let response = await fetch(`${baseURI}headers`);
      let cookie = (await response.json())["cookie"];
      return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
    }
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
cookie (JS)
The cookie, first introduced by Netscape in 1994, is a small amount of data stored by your browser on a website's behalf. It has legitimate uses, but it is also the classic cross-site tracking mechanism, and today still the most popular method of tracking users across websites. Browsers can stop cookies from being used for cross-site tracking by either blocking or partitioning them.
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_3p_js,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_3p_js,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_3p_js,
4823b503-1134-4495-9521-589c3cadb53e_3p_js,
7b8dca09-76bf-49f2-afcb-a91cdd692309_3p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_3p_js,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_3p_js,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_3p_js,
f45c459c-5f59-4574-babc-86efafb20e14_3p_js,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_3p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_3p_js,
57b852fb-1d89-4246-bdfa-0358c6522fc0_3p_js,
48bc70ec-6769-476a-ad77-a340f70557f8_3p_js,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_3p_js,
62807c4d-1588-4f45-9ad3-aaafe56a0497_3p_js
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session: , , ,
result, different session: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Unsupported
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session: , , ,
result, different session: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Unsupported
write: (secret) => {
      document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`;
    }
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
CookieStore
The Cookie Store API is an alternative asynchronous API for managing cookies, supported by some browsers.
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_3p,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_3p,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_3p,
4823b503-1134-4495-9521-589c3cadb53e_3p,
7b8dca09-76bf-49f2-afcb-a91cdd692309_3p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_3p,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_3p,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_3p,
f45c459c-5f59-4574-babc-86efafb20e14_3p,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_3p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_3p,
57b852fb-1d89-4246-bdfa-0358c6522fc0_3p,
48bc70ec-6769-476a-ad77-a340f70557f8_3p,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_3p,
62807c4d-1588-4f45-9ad3-aaafe56a0497_3p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session: , , ,
result, different session: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different session:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different session:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Unsupported
write: (data) => {
      const msPerHour = 60 * 60 * 1000;
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      window.cookieStore.set({
        name: "partition_test",
        value: data,
        expires: Date.now() + msPerHour,
        sameSite: "none"
      });
    }
read: async () => {
      if (!window.cookieStore) {
        throw new Error("Unsupported");
      }
      const cookie = await window.cookieStore.get("partition_test");
      if (!cookie) {
        return null;
      }
      return cookie.value;
    }
result, same session: , , , ,
result, different session: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
CSS cache
CSS stylesheets are cached, and if that cache is shared between websites, it can be used to track users across sites.
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_3270606564414913,
fake_4341996910859003,
fake_16781245197438732,
fake_8803980527826776,
fake_6406835368100559
result, different session:
fake_6965616459976895,
fake_38755667651568526,
fake_36983152954341714,
fake_8574417067426863,
fake_307986478141699
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_43818081635339845,
fake_871199031595207,
fake_6406044193058806,
fake_8698617545937017,
fake_6499176899343821
result, different session:
fake_4782817768786678,
fake_5487912303675329,
fake_4640539357182303,
fake_6078385529531298,
fake_8789754518096062
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_2891387132078329,
fake_07720508167598172,
fake_7105592420979916,
fake_29764927179511025,
fake_5772390415942206
result, different session:
fake_0828214942652874,
fake_6745474173449346,
fake_5444972592285922,
fake_05720749874175457,
fake_06935273684197396
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_7628326202053954,
fake_8703893253125603,
fake_43075458527200117,
fake_7396192798853818,
fake_23843228758871526
result, different session:
fake_24988733152471965,
fake_4734777041122369,
fake_9594577041059247,
fake_5369261891705794,
fake_46500601012275466
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_5239904857773232,
fake_4523056697309975,
fake_032206256261047006,
fake_8740649928030517
result, different session:
fake_39133192317539245,
fake_3988688789650958,
fake_8526586682306667,
fake_6863765077088011
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_6384855744643734,
fake_6507691379458274,
fake_45360435030685897,
fake_9532103278969519,
fake_2821061015095496
result, different session:
fake_5502275432117107,
fake_17666347600210797,
fake_0933495499704835,
fake_3075885042705746,
fake_5410794048150154
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_5498736153432224,
fake_0632477405612153,
fake_6133978361713126,
fake_9265361961818863
result, different session:
fake_7381774836555128,
fake_7549651735481036,
fake_45913689014812364,
fake_688441339489233
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_7806721904334153,
fake_14256887141297492,
fake_43128042004893463,
fake_08544045116022847,
fake_9827093529708144
result, different session:
fake_1015354016183625,
fake_26051142542535977,
fake_8118253385976344,
fake_03502902653305329,
fake_965944137058776
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return key;
    }
read: async (key) => {
      const href = testURI("resource", "css", key);
      const head = document.getElementsByTagName("head")[0];
      head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
      const testElement = document.querySelector("#css");
      let fontFamily;
      while (true) {
        await sleepMs(100);
        fontFamily = getComputedStyle(testElement).fontFamily;
        if (fontFamily.startsWith("fake")) {
          break;
        }
      }
      console.log(fontFamily);
      return fontFamily;
    }
result, same session:
fake_6499383817810893,
fake_41587467668045885,
fake_6545331741759237,
fake_6067063110902795,
fake_08730206528874329
result, different session:
fake_8505887870166744,
fake_27909216605649845,
fake_33052970953313854,
fake_9610076114196942,
fake_34069216632383337
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
favicon cache
A favicon is an icon that represents a website, typically shown in browser tab and bookmarks menu. If the favicon cache is not partitioned, it can be used to track users across websites.
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
      await sleepMs(2000);
      let response = await fetch(
        testURI("ctr", "favicon", key), {"cache": "reload"});
      let count = (await response.text()).trim();
      if (count === "0") {
        throw new Error("No requests received");
      }
      return count;
    }
result, same session: 2, 2, 2, 2, 2
result, different session: 4, 4, 4, 4, 4
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
fetch cache
When a resource is received via the Fetch API, it is frequently cached. That cache can potentially be abused for cross-site tracking.
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      return key;
    }
read: async (key) => {
      let response = await fetch(testURI("resource", "fetch", key),
                                 {cache: "force-cache"});
      let countResponse = await fetch(testURI("ctr", "fetch", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
font cache
Web fonts are sometimes stored in their own cache, which is vulnerable to being abused for cross-site tracking.
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      return key;
    }
read: async (key) => {
      const text = document.createElement("span");
      text.id = "text";
      text.innerText = "test";
      document.body.appendChild(text);
      const originalWidth = text.getBoundingClientRect().width;
      let style = document.createElement("style");
      style.type='text/css';
      let fontURI = testURI("resource", "font", key);
      style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } #text { font-family: "myFont" }`;
      document.getElementsByTagName("head")[0].appendChild(style);
      let newWidth;
      do {
        await sleepMs(100);
        newWidth = text.getBoundingClientRect().width;
      } while (newWidth < 0 || newWidth === originalWidth)
      let response = await fetch(
        testURI("ctr", "font", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
iframe cache
An iframe is an element in a web page than allows websites to embed a second web page. Caching of this web page could be abused for cross-site tracking.
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      iframe.addEventListener("load", () => resolve(key), {once: true});
      iframe.src = testURI("resource", "page", key);
    })
read: async (key) => {
      let iframe = document.createElement("iframe");
      document.body.appendChild(iframe);
      let iframeLoadPromise = new Promise((resolve, reject) => {
        iframe.addEventListener("load", resolve, {once: true});
      });
      let address = testURI("resource", "page", key);
      iframe.src = address;
      await iframeLoadPromise;
      let response = await fetch(
        testURI("ctr", "page", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
image cache
Caching of images in web browsers is a standard behavior. But if that cache leaks between websites, it can be abused for cross-site tracking.
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      img.addEventListener("load", () => resolve(key), {once: true});
      img.src = testURI("resource", "image", key);
    })
read: async (key) => {
      let img = document.createElement("img");
      document.body.appendChild(img);
      let imgLoadPromise = new Promise((resolve, reject) => {
        img.addEventListener("load", resolve, {once: true});
      });
      img.src = testURI("resource", "image", key);
      await imgLoadPromise;
      let response = await fetch(
        testURI("ctr", "image", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
indexedDB
The IndexedDB API exposes a transactional database to web pages. That database can be used to track users across websites, unless it is partitioned.
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_3p,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_3p,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_3p,
4823b503-1134-4495-9521-589c3cadb53e_3p,
7b8dca09-76bf-49f2-afcb-a91cdd692309_3p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_3p,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_3p,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_3p,
f45c459c-5f59-4574-babc-86efafb20e14_3p,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_3p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
f002d203-bad5-464e-a749-bde11b88f6e2_3p,
e55181f7-2aca-4c30-9a92-3491983f9617_3p,
f566ba5d-ee36-4b64-a42d-b5747f068895_3p,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_3p,
203a504b-96ce-449e-a71f-f5d63594e59a_3p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_3p,
57b852fb-1d89-4246-bdfa-0358c6522fc0_3p,
48bc70ec-6769-476a-ad77-a340f70557f8_3p,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_3p,
62807c4d-1588-4f45-9ad3-aaafe56a0497_3p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_3p,
c256577c-3fb1-4313-9d33-63732756dd86_3p,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_3p,
f3e02565-bdae-49e3-a7db-063f329a1fbe_3p
result, different session: undefined
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
6235624d-f5d4-492a-97c2-4f553c093a94_3p,
d278d65a-73bf-45d1-a6a1-883a31a6e059_3p,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_3p,
8a221de0-7361-4126-a282-ce8d09ee7e8a_3p,
415283d0-dc14-4738-acf2-94d3bc317cce_3p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session: undefined
result, different session: undefined
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure
result, different session:
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure,
Error: IDBFactory.open: The operation is insecure
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
24619319-19ed-4def-851e-bea12959a8b1_3p,
b0c78218-66b9-43ca-af33-770f378ec58d_3p,
5abdef5b-b566-4486-ae6e-21ac177da9ae_3p,
89191af8-baf2-41e8-9b20-e09608b0e822_3p,
d1d5c108-4cd2-4362-9b18-764d78b3371b_3p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
localStorage
The localStorage API gives websites access to a key-value database that will remain available across visits. If the localStorage API is not partitioned or blocked, it can also be used to track users across websites.
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
7ac1df58-13b5-4ca3-ba9f-47796b6e9a4a_3p,
edf66da1-2a57-4a6d-a5e7-ce5aabfa925c_3p,
9a557dff-ccf4-4993-b9f7-b2d1055d8461_3p,
4823b503-1134-4495-9521-589c3cadb53e_3p,
7b8dca09-76bf-49f2-afcb-a91cdd692309_3p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
417197c0-7b6c-4460-95e1-7d87a88fd9a4_3p,
fce7f615-e817-4eb2-92ae-a5c39cf23a4e_3p,
957c3d9b-94a2-437e-90a4-dcd34e6ec526_3p,
f45c459c-5f59-4574-babc-86efafb20e14_3p,
bc1001e5-71e4-4ed9-95b4-82b89d54faae_3p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
f002d203-bad5-464e-a749-bde11b88f6e2_3p,
e55181f7-2aca-4c30-9a92-3491983f9617_3p,
f566ba5d-ee36-4b64-a42d-b5747f068895_3p,
3cd095d6-77ce-4875-bbda-bb6dc025e3b7_3p,
203a504b-96ce-449e-a71f-f5d63594e59a_3p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
26b78d4f-805a-4e0d-91aa-8204bb2772bc_3p,
57b852fb-1d89-4246-bdfa-0358c6522fc0_3p,
48bc70ec-6769-476a-ad77-a340f70557f8_3p,
f5f7d0a9-b3b9-48ba-8014-e6021a6df504_3p,
62807c4d-1588-4f45-9ad3-aaafe56a0497_3p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
c48c8f03-e5ed-4afc-9eda-e14fdbef73b3_3p,
c256577c-3fb1-4313-9d33-63732756dd86_3p,
656c1ba2-1c08-4ebb-9574-cf86ec8f280c_3p,
f3e02565-bdae-49e3-a7db-063f329a1fbe_3p
result, different session: , , ,
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
6235624d-f5d4-492a-97c2-4f553c093a94_3p,
d278d65a-73bf-45d1-a6a1-883a31a6e059_3p,
d9f20191-ac2a-4e06-aa5a-394bf2a376e4_3p,
8a221de0-7361-4126-a282-ce8d09ee7e8a_3p,
415283d0-dc14-4738-acf2-94d3bc317cce_3p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session: , , ,
result, different session: , , ,
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.
result, different session:
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.,
Error: The operation is insecure.
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
24619319-19ed-4def-851e-bea12959a8b1_3p,
b0c78218-66b9-43ca-af33-770f378ec58d_3p,
5abdef5b-b566-4486-ae6e-21ac177da9ae_3p,
89191af8-baf2-41e8-9b20-e09608b0e822_3p,
d1d5c108-4cd2-4362-9b18-764d78b3371b_3p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
prefetch cache
A <link rel='prefetch'...> suggests to browsers they should fetch a resource ahead of time and cache it. But if browsers don't partition this cache, it can be used to track users across websites.
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
result, different session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Unsupported
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
result, different session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
unsupported: true, true, true, true
passed: undefined
test failed: false, false, false, false
Unsupported
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
result, different session:
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received,
Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      return key;
    }
read: async (key) => {
      let link = document.createElement("link");
      link.rel = "prefetch";
      link.href = testURI("resource", "prefetch", key);
      document.getElementsByTagName("head")[0].appendChild(link);
      await sleepMs(500);
      let response = await fetch(
        testURI("ctr", "prefetch", key), {"cache": "reload"});
      let countString = (await response.text()).trim();
      if (parseInt(countString) === 0) {
        throw new Error("No requests received");
      }
      return countString;
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
script cache
Caching of scripts in web browsers is a standard behavior. But if that cache leaks between websites, it can be abused for cross-site tracking.
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      script.addEventListener("load", () => resolve(key), {once: true});
      script.src = testURI("resource", "script", key);
    })
read: async (key) => {
      let script = document.createElement("script");
      document.body.appendChild(script);
      let scriptLoadPromise = new Promise((resolve, reject) => {
        script.addEventListener("load", resolve, {once: true});
      });
      script.src = testURI("resource", "script", key);
      await scriptLoadPromise;
      let response = await fetch(
        testURI("ctr", "script", key), {"cache": "reload"});
      return (await response.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
XMLHttpRequest cache
Similar to the newer Fetch API, any resource received may be cached by the browser. The cache is potentially vulnerable to cross-site tracking attack.
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1
result, different session: 2, 2, 2, 2
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 2, 2, 2, 2
result, different session: 3, 3, 3, 3
unsupported: false, false, false, false
passed: true, true, true, true
test failed: false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      return key;
    }
read: async (key) => {
      const req = new XMLHttpRequest();
      const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
      req.open("GET", testURI("resource", "xhr", key));
      req.send();
      await loadPromise;
      let countResponse = await fetch(testURI("ctr", "xhr", key),
                                      {cache: "reload"});
      return (await countResponse.text()).trim();
    }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
DNS privacy testsWhich browsers keep their DNS queries encrypted?
The Domain Name System (DNS) is the method by which web browsers look up the IP address for each website you visit. In a DNS query, a web browser will ask a DNS resolver (somewhere on the internet) for the IP address corresponding to a domain name (such as nytimes.com) for a website you want to visit. Traditionally, most web browsers have sent their DNS queries unencrypted, which means your ISP or anyone else on the network between your computer and the DNS resolver can eavesdrop on the websites you visit. In recent years, web browsers and operating systems have begun to introduce encrypted DNS, including the DNS over HTTPS (DoH) protocol, to encrypt the DNS request from your browser and the response from the resolver to keep your browsing history from leaking. These tests check whether a browser is still protecting its DNS requests by sending them encrypted.
Location: Brazil
  Checks whether the browser decides to use
  encrypted DNS if the computer is located in Brazil.
Failed
passed: true, false, false, false, false
leak detected: false, true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Location: China
  Checks whether the browser decides to use
  encrypted DNS if the computer is located in China.
Failed
passed: true, false, false, false, false
leak detected: false, true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Location: Germany
  Checks whether the browser decides to use
  encrypted DNS if the computer is located in Germany.
Failed
passed: true, false, false, false, false
leak detected: false, true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Location: India
  Checks whether the browser decides to use
  encrypted DNS if the computer is located in India.
Failed
passed: true, false, false, false, false
leak detected: false, true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Location: Nigeria
  Checks whether the browser decides to use
  encrypted DNS if the computer is located in Nigeria.
Failed
passed: true, false, false, false, false
leak detected: false, true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Location: Russia
  Checks whether the browser decides to use
  encrypted DNS if the computer is located in Russia.
Failed
passed: true, false, false, false, false
leak detected: false, true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Passed
passed: true, true, true, true
leak detected: false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Location: United States
  Checks whether the browser decides to use
  encrypted DNS if the computer is located in United States.
Failed
passed: true, false, false, false, false
leak detected: false, true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Passed
passed: true, true, true, true
leak detected: false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
OS DNS: Cloudflare
  Checks whether the browser decides to use
  encrypted DNS if the operating system's default DNS provider is Cloudflare.
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true
leak detected: false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Passed
passed: true, true, true, true
leak detected: false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
OS DNS: Comodo
  Checks whether the browser decides to use
  encrypted DNS if the operating system's default DNS provider is Comodo.
Failed
passed: true, false, false, false, false
leak detected: false, true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false
leak detected: true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
OS DNS: Google
  Checks whether the browser decides to use
  encrypted DNS if the operating system's default DNS provider is Google.
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true
leak detected: false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Passed
passed: true, true, true, true
leak detected: false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
OS DNS: Quad9
  Checks whether the browser decides to use
  encrypted DNS if the operating system's default DNS provider is Quad9.
Failed
passed: true, false, false, false, false
leak detected: false, true, true, true, true
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Passed
passed: true, true, true, true
leak detected: false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
Passed
passed: true, true, true, true
leak detected: false, false, false, false
Passed
passed: true, true, true, true, true
leak detected: false, false, false, false, false
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true