Desktop private modes

(default settings)
brave logo
brave
1.93

private
brave logo
brave
1.93

Tor
chrome logo
chrome
151.0

private
duckduckgo logo
duckduckgo
1.202

private
edge logo
edge
151.0

private
firefox logo
firefox
153.0

private
librewolf logo
librewolf
153.0-3

private
mullvad logo
mullvad
15.0

private
opera logo
opera
134.0

private
safari logo
safari
26.5

private
tor logo
tor
15.0
ungoogled logo
ungoogled
150.0

private
vivaldi logo
vivaldi
8.1

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
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, 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, 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
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
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
result, different first party:
Error: Load failed,
Error: Load failed,
Error: Load failed,
Error: Load failed,
Error: Load failed
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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
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:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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:
Error: Load failed,
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,
Error: Load failed
unsupported: false, false, false, false, false
passed: undefined
test failed: true, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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,
Error: no BroadcastChannel message
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: undefined
test failed: true, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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'),
Error: undefined is not an object (evaluating 'cacheKeys[0].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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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,
Error: can't access property "url",
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 first party:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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,
Error: can't access property "url",
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 first party:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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'),
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'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: undefined
test failed: true, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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:
2dffac32-1b96-4893-acce-1f154e14c80b_http,
20f77feb-0d7f-4110-a294-2bc3985b290f_http,
bbea30bd-e930-4495-a5b5-05038ee0952d_http,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_http,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_http,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_http,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_http,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_http,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_http,
a98593fa-ab88-41aa-b892-3df1b0bd093c_http,
b5674964-9e81-4918-9741-84eca3616cc3_http,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_http,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_http,
12294c42-5770-4956-ae01-aa7b8322f552_http,
e398fa75-1f07-40d6-95da-226c0e17ffd9_http,
13c2b455-aca8-4424-b8fd-1186afc95de1_http,
06ca0285-7ed8-465a-a63e-274ed2bb310d_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:
0555b4d6-9494-468e-a4d1-02e172d15a1c_http,
0e953b7f-bd90-4327-9075-399aa4eea32c_http,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_http,
f9bedd3b-6650-4266-97d0-29320e8acc9e_http,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_http,
219d8ef0-3e36-4297-aaca-444b962d7a1e_http,
92054eb7-13b5-4026-8bb8-25ed7004a376_http,
48b25e53-04fd-45d8-b818-64393590b7b3_http,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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:
8d4885cc-cd9b-402d-b001-47261fb92f40_http,
6dcfbe83-b04c-44ae-aa06-949aa154938e_http,
d931c26d-3182-425c-8a5d-d92dea5707b5_http,
89d9c8a7-e43e-4173-994c-a0917d700921_http,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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:
bceed89c-a60b-47aa-beba-9ee88280f27c_http,
2791e823-749a-4115-bff5-3c5c920fdf23_http,
71ce156c-a2de-4a24-ac62-4972f5c77cc4_http,
5e93438a-f041-4508-9c1f-5f29e736e407_http,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43_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:
13ac6d86-c860-46d2-b61a-e8377f56195b_http,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_http,
9946e862-e92b-4719-93dd-98d22c10db1c_http,
8c08cae1-f687-491a-b882-c57360eae1bb_http,
de21c995-30d7-4d37-a01a-f25329357400_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, false
passed: undefined
test failed: true, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524_http,
1b1df719-b259-4eaf-9074-9e0150513637_http,
b3e86eb6-857d-45ff-898c-6d3543e1f050_http,
e583a492-e900-4957-ba9e-546d83d76dbb_http,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5_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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_http,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_http,
24555dd0-615f-4b3e-a62c-5c934d312af4_http,
16b29286-9796-483e-a475-40cdb7b0c7cb_http,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_http,
f8c42a30-d188-4078-a45b-7b22a09b859b_http,
05768100-0198-45a2-899f-98ad5f33cf20_http,
432e87ea-e304-4607-9536-4f7046c69b0d_http,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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:
2dffac32-1b96-4893-acce-1f154e14c80b_js,
20f77feb-0d7f-4110-a294-2bc3985b290f_js,
bbea30bd-e930-4495-a5b5-05038ee0952d_js,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_js,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_js,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_js,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_js,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_js,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_js,
a98593fa-ab88-41aa-b892-3df1b0bd093c_js,
b5674964-9e81-4918-9741-84eca3616cc3_js,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_js,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_js,
12294c42-5770-4956-ae01-aa7b8322f552_js,
e398fa75-1f07-40d6-95da-226c0e17ffd9_js,
13c2b455-aca8-4424-b8fd-1186afc95de1_js,
06ca0285-7ed8-465a-a63e-274ed2bb310d_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:
0555b4d6-9494-468e-a4d1-02e172d15a1c_js,
0e953b7f-bd90-4327-9075-399aa4eea32c_js,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_js,
f9bedd3b-6650-4266-97d0-29320e8acc9e_js,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_js,
219d8ef0-3e36-4297-aaca-444b962d7a1e_js,
92054eb7-13b5-4026-8bb8-25ed7004a376_js,
48b25e53-04fd-45d8-b818-64393590b7b3_js,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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:
8d4885cc-cd9b-402d-b001-47261fb92f40_js,
6dcfbe83-b04c-44ae-aa06-949aa154938e_js,
d931c26d-3182-425c-8a5d-d92dea5707b5_js,
89d9c8a7-e43e-4173-994c-a0917d700921_js,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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:
bceed89c-a60b-47aa-beba-9ee88280f27c_js,
2791e823-749a-4115-bff5-3c5c920fdf23_js,
71ce156c-a2de-4a24-ac62-4972f5c77cc4_js,
5e93438a-f041-4508-9c1f-5f29e736e407_js,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43_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:
13ac6d86-c860-46d2-b61a-e8377f56195b_js,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_js,
9946e862-e92b-4719-93dd-98d22c10db1c_js,
8c08cae1-f687-491a-b882-c57360eae1bb_js,
de21c995-30d7-4d37-a01a-f25329357400_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, false
passed: undefined
test failed: true, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524_js,
1b1df719-b259-4eaf-9074-9e0150513637_js,
b3e86eb6-857d-45ff-898c-6d3543e1f050_js,
e583a492-e900-4957-ba9e-546d83d76dbb_js,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5_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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_js,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_js,
24555dd0-615f-4b3e-a62c-5c934d312af4_js,
16b29286-9796-483e-a475-40cdb7b0c7cb_js,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_js,
f8c42a30-d188-4078-a45b-7b22a09b859b_js,
05768100-0198-45a2-899f-98ad5f33cf20_js,
432e87ea-e304-4607-9536-4f7046c69b0d_js,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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: , , , ,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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_4790702212322455,
fake_14496900271800195,
fake_28351237948728936,
fake_4582398946362385,
fake_26436451282315
result, different first party:
fake_6208123280131168,
fake_6249404002367658,
fake_028503066137769206,
fake_7060931988222707,
fake_48525371815624796
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_36107883808600594,
fake_16785321351435312,
fake_6569217766993314,
fake_8790268294099179,
fake_7936104633055905
result, different first party:
fake_9337616674299967,
fake_013125612111538176,
fake_41899074726324126,
fake_3221620321453291,
fake_9760435081067085
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
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_6689611899389825,
fake_0033126158230425418,
fake_026590513942363003,
fake_5872878583755103,
fake_8895079508895225
result, different first party:
fake_6689611899389825,
fake_0033126158230425418,
fake_026590513942363003,
fake_5872878583755103,
fake_8895079508895225
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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_36607245312187664,
fake_1161160775377823,
fake_2501301510623455,
fake_6295631569258573,
fake_12337588916751452
result, different first party:
fake_7990372937511978,
fake_567732629385004,
fake_12588447576179895,
fake_9115608159066702,
fake_5373824538119636
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
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_019721932537304587,
fake_15606109234213816,
fake_9453514236908442,
fake_2034034084148295,
fake_05314832911261602
result, different first party:
fake_019721932537304587,
fake_36246824077338524,
fake_31391026633453056,
fake_2034034084148295,
fake_05314832911261602
unsupported: false, false, false, false, false
passed: false, true, true, false, false
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_9461831162761114,
fake_1087794994365272,
fake_05621897601233927,
fake_7516097883633599,
fake_968477862240388
result, different first party:
fake_7659034678010015,
fake_5426051004380346,
fake_41100247227846554,
fake_22605906241851081,
fake_14157242592128827
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_12461892211668313,
fake_17141193870872296,
fake_8952010415263554,
fake_8252496250000445,
fake_6759787924209484
result, different first party:
fake_8643503604062688,
fake_3878993215502655,
fake_6839734567526929,
fake_7527240489964362,
fake_3062152347182423
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_6736961774840915,
fake_05361041156408275,
fake_5973205191318214,
fake_2976167362339144,
fake_9897845341925546
result, different first party:
fake_11121433741521147,
fake_2895466832686493,
fake_12111254130706017,
fake_8435810019751775,
fake_1348974434125083
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
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_42670406110541936,
fake_46719262150855534,
fake_7730145327999276,
fake_5354676864708601,
fake_8136237561954023
result, different first party:
fake_42670406110541936,
fake_29109358464224333,
fake_056290272769658145,
fake_5354676864708601,
fake_9229549415775662
unsupported: false, false, false, false, false
passed: false, true, true, false, 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_6703927349200729,
fake_2230352066467438,
fake_17314680475177346,
fake_9741578930484427,
fake_30831981942396025
result, different first party:
fake_8913933403691712,
fake_6094775598617077,
fake_3063747076368495,
fake_7924646596946643,
fake_9471790920312004
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_7033750064214335,
fake_3569761145392254,
fake_21384046380991406,
fake_9663724057392444,
fake_6419267119738237
result, different first party:
fake_6915219363604919,
fake_10752202637035269,
fake_10159054789469968,
fake_7465474198211337,
fake_6682901823535847
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
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_6255824058948116,
fake_5113939689525417,
fake_6532933486280665,
fake_9277836482463291,
fake_1668649737262371
result, different first party:
fake_6255824058948116,
fake_5113939689525417,
fake_6532933486280665,
fake_9277836482463291,
fake_1668649737262371
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
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_705940616037585,
fake_3355244886947579,
fake_9588751969106768,
fake_3937202375284561,
fake_1252196447377758
result, different first party:
fake_705940616037585,
fake_3355244886947579,
fake_9588751969106768,
fake_3937202375284561,
fake_1252196447377758
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 3, 3, 3, 3, 3
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: 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, 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, 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, 2
result, different first party: 4, 4, 4, 4, 4
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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
Failed
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: 1, 2, 2, 1, 1
unsupported: false, false, false, false, false
passed: false, true, true, false, false
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
Failed
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: 1, 2, 2, 1, 2
unsupported: false, false, false, false, false
passed: false, true, true, false, 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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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,
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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,
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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,
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
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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, false
passed: undefined
test failed: true, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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, false
passed: undefined
test failed: true, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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:
88929539d6d050333e7befc737f79f0e,
a355bd370ac1a6ecea6bcbb7dc4d068c,
51c8e668724e75742273a192cb807883,
553d1923ec52235234550b92d8b7a5f9,
55a91c5490d9b63e656659d770412faa
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:
79177ac4bd78b24fdb9e00589b4ce44f,
d5b9160814ca366dd4986451d641d7a8,
30fcc8959fa2601fa9342a4e40f59930,
944a69d701bc615484758e3cd6797874,
282349718344f875e0bc679f70c5aea1
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:
45309813419f6176acf0f1383ef13bea,
3c212d972bc35f7f8347b98f80b7c7e6,
a42464b24507e736009340027108651e,
0e93e30b1ea8a5eb5d8896e9225b7c63,
e4455cb29ebf98d4d0008b0b2318b2af
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:
465a75d1ef2a7b227d3b9b3f2cf6158b,
201c0756062a5595229b0cb0fcdc3989,
d786d188027f51d7f463a2a97ee6cb1d,
665521e8fe48b0ae122a846a75d43530,
3506c82f91f0a3b6ecd4f9d6dabda85c
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:
598a200476440734799b6fd05867eee9,
12cbbe4e5b627ffbf5493bb40dd8121b,
230038c3d61705ab3bb75954701ac3c5,
486cf2f4c6141bbb7e253e9639334758,
082372520145f843b864df1eae79febc
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:
820eee3cd37ea6d35f509691910d1df3,
bd09cf1552fbede7343a32d6da787b43,
a94dde45269d218d99100bc5dab22758,
e0f29772535bad02ce57a95cc9d8c61d,
f9b930bc7b419820ce62125ac26041eb
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:
8549bb087528e98f539ad378a1a18867,
4169f70bf608b9d6ac0afc9585323f6b,
3d0f0cce952c9155a8413558f621dd8f,
485275484e393aeeca62f08c14957553,
95f68dfde72153a72e30574fd03a8fab
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
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:
3d3ea9d269f240af097a82bb0205c339,
b645a6886147aab8d7721c83c1850ca9,
491b021b3b3f1b1bb685ee83c504efd2,
60959f7c40870fec556dcdc95daf2e2b,
e80dab0756b5c9379f28fd1add3c7c18
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:
c0dccd7e3da52a018269648006e2c499,
b5a2ac6c3a107d030bf113b3561a01af,
27d234e512b1da36f4350bcf750a5dc6,
4f7eebacbcd8fbd1f147630492761601,
c9ecf48000427a6ac2b404dac10c760f
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
Failed
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party:
Upgraded to https,
Upgraded to https,
Upgraded to https,
Upgraded to https,
Upgraded to https
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
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, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
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
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
Failed
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party:
Upgraded to https,
Upgraded to https,
Upgraded to https,
Upgraded to https,
Upgraded to https
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
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, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
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
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, 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, 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, 2
result, different first party: 4, 4, 4, 4, 4
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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
Failed
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: 1, 2, 2, 1, 1
unsupported: false, false, false, false, false
passed: false, true, true, false, false
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
Failed
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: 1, 2, 2, 1, 2
unsupported: false, false, false, false, false
passed: false, true, true, false, 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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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, false
passed: undefined
test failed: true, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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, false
passed: undefined
test failed: true, true, true, true, true
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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'),
Error: undefined is not an object (evaluating 'queryResult.held[0].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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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'),
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'),
Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: undefined
test failed: true, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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,
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
Failed
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: 1, 2, 2, 1, 1
unsupported: false, false, false, false, false
passed: false, true, true, false, false
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
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
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
Failed
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: 1, 2, 2, 1, 2
unsupported: false, false, false, false, false
passed: false, true, true, false, 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,
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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
Failed
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: 1, 2, 2, 1, 1
unsupported: false, false, false, false, false
passed: false, true, true, false, false
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
Failed
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: 1, 2, 2, 1, 2
unsupported: false, false, false, false, false
passed: false, true, true, false, 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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
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: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: Can't find variable: message,
Error: Can't find variable: message,
Error: Can't find variable: message,
Error: Can't find variable: message,
Error: Can't find variable: message
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
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: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: Can't find variable: message,
Error: Can't find variable: message,
Error: Can't find variable: message,
Error: Can't find variable: message,
Error: Can't find variable: message
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
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: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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 messge = await messagePromise;
      if ((new URL(location)).searchParams.get("thirdparty") === "same") {
        if (message === "none") {
          throw new Error("Unsupported");
        }
      }
    }
result, same first party:
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined,
Error: message is not defined
result, different first party: undefined
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
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:
8e8a9303225d2cb7c89c6abb45805d2c4e56d69ed1324cc5befd39e25e657144,
163f72b7e5ec8ff8d74de699c464f6867a442d78e2b0eefed601899b0740725f,
5f7c655025a3fce9616a2a9688056047504033efa4987cab0598276ffe1012b4,
e828d79d1a50011e094bbaf309e1663c049553f01957ddd3af18c4cb1e77bdb2,
25ec1a0f221a6065fb68cee7f500d4de53e22cd59b6a932a926c6409c6fbd4f3
result, different first party:
d9e2ed0865e0d891e0a8fa410ed1c639645f49b1f2254a4f443b1000affbb612,
34cc43794ee527c9a70e30ea388b81cff821627815cc8b52ac9ca470abf62004,
e08264f9210dfec98747f2e199e6f8178342583da15db0f7f79ff72cc76b1dd8,
806cb918f6e629f49678540517592bd8c67546ab1e90ff9dcb788e6086236669,
f097ca31e1a7a5350d30bb2dacd3ab22179ce780ff7f5be7d03061bbd1bcdd8e
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:
1983da1e74b5b397241be088d35273ba7f35a8ea817a4f09502df2edd90d8ab5,
7912bbf9aa2ac5a0062b7f68d013e612c66f5ca91566ee473d6d1760a05ebf4c,
f636d73a889f139dcfaf6f270bd45b3dd1d621d5ff91da389fd6eaf1b8d0f438,
fdf4f9f05e6f12254a9b9d0272fd0bac44edef33b31bcfc13d9ccab0bf759ca8,
8bcbebf70ac3d823936d75762eda19812e1990460b2196b94d4ba1998ca2a77b
result, different first party:
d9af8ab9732f01b0ffe897bccc12bec72577e1dd358b0c701435eb7064445380,
2520325de8cec949126202487f3a40e8e2d522d3dc438b089eb31ed9dd542767,
e83cc03e1de916d5f415dc00882c76083b61eb6b05fd942f999e3d4ddf598384,
ef7c28c158fdf26ae0fb6a917d48498e1dc732a0f28eda8d42881409e19e55d0,
e210f0f8d33ac06b5bef4fa7215549b9c8eb583e60a1b48d647be1e92777af9c
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:
a6805864a20b4d14a92e94659d5a38e587aeeef29d790f2bbf26528c03d80efc,
fb7e58a28f42aef675289dd732f73511bb6aa5e2ef0092ab007cea81629379f8,
4e0bf0ec520f23dc49944ca8d187adccc8014fbee5202f5884191fbf79ae7fb8,
cb9ef0bbfec78d1f5c0a23d8b06baaae521c7c642e084d980e7a49e67cdd4399,
b5c7731884061e087f9da0322863c1d95cb2e2d35cfb9ce1e5d13cbae12d9f5e
result, different first party:
6fb77b9176b11836af8ada839062dfa76858a767d552cc9a95a586182f4ef71e,
3f484316cb5bda28274a7889f55e12636cb36f419b8fcca741c6dfc07bb1e2b5,
741d5743c91db50f894316a8206e954c3628ab289c8f86388bffab6e7eb185ab,
f6aba6245b5031dc4cd1e75ea683fbe55e9906a543550aca308cbcd24a28ba18,
502d5f1e86cad996e6a62900a2d03056e20b85bc9b263763646072930b7a177e
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:
7bb5e1aba9540366c1594e903424951d92b71fc479f07e94adae71269f3b67e5,
c0ed8000c47dc10e080306cf1714aac8e0521cb66b365dce190f0754f39ec51e,
96b282aaed7022fc64fa3b5f81b3cad07064f96d033a8d2d0362cb3da586bbfc,
f4e13bc25f3d933260a417753cc7b836b69d9788d45919b07f1972d7d7d729b4,
f3656e2f8b8c2757d4a29e09dd976c33af04b53aac162bf0dfb4f32c031dfd09
result, different first party:
a4a598481b5e5147b5e0f5472ebad7a2a0d365aa47c20d3572c618713f0ed513,
5bcacc224ba7eb6f09dfbf0e4d7eda731c46c397a84517ad32a7d2dd045f951b,
7a5a97f2dee1517286ff91fa47fef4349974dae8abb6ebe4da962cd5ad1c349d,
9399df7be45126a1659fcdf67a2789d3b81bd3012dc6b231bee5d6f02dac0d91,
d8a835f3b217969097c7bd6fc2cde9f091631b740f19530c8cca6e8dfecbf683
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:
4a99ba62920a1f4787cb7c970eb0dd9916ea1152f9d42dfaf6add416534712a5,
8d3b1bc68ac129b3a48e5569c78e39ae1afe7fbd61e3ee02bd5c41d30c574c2a,
744ad724d7a0e5259b10aa9e7b117109291314176307f8c2ef480e06a1d4cf8e,
eaf7688c198f0820aa4e46c2924ea934106aa440a6d4603aff57fd825e13bbe4,
bdfbeeaff954d8a715ed77e3e52381d04dc6b229ed224b14f0e4c85ec01db42a
result, different first party:
d1f4a2a1f4488a350121a330d20da031913a6f6eaba9c6a6d3e77fc1ef2b82ce,
c1d1414d98a3f8d729c4e4c70b63953480fc9aabe8122e8fbb8c5ff7613edc83,
5099e8f6c86ce8b0d82ee75b894621abe688d3f24206b7a78d72f65b070a6ae1,
0da5dace88046edeae63003ea62cb57deef3568d1c4a5426da002f9c892eb3a9,
2ac4c0d2081b0e95696bbca9d94dd5310a2307f8b3ae73590a8dc91adca7808f
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:
f57ff0db1c20a237195d89f843f42d1b61c48b08cd24d0e00982878e2b651bc9,
58d59aed38d5ba208addcdf25b0a7bae061a19ea91c4ecdcb5a4b137bc12cb19,
8da499a4ab613c71f3b45dfcfcc235da3959ae527e70a5a30e2d4172245d5beb,
96519b7eb08034fe1312989ec0cf1916839478beabb9ea08ad5912607a62d311,
f3aa995e97e29601e4b891c8cb37680afc979d2758d1651e066fcf31fbec4abc
result, different first party:
7f00682c1541f4d4bc0edf03289f404082a171b30f46e9849417f5d1415dbe1a,
3046167e611f09b88b7dbb792ac4568e3f53a0b29906acc6b36fdf4ddc172ff2,
53273e8686382ee8d71694960d8a20f71cea2de2507a401edb638291a89d6647,
8c009bcaf6f430f077799a572b505a94a9fcab77fbbc37bc123cd4796bd94eca,
5e3e100ccf383d6e34f519e79b35fe54a2dd421c46586794bd8096fb874d16a0
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:
7a6e224fb50a9066064a364c7f3dd04c6daa4587ff4e730aa0e6b83234de87db,
bd39dd350e07ed45aee42b5bfe4b9c5db906c8960329ac6cf79dc0b388788064,
74d46f2f07d72b87e30d7612986183c6a12531436b74860c19b59ae25f3e0edd,
bf17a08f0bee953f0ec9702018473d0729710b329eb4a9d5ad5ecea1bbac22ee,
2e0625746249996449f9397896a1e03ee7b9cfbb8a27575d8330a3147755e305
result, different first party:
cc82be6d6719a45c59b1928adfd0618882c8c5b66fa7f63b569865642dea2a7d,
34d33ea11862f53e04018f521fd621a15f6164d91d8068af91bc6f8a04a33e44,
f568a422b08cc2c2e5c404d83311763e58502374361a52577d7ae37bf2dce692,
7c084be19bee73e29965cebd1ba5acc6fed0a74df83dfb249ac5586318a5a305,
4ed0848e35d8ab3b07f5ac07db7a2e60a70fd548d83f30224e8f6ef82f22b96f
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:
d899832c732eacbcb3aead730aa54740fe1451e96ffaeea245a0f49c93da5e04,
b0634fd30c27db9ecbac19f875a3e1ba0ae2f5bc73ef70e19600e30936d88193,
50c3f684b29d2c80ed7eb976a8c1a4709c86b8b63b3a93534687f5e86f158f5a,
558b4611cc232b98a31ab0f9d68a07726cbc8c48116dcf376c6db02169a033b5,
812b35fbb64c8672320edc494442cb9d1f8bccdc5ca05990f55505bd77a3366b
result, different first party:
7f2e73d46f17fd24e3111d246872de0d035b27e2e1e055987cf26dadfc587a21,
56e2d49e6d2a108e56e4b9077ec02aa81213308461f7e6f0d2f8d7daf5f1ae85,
82194e8b5966182dafbdb93ce052b18fbe3ee95a477e8db059c9f69c30de8df7,
59c2362c627dc2cb9d91767820aeb1864a8e532bdc93b5e9d8cb893d4259baf6,
06b42ed1b7462978451b1cd312ba8a49bc38df348b8701fa8e62465e5c020484
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:
8c7de991d69dd7b8dbff0946ef9c8deb34d6a7bec609b763117e35217bb85f07,
1578015866e8c217d7f73cb15eaae80a35f05d15c657779e6382491512f16d63,
bdc42839f5ece1d2ea3fd48a3255e066bef7011400466ac8493aa7e2509d10f8,
5a14ec2784e1ddf40ea4ca7ad07b063d4adf43c26b7579b9e30989308d8ee8de,
0f8e15825a1c3d029dda517eaecdd74b1a1730089bd833437dd62a73bbb6c8ba
result, different first party:
46992c65da5ea2e89fc8f1097e556be36d750e7b5c1797752b5b78add3a16f69,
53764cf8e91c19c35c5ee2ff7755253ec3fe774dd7c9557c0a9fc53933c1fa74,
d0267a16a1198d0b50042031ce1a790457fd1cc384eff962dbc228a97ca10b31,
7244e717c464ea2f3c5f401c4878a3261b3b36f829c246398a2607fcf7a00521,
d3492a9a7a9193bc40f981bfc89379f90f28d9ac62ea25e5b3912c66f6a84da7
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:
144bc7422be1820ace4983a52c5ab2fb50dbc7b71b5cb9d09eb96c0188d69b65,
b2c46a4779cea3c4829b4d41124ad95fa6660500c412e12ef0c9b19f3db1e312,
487b373b3659fdf3466413ee922b0e1da0e411d3af6984e83cf472e4bde01a56,
ac4aaf5ead86c5aeb718301e9c11b87039b521656a2120c7f73e9c73d45a42f5,
bcc92a6c1e8db52c2215fae16dc0890babe192667accc6e0de41c8f1062b359d
result, different first party:
d445bfa48b5aaec2fec7fed8d76cb29fcf3f4a9d6067a27482584a7e06fb02d7,
1334f2db6d489b3ea720d8ae11ff2abbcf1f4688f3cafd5165ced589af5a957d,
1ef2211f2572ed2b98f27b01434ca5e12a94740bd4f98f930f0dbbf0962769e6,
21d6892d2b218cd7c77e6324c182120b10507f3b99a18938f309a4331f737fb3,
db3082a059e2098b56dfac2aac5c3f5713816899b774d6b207de3041cd3d20f0
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:
be6b555eb51614a9379e9b3284b2d2e91264dd80d9ece1ac5c6339e8657ea0bc,
8d040920c9ebe5a9cf235a474a98c04eb51edebd6eef3e5ff6e53bd2f34c341b,
100c5ce3ed8437aadf9a7fdb31d4fd979ff4ae9a733bca34632dcb122b3b79a6,
c45fd5f8c8f76011dc7ddb7e093da61012f70db7229da8b6cf38617f61f8fe90,
3e5c31d7fab4df0b3b622ce85d681518b15503da5de85e8e469282cf78db8427
result, different first party:
1c3d1b21c3dcfe257ef40e6c8b12cce6928cafefa00b9a838114a3794cd7174c,
956b62d3da4ecd6ef951ace473f8cd7189da35b411ec0d068e3da75b7b665f71,
a2dd2816717e24f924885bd6c6a2acb5fc3b5a8e10e1297c474ba0d3027a283e,
d3834fa40fe1b4f37aa88952a236e8796ab3f68f86c56c1b36e5e6203eeb7fa3,
d2157f15e7bb984100803e1f23011746df422f2f77c047b0bdb62e5f50112c4d
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:
5a737b71d6b732fbaab257bccac0de23e3cbb1ecc52b4e1c0189db46b194d17f,
d3c277081db72a547cfec4a5471872e969f278485a2e6db87ad94908a9c92146,
8c77368cb691c0ff2c9ea8466cec638ccbab55df1e0c5b921265d676b52fd066,
669612af19f15716c72acd6f72fb4407fde3e2cf4af3acf95614d1bb6899f35e,
4c5c449eb37b44cfed0bd700d7c5707f64500d09bbb14bc67a746954a9a89a0b
result, different first party:
880da4832d2945e19329fdee441bb70829ee8a8fb61cc4e9681bb7b109bc891f,
81f3a7f79d9cfaa45999237c7d81856e4f95e05990f7ff895361ee8c200d835b,
761e60e28f8bea9357e36083b5ebfff893aab9ed6f029912da547a4e0771817e,
be3e822921791664b1abc35aaf45dbfce29dff8f778e90b69505df4a88040286,
654eaaafe9feee46c15e4539f83e47fe48a9e70d7f6059f2a6de9b75679fc4ad
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:
216b34c3e63a5f11b58f7de7214f29cda06cea4de1a843f5555637cc04b42c11,
f6012647ef489a9297e358c383ddd565a4ae3419dd06369d434b930bbddfd40c,
e38e7b179fc375e8dfa20b32f1af982e94df8eedc626f0ffc076a2cab0e59706,
ed8872262db005da2013689ffa8647672b9609c707e61c3a6d0885e22f7d4483,
b2bca235fe5aac529becc55452e0c479a6bf30fd33f2e19b6689a0601152d8d0
result, different first party:
f5860680c36a2d9aa8ac8a6c65f3f41eb9c2f7c52858c73efa2459da4590f876,
46ca176238655903600b99d379268447a4b86ac26af602ecdcb3d373e5c08c79,
75acb547adceaa6b860b3c99b0768e30f4e043aa99c111a30c709408d02dc86c,
5b26120ec50695664b046866d68be37649a3d6c4533e25152d7656f2be0190c0,
72646d5194beee5c11e11f10edaf28516b89e641ed4bf7ba12e532ec4118279d
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, 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, 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, 2
result, different first party: 4, 4, 4, 4, 4
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
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/,
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/,
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/,
https://test-pages.privacytests2.org/
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) => { /* 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
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:
2dffac32-1b96-4893-acce-1f154e14c80b,
20f77feb-0d7f-4110-a294-2bc3985b290f,
bbea30bd-e930-4495-a5b5-05038ee0952d,
5eca4ee7-3717-4b9f-9504-e43bd8f56427,
c981c730-2b62-48a3-abcd-b8940c280a7f
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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
ed412c57-a864-4fc8-822a-3f0cc8f20155
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:
d860a2ee-9c33-445e-beea-fe9723a15eaf,
a98593fa-ab88-41aa-b892-3df1b0bd093c,
b5674964-9e81-4918-9741-84eca3616cc3,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc,
12294c42-5770-4956-ae01-aa7b8322f552,
e398fa75-1f07-40d6-95da-226c0e17ffd9,
13c2b455-aca8-4424-b8fd-1186afc95de1,
06ca0285-7ed8-465a-a63e-274ed2bb310d
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c,
0e953b7f-bd90-4327-9075-399aa4eea32c,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
f9bedd3b-6650-4266-97d0-29320e8acc9e,
f159916b-d9c0-4b92-90c9-68ed38c512ad
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
219d8ef0-3e36-4297-aaca-444b962d7a1e,
92054eb7-13b5-4026-8bb8-25ed7004a376,
48b25e53-04fd-45d8-b818-64393590b7b3,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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:
8d4885cc-cd9b-402d-b001-47261fb92f40,
6dcfbe83-b04c-44ae-aa06-949aa154938e,
d931c26d-3182-425c-8a5d-d92dea5707b5,
89d9c8a7-e43e-4173-994c-a0917d700921,
57cc38cd-3f5c-441e-93da-91c5c7a11aae
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:
bceed89c-a60b-47aa-beba-9ee88280f27c,
2791e823-749a-4115-bff5-3c5c920fdf23,
71ce156c-a2de-4a24-ac62-4972f5c77cc4,
5e93438a-f041-4508-9c1f-5f29e736e407,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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:
13ac6d86-c860-46d2-b61a-e8377f56195b,
27d1d689-d5d5-4723-9ff5-b18cbe32324d,
9946e862-e92b-4719-93dd-98d22c10db1c,
8c08cae1-f687-491a-b882-c57360eae1bb,
de21c995-30d7-4d37-a01a-f25329357400
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:
75369d59-e262-4aa8-a261-47b5ff9911af,
5eac5d85-2cd1-4319-9544-d97e9fc0f19b,
962f2da8-c786-4cc3-b6b0-463fe6c3fcc6,
0655a5d5-4758-4ee1-a5ac-075d215ff4a1,
80e6a8dd-d6d8-479e-bd3c-16fe22452d78
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:
8ece4aff-5f56-493c-ba40-120ed8b42524,
1b1df719-b259-4eaf-9074-9e0150513637,
b3e86eb6-857d-45ff-898c-6d3543e1f050,
e583a492-e900-4957-ba9e-546d83d76dbb,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
24555dd0-615f-4b3e-a62c-5c934d312af4,
16b29286-9796-483e-a475-40cdb7b0c7cb,
953b5134-bc01-4f36-a1df-6af87d70dfb8
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:
666edc2f-acc1-404b-8240-8edb19677bc3,
f8c42a30-d188-4078-a45b-7b22a09b859b,
05768100-0198-45a2-899f-98ad5f33cf20,
432e87ea-e304-4607-9536-4f7046c69b0d,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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_2dffac32-1b96-4893-acce-1f154e14c80b,
name_20f77feb-0d7f-4110-a294-2bc3985b290f,
name_bbea30bd-e930-4495-a5b5-05038ee0952d,
name_5eca4ee7-3717-4b9f-9504-e43bd8f56427,
name_c981c730-2b62-48a3-abcd-b8940c280a7f
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_29cf03b5-7dfe-4a98-84bc-2fc6e80b2936,
name_1089c2a9-23ce-4b57-b8e0-651cd045f7ba,
name_e16988de-8d46-4d3f-9d41-4bf00d66bc7e,
name_c3dcbd6a-ac8d-40a8-86db-55295a442fe8,
name_ed412c57-a864-4fc8-822a-3f0cc8f20155
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_d860a2ee-9c33-445e-beea-fe9723a15eaf,
name_a98593fa-ab88-41aa-b892-3df1b0bd093c,
name_b5674964-9e81-4918-9741-84eca3616cc3,
name_61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
name_04c73666-ca08-4b55-a7ff-cd01d91ad7d2
result, different first party:
name_d860a2ee-9c33-445e-beea-fe9723a15eaf,
name_a98593fa-ab88-41aa-b892-3df1b0bd093c,
name_b5674964-9e81-4918-9741-84eca3616cc3,
name_61ac3ae7-ab7d-41a9-a96d-cad52512d1cd,
name_04c73666-ca08-4b55-a7ff-cd01d91ad7d2
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_bbe1f672-5dfe-4fe0-b879-19576ff448cc,
name_12294c42-5770-4956-ae01-aa7b8322f552,
name_e398fa75-1f07-40d6-95da-226c0e17ffd9,
name_13c2b455-aca8-4424-b8fd-1186afc95de1,
name_06ca0285-7ed8-465a-a63e-274ed2bb310d
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_0555b4d6-9494-468e-a4d1-02e172d15a1c,
name_0e953b7f-bd90-4327-9075-399aa4eea32c,
name_91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
name_f9bedd3b-6650-4266-97d0-29320e8acc9e,
name_f159916b-d9c0-4b92-90c9-68ed38c512ad
result, different first party:
name_0555b4d6-9494-468e-a4d1-02e172d15a1c,
name_0e953b7f-bd90-4327-9075-399aa4eea32c,
name_91e213e3-6ab7-42f7-b0fd-5ab23e4ee004,
name_f9bedd3b-6650-4266-97d0-29320e8acc9e,
name_f159916b-d9c0-4b92-90c9-68ed38c512ad
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_95d80c7e-a20f-4e10-abdc-5c4f950fda8f,
name_219d8ef0-3e36-4297-aaca-444b962d7a1e,
name_92054eb7-13b5-4026-8bb8-25ed7004a376,
name_48b25e53-04fd-45d8-b818-64393590b7b3,
name_b19912c8-0664-4fe7-85e2-7e0e6e0917ef
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_8d4885cc-cd9b-402d-b001-47261fb92f40,
name_6dcfbe83-b04c-44ae-aa06-949aa154938e,
name_d931c26d-3182-425c-8a5d-d92dea5707b5,
name_89d9c8a7-e43e-4173-994c-a0917d700921,
name_57cc38cd-3f5c-441e-93da-91c5c7a11aae
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_bceed89c-a60b-47aa-beba-9ee88280f27c,
name_2791e823-749a-4115-bff5-3c5c920fdf23,
name_71ce156c-a2de-4a24-ac62-4972f5c77cc4,
name_5e93438a-f041-4508-9c1f-5f29e736e407,
name_fd4003e1-ed4b-47bc-aa28-7aba152c5b43
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_13ac6d86-c860-46d2-b61a-e8377f56195b,
name_27d1d689-d5d5-4723-9ff5-b18cbe32324d,
name_9946e862-e92b-4719-93dd-98d22c10db1c,
name_8c08cae1-f687-491a-b882-c57360eae1bb,
name_de21c995-30d7-4d37-a01a-f25329357400
result, different first party:
name_13ac6d86-c860-46d2-b61a-e8377f56195b,
name_27d1d689-d5d5-4723-9ff5-b18cbe32324d,
name_9946e862-e92b-4719-93dd-98d22c10db1c,
name_8c08cae1-f687-491a-b882-c57360eae1bb,
name_de21c995-30d7-4d37-a01a-f25329357400
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_75369d59-e262-4aa8-a261-47b5ff9911af,
name_5eac5d85-2cd1-4319-9544-d97e9fc0f19b,
name_962f2da8-c786-4cc3-b6b0-463fe6c3fcc6,
name_0655a5d5-4758-4ee1-a5ac-075d215ff4a1,
name_80e6a8dd-d6d8-479e-bd3c-16fe22452d78
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_8ece4aff-5f56-493c-ba40-120ed8b42524,
name_1b1df719-b259-4eaf-9074-9e0150513637,
name_b3e86eb6-857d-45ff-898c-6d3543e1f050,
name_e583a492-e900-4957-ba9e-546d83d76dbb,
name_f4a6da67-ba9b-4522-b2fc-f012dfa922a5
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_72d38d84-a897-4546-ac22-4bbd4404fc4f,
name_9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
name_24555dd0-615f-4b3e-a62c-5c934d312af4,
name_16b29286-9796-483e-a475-40cdb7b0c7cb,
name_953b5134-bc01-4f36-a1df-6af87d70dfb8
result, different first party:
name_72d38d84-a897-4546-ac22-4bbd4404fc4f,
name_9ff9bbcb-235d-4b5b-8d49-62928c8f4a89,
name_24555dd0-615f-4b3e-a62c-5c934d312af4,
name_16b29286-9796-483e-a475-40cdb7b0c7cb,
name_953b5134-bc01-4f36-a1df-6af87d70dfb8
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_666edc2f-acc1-404b-8240-8edb19677bc3,
name_f8c42a30-d188-4078-a45b-7b22a09b859b,
name_05768100-0198-45a2-899f-98ad5f33cf20,
name_432e87ea-e304-4607-9536-4f7046c69b0d,
name_a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
result, different first party:
name_666edc2f-acc1-404b-8240-8edb19677bc3,
name_f8c42a30-d188-4078-a45b-7b22a09b859b,
name_05768100-0198-45a2-899f-98ad5f33cf20,
name_432e87ea-e304-4607-9536-4f7046c69b0d,
name_a7356d63-74ae-4dc6-b65b-b845cbbd3cd5
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
Failed
passed: false, false, false, false, false
result:
Insecure website loaded,
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, false
result:
Insecure website loaded,
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
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, false
result:
Insecure website loaded,
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
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
Failed
upgraded: false, false, false, false, false
passed: false, false, false, false, false
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, 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, 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
Failed
upgraded: false, false, false, false, false
passed: false, false, false, false, false
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, 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, 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, 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, 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, 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, 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: 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: 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: upgraded, upgraded, upgraded, upgraded, upgraded
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
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
Passed
SNI_status: encrypted
passed: true, true, true, true, true
Failed
SNI_status: plaintext
passed: false, false, false, false, false
Passed
SNI_status: encrypted
passed: true, true, true, true, true
Failed
SNI_status: encrypted
passed: true, true, true, true, false
Failed
SNI_status: plaintext
passed: false, false, false, false, false
Passed
SNI_status: encrypted
passed: true, true, true, true, true
Passed
SNI_status: encrypted
passed: true, true, true, true, true
Failed
SNI_status: plaintext
passed: false, false, false, false, false
Failed
SNI_status: plaintext
passed: false, false, false, false, false
Failed
SNI_status: plaintext
passed: false, true, true, true, true
Passed
SNI_status: encrypted
passed: true, true, true, true, 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
Passed
header value: 1
passed: true, true, true, true, true
Failed
header value: undefined
passed: false, false, false, false, false
Passed
header value: 1
passed: true, true, true, true, true
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, true
Failed
header value: undefined
passed: false, false, false, false, false
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
Failed
passed: false, false, false, false, false
Passed
sec-gpc: 1
passed: true, true, true, true, true
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, true
Failed
passed: false, false, false, false, false
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, true, false, true, true
Passed
passed: true, true, true, true, true
Failed
passed: false, false, false, false, true
Failed
passed: false, true, false, true, false
Failed
passed: false, false, false, false, false
Failed
passed: true, false, false, true, true
Failed
passed: true, false, false, true, false
Failed
passed: true, false, false, false, true
Failed
passed: true, true, false, true, true
Failed
passed: false, true, true, false, false
Passed
passed: true, true, true, true, true
Failed
passed: false, true, false, false, false
Failed
passed: true, false, false, true, true
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:
107.189.8.133,
185.220.101.161,
185.220.101.1,
37.114.63.5,
192.42.116.145
readDifferentFirstParty:
109.70.100.1,
205.185.121.177,
192.42.116.94,
188.68.52.231,
203.55.81.2
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, 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, 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, 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
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:
2a0b:f4c2::13,
2001:67c:e60:c0c:192:42:116:13,
2001:67c:e60:c0c:192:42:116:42,
2001:67c:e60:c0c:192:42:116:104,
2001:67c:e60:c0c:192:42:116:145
readDifferentFirstParty:
2001:67c:e60:c0c:192:42:116:42,
2001:67c:e60:c0c:192:42:116:115,
2001:67c:e60:c0c:192:42:116:93,
2a03:4000:27:36:c813:6dff:fe0e:b93e,
107.189.29.184
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
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').`,
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
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,true
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
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
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 6092011535819355
passed: false, false, false, false, false
Failed
value: 6092011535819355
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
Passed
url: 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
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
Passed
url: https://munchkin.marketo.net/munchkin.js
passed: true, true, true, true, true
Passed
url: https://munchkin.marketo.net/munchkin.js
Passed
url: https://munchkin.marketo.net/munchkin.js
Failed
url: https://munchkin.marketo.net/munchkin.js
passed: , false
Failed
url: https://munchkin.marketo.net/munchkin.js
passed: , false
Passed
url: https://munchkin.marketo.net/munchkin.js
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
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
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
Passed
url: https://dpm.demdex.net/ibs
passed: true, true, true, true, true
Failed
url: https://dpm.demdex.net/ibs
passed: , false, false, false
Passed
url: https://dpm.demdex.net/ibs
Failed
url: https://dpm.demdex.net/ibs
passed: false, false, false, false, false
Failed
url: https://dpm.demdex.net/ibs
passed: false, false, false
Failed
url: https://dpm.demdex.net/ibs
passed: 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
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
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
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
Passed
url: https://s.amazon-adsystem.com/dcm
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
Failed
url: https://s.amazon-adsystem.com/dcm
passed: 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
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
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
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
Passed
url: https://ib.adnxs.com/px?id=178248&t=1
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
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
Passed
url: https://bat.bing.com/bat.js
passed: true, true, true, true, true
Passed
url: 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
Passed
url: https://bat.bing.com/bat.js
passed: true, true, true, true, true
Failed
url: https://bat.bing.com/bat.js
passed: , false
Passed
url: https://bat.bing.com/bat.js
Failed
url: https://bat.bing.com/bat.js
passed: , false
Failed
url: https://bat.bing.com/bat.js
passed: false, false
Failed
url: https://bat.bing.com/bat.js
passed: 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
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, true
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
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
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
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
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
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
Passed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
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
Failed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: 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
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
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
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
url: https://securepubads.g.doubleclick.net/static/glade.js
Passed
url: https://securepubads.g.doubleclick.net/static/glade.js
Failed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: , false
Failed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: , 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
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
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
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
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
Failed
url: https://connect.facebook.net/en_US/fbevents.js
passed: 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
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
Passed
url: 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
Passed
url: https://www.google.com/pagead/1p-user-list/
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: , false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: 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
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
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
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
Passed
url: https://google-analytics.com/urchin.js
passed: true, true, true, true, true
Passed
url: https://google-analytics.com/urchin.js
Failed
url: https://google-analytics.com/urchin.js
passed: false, false
Failed
url: https://google-analytics.com/urchin.js
passed: 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
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
Passed
url: 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
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
Failed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false, false, false
Failed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: 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
Passed
url: 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
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false
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
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
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
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false, false
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: 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
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
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
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
Passed
url: https://js-agent.newrelic.com/nr-1212.min.js
Failed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: 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
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
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
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true, true
Failed
url: https://pixel.quantserve.com/pixel
passed: , false
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
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true, true
Failed
url: https://pixel.quantserve.com/pixel
passed: , false
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
Passed
url: https://pixel.quantserve.com/pixel
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
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
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
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
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
Passed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
Passed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
Passed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
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
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
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
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
Passed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
Passed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
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
Passed
url: https://t.co/i/adsct
passed: true, true, true, true, true
Failed
url: https://t.co/i/adsct
passed: false, false
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
Passed
url: https://t.co/i/adsct
passed: true, true, true, true, true
Failed
url: https://t.co/i/adsct
passed: false, false
Passed
url: https://t.co/i/adsct
Failed
url: https://t.co/i/adsct
passed: false, false, false
Failed
url: https://t.co/i/adsct
passed: false, false, false
Failed
url: https://t.co/i/adsct
passed: 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, false
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
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
Passed
url: https://yandex.ru/ads/system/header-bidding.js
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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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
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
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
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
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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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
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
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
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
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
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
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
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
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, 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, 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, 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
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
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
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
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, 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, 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, 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
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
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
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
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, 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, 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, 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
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
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
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
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, 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, 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, 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
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: h3, h3, h3, h3, h3
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, 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, 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
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
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:
2dffac32-1b96-4893-acce-1f154e14c80b_1p,
20f77feb-0d7f-4110-a294-2bc3985b290f_1p,
bbea30bd-e930-4495-a5b5-05038ee0952d_1p,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_1p,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_1p,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_1p,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_1p,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_1p,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_1p,
a98593fa-ab88-41aa-b892-3df1b0bd093c_1p,
b5674964-9e81-4918-9741-84eca3616cc3_1p,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_1p,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_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
Failed
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p,
12294c42-5770-4956-ae01-aa7b8322f552_1p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p
result, different session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p,
12294c42-5770-4956-ae01-aa7b8322f552_1p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c_1p,
0e953b7f-bd90-4327-9075-399aa4eea32c_1p,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_1p,
f9bedd3b-6650-4266-97d0-29320e8acc9e_1p,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_1p,
219d8ef0-3e36-4297-aaca-444b962d7a1e_1p,
92054eb7-13b5-4026-8bb8-25ed7004a376_1p,
48b25e53-04fd-45d8-b818-64393590b7b3_1p,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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,
Error: can't access property "url",
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:
8d4885cc-cd9b-402d-b001-47261fb92f40_1p,
6dcfbe83-b04c-44ae-aa06-949aa154938e_1p,
d931c26d-3182-425c-8a5d-d92dea5707b5_1p,
89d9c8a7-e43e-4173-994c-a0917d700921_1p,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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,
Error: can't access property "url",
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:
bceed89c-a60b-47aa-beba-9ee88280f27c_1p,
2791e823-749a-4115-bff5-3c5c920fdf23_1p,
71ce156c-a2de-4a24-ac62-4972f5c77cc4_1p,
5e93438a-f041-4508-9c1f-5f29e736e407_1p,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43_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,
Error: can't access property "url",
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:
13ac6d86-c860-46d2-b61a-e8377f56195b_1p,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_1p,
9946e862-e92b-4719-93dd-98d22c10db1c_1p,
8c08cae1-f687-491a-b882-c57360eae1bb_1p,
de21c995-30d7-4d37-a01a-f25329357400_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'),
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'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url')
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:
8ece4aff-5f56-493c-ba40-120ed8b42524_1p,
1b1df719-b259-4eaf-9074-9e0150513637_1p,
b3e86eb6-857d-45ff-898c-6d3543e1f050_1p,
e583a492-e900-4957-ba9e-546d83d76dbb_1p,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5_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,
Error: can't access property "url",
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_1p,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_1p,
24555dd0-615f-4b3e-a62c-5c934d312af4_1p,
16b29286-9796-483e-a475-40cdb7b0c7cb_1p,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_1p,
f8c42a30-d188-4078-a45b-7b22a09b859b_1p,
05768100-0198-45a2-899f-98ad5f33cf20_1p,
432e87ea-e304-4607-9536-4f7046c69b0d_1p,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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:
2dffac32-1b96-4893-acce-1f154e14c80b_1p_http,
20f77feb-0d7f-4110-a294-2bc3985b290f_1p_http,
bbea30bd-e930-4495-a5b5-05038ee0952d_1p_http,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_1p_http,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_1p_http,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_1p_http,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_1p_http,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_1p_http,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_1p_http,
a98593fa-ab88-41aa-b892-3df1b0bd093c_1p_http,
b5674964-9e81-4918-9741-84eca3616cc3_1p_http,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_1p_http,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_1p_http
result, different session: , , , ,
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 session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p_http,
12294c42-5770-4956-ae01-aa7b8322f552_1p_http,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p_http,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p_http,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p_http
result, different session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p_http,
12294c42-5770-4956-ae01-aa7b8322f552_1p_http,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p_http,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p_http,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p_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 session:
0555b4d6-9494-468e-a4d1-02e172d15a1c_1p_http,
0e953b7f-bd90-4327-9075-399aa4eea32c_1p_http,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_1p_http,
f9bedd3b-6650-4266-97d0-29320e8acc9e_1p_http,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_1p_http,
219d8ef0-3e36-4297-aaca-444b962d7a1e_1p_http,
92054eb7-13b5-4026-8bb8-25ed7004a376_1p_http,
48b25e53-04fd-45d8-b818-64393590b7b3_1p_http,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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:
8d4885cc-cd9b-402d-b001-47261fb92f40_1p_http,
6dcfbe83-b04c-44ae-aa06-949aa154938e_1p_http,
d931c26d-3182-425c-8a5d-d92dea5707b5_1p_http,
89d9c8a7-e43e-4173-994c-a0917d700921_1p_http,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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:
bceed89c-a60b-47aa-beba-9ee88280f27c_1p_http,
2791e823-749a-4115-bff5-3c5c920fdf23_1p_http,
71ce156c-a2de-4a24-ac62-4972f5c77cc4_1p_http,
5e93438a-f041-4508-9c1f-5f29e736e407_1p_http,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43_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:
13ac6d86-c860-46d2-b61a-e8377f56195b_1p_http,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_1p_http,
9946e862-e92b-4719-93dd-98d22c10db1c_1p_http,
8c08cae1-f687-491a-b882-c57360eae1bb_1p_http,
de21c995-30d7-4d37-a01a-f25329357400_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, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524_1p_http,
1b1df719-b259-4eaf-9074-9e0150513637_1p_http,
b3e86eb6-857d-45ff-898c-6d3543e1f050_1p_http,
e583a492-e900-4957-ba9e-546d83d76dbb_1p_http,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5_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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_1p_http,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_1p_http,
24555dd0-615f-4b3e-a62c-5c934d312af4_1p_http,
16b29286-9796-483e-a475-40cdb7b0c7cb_1p_http,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_1p_http,
f8c42a30-d188-4078-a45b-7b22a09b859b_1p_http,
05768100-0198-45a2-899f-98ad5f33cf20_1p_http,
432e87ea-e304-4607-9536-4f7046c69b0d_1p_http,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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:
2dffac32-1b96-4893-acce-1f154e14c80b_1p_js,
20f77feb-0d7f-4110-a294-2bc3985b290f_1p_js,
bbea30bd-e930-4495-a5b5-05038ee0952d_1p_js,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_1p_js,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_1p_js,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_1p_js,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_1p_js,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_1p_js,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_1p_js,
a98593fa-ab88-41aa-b892-3df1b0bd093c_1p_js,
b5674964-9e81-4918-9741-84eca3616cc3_1p_js,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_1p_js,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_1p_js
result, different session: , , , ,
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 session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p_js,
12294c42-5770-4956-ae01-aa7b8322f552_1p_js,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p_js,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p_js,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p_js
result, different session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p_js,
12294c42-5770-4956-ae01-aa7b8322f552_1p_js,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p_js,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p_js,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p_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 session:
0555b4d6-9494-468e-a4d1-02e172d15a1c_1p_js,
0e953b7f-bd90-4327-9075-399aa4eea32c_1p_js,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_1p_js,
f9bedd3b-6650-4266-97d0-29320e8acc9e_1p_js,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_1p_js,
219d8ef0-3e36-4297-aaca-444b962d7a1e_1p_js,
92054eb7-13b5-4026-8bb8-25ed7004a376_1p_js,
48b25e53-04fd-45d8-b818-64393590b7b3_1p_js,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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:
8d4885cc-cd9b-402d-b001-47261fb92f40_1p_js,
6dcfbe83-b04c-44ae-aa06-949aa154938e_1p_js,
d931c26d-3182-425c-8a5d-d92dea5707b5_1p_js,
89d9c8a7-e43e-4173-994c-a0917d700921_1p_js,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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:
bceed89c-a60b-47aa-beba-9ee88280f27c_1p_js,
2791e823-749a-4115-bff5-3c5c920fdf23_1p_js,
71ce156c-a2de-4a24-ac62-4972f5c77cc4_1p_js,
5e93438a-f041-4508-9c1f-5f29e736e407_1p_js,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43_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:
13ac6d86-c860-46d2-b61a-e8377f56195b_1p_js,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_1p_js,
9946e862-e92b-4719-93dd-98d22c10db1c_1p_js,
8c08cae1-f687-491a-b882-c57360eae1bb_1p_js,
de21c995-30d7-4d37-a01a-f25329357400_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, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524_1p_js,
1b1df719-b259-4eaf-9074-9e0150513637_1p_js,
b3e86eb6-857d-45ff-898c-6d3543e1f050_1p_js,
e583a492-e900-4957-ba9e-546d83d76dbb_1p_js,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5_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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_1p_js,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_1p_js,
24555dd0-615f-4b3e-a62c-5c934d312af4_1p_js,
16b29286-9796-483e-a475-40cdb7b0c7cb_1p_js,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_1p_js,
f8c42a30-d188-4078-a45b-7b22a09b859b_1p_js,
05768100-0198-45a2-899f-98ad5f33cf20_1p_js,
432e87ea-e304-4607-9536-4f7046c69b0d_1p_js,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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:
2dffac32-1b96-4893-acce-1f154e14c80b_1p,
20f77feb-0d7f-4110-a294-2bc3985b290f_1p,
bbea30bd-e930-4495-a5b5-05038ee0952d_1p,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_1p,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_1p,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_1p,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_1p,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_1p,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_1p,
a98593fa-ab88-41aa-b892-3df1b0bd093c_1p,
b5674964-9e81-4918-9741-84eca3616cc3_1p,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_1p,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_1p
result, different session: , , , ,
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 session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p,
12294c42-5770-4956-ae01-aa7b8322f552_1p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p
result, different session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p,
12294c42-5770-4956-ae01-aa7b8322f552_1p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p
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 session:
0555b4d6-9494-468e-a4d1-02e172d15a1c_1p,
0e953b7f-bd90-4327-9075-399aa4eea32c_1p,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_1p,
f9bedd3b-6650-4266-97d0-29320e8acc9e_1p,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_1p,
219d8ef0-3e36-4297-aaca-444b962d7a1e_1p,
92054eb7-13b5-4026-8bb8-25ed7004a376_1p,
48b25e53-04fd-45d8-b818-64393590b7b3_1p,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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:
8d4885cc-cd9b-402d-b001-47261fb92f40_1p,
6dcfbe83-b04c-44ae-aa06-949aa154938e_1p,
d931c26d-3182-425c-8a5d-d92dea5707b5_1p,
89d9c8a7-e43e-4173-994c-a0917d700921_1p,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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:
bceed89c-a60b-47aa-beba-9ee88280f27c_1p,
2791e823-749a-4115-bff5-3c5c920fdf23_1p,
71ce156c-a2de-4a24-ac62-4972f5c77cc4_1p,
5e93438a-f041-4508-9c1f-5f29e736e407_1p,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43_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:
13ac6d86-c860-46d2-b61a-e8377f56195b_1p,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_1p,
9946e862-e92b-4719-93dd-98d22c10db1c_1p,
8c08cae1-f687-491a-b882-c57360eae1bb_1p,
de21c995-30d7-4d37-a01a-f25329357400_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: , , , ,
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:
8ece4aff-5f56-493c-ba40-120ed8b42524_1p,
1b1df719-b259-4eaf-9074-9e0150513637_1p,
b3e86eb6-857d-45ff-898c-6d3543e1f050_1p,
e583a492-e900-4957-ba9e-546d83d76dbb_1p,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5_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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_1p,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_1p,
24555dd0-615f-4b3e-a62c-5c934d312af4_1p,
16b29286-9796-483e-a475-40cdb7b0c7cb_1p,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_1p,
f8c42a30-d188-4078-a45b-7b22a09b859b_1p,
05768100-0198-45a2-899f-98ad5f33cf20_1p,
432e87ea-e304-4607-9536-4f7046c69b0d_1p,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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_3650114287796731,
fake_6547935326359784,
fake_5320885403517015,
fake_38181145283263773,
fake_19364400623100142
result, different session:
fake_04745227593090684,
fake_3577172425144457,
fake_20130831013626094,
fake_8120536358977393,
fake_7345272942033207
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_46693697360186204,
fake_4467067238932019,
fake_31911527774148984,
fake_5190489445178053,
fake_7929727498962065
result, different session:
fake_4834583912483854,
fake_37210861953545904,
fake_21637039009922887,
fake_8523318410890628,
fake_6858656498951456
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_3524469684462377,
fake_45718781729512403,
fake_3379472565355073,
fake_17729347562157494,
fake_45308083965822
result, different session:
fake_5931149627481362,
fake_6429509096877384,
fake_941536321686949,
fake_8045853009012021,
fake_9143646049223608
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
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_7507690703282903,
fake_9384365798426131,
fake_13461355031214617,
fake_2278999180889163,
fake_7902749321449476
result, different session:
fake_7507690703282903,
fake_9384365798426131,
fake_13461355031214617,
fake_2278999180889163,
fake_7902749321449476
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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_0013590276872104123,
fake_591784858730894,
fake_004435546795149792,
fake_11100577932759359,
fake_22674026694585736
result, different session:
fake_28819805893765404,
fake_9563751041787769,
fake_608350566026121,
fake_7649854859268914,
fake_6951365418761011
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_1991006760705165,
fake_5939720559695887,
fake_41018048846064303,
fake_6230004791432391,
fake_05393861833935443
result, different session:
fake_38468479418013724,
fake_49228164029029897,
fake_7546130872986734,
fake_3190406643420005,
fake_2753306204375996
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_9499114748669999,
fake_7112424056770825,
fake_48317480464710516,
fake_5379994719876402,
fake_0024799797335623985
result, different session:
fake_6558134773649449,
fake_0730837097531174,
fake_9501953686351603,
fake_042086647001304156,
fake_614509786799972
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_2931884128299729,
fake_8332160165767355,
fake_9387505852898055,
fake_6973235602595811,
fake_561676676064933
result, different session:
fake_6516039216197185,
fake_5928201905375619,
fake_14817548738088604,
fake_9561644392813389,
fake_10169908505309166
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_009857678031462536,
fake_6787156278465487,
fake_2889693627552057,
fake_9913548511899248,
fake_036389490105605216
result, different session:
fake_4022540405714161,
fake_11009747800452852,
fake_49736187748269933,
fake_7571538614131041,
fake_09636876979447107
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_3192249776267484,
fake_7974586455789312,
fake_16536929688560553,
fake_6945051174475718,
fake_025305584930096492
result, different session:
fake_5159668991077144,
fake_9404024755126104,
fake_7159603798039871,
fake_09944392618784481,
fake_6534636006894419
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_7366485712850708,
fake_7650943367811602,
fake_07113395562748148,
fake_6697257184681287,
fake_3010932825910857
result, different session:
fake_36460099627347087,
fake_5723195920581989,
fake_33061632984059486,
fake_9935897942919132,
fake_6434717973624868
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_8141770962804722,
fake_7979336824969419,
fake_8196142933710198,
fake_4337513590648727,
fake_3539737680127555
result, different session:
fake_29632006744436135,
fake_36077605146594194,
fake_29757394649514035,
fake_8033532260518395,
fake_17160996512727955
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_18925769440768558,
fake_894735861305185,
fake_16505513617680156,
fake_07002780806681175,
fake_7329062393786072
result, different session:
fake_801760031691849,
fake_6744320857157855,
fake_34967577221556945,
fake_3063922891688209,
fake_5540352630123726
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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, 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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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:
2dffac32-1b96-4893-acce-1f154e14c80b_1p,
20f77feb-0d7f-4110-a294-2bc3985b290f_1p,
bbea30bd-e930-4495-a5b5-05038ee0952d_1p,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_1p,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_1p,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_1p,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_1p,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_1p,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_1p,
a98593fa-ab88-41aa-b892-3df1b0bd093c_1p,
b5674964-9e81-4918-9741-84eca3616cc3_1p,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_1p,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_1p
result, different session: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
write: async (secret) => {
      try {
        return await IdbKeyVal.set("secret", secret);
      } catch (e) {
        throw new Error("Unsupported");
      }
    }
read: () => IdbKeyVal.get("secret")
result, same session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p,
12294c42-5770-4956-ae01-aa7b8322f552_1p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p
result, different session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p,
12294c42-5770-4956-ae01-aa7b8322f552_1p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c_1p,
0e953b7f-bd90-4327-9075-399aa4eea32c_1p,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_1p,
f9bedd3b-6650-4266-97d0-29320e8acc9e_1p,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_1p,
219d8ef0-3e36-4297-aaca-444b962d7a1e_1p,
92054eb7-13b5-4026-8bb8-25ed7004a376_1p,
48b25e53-04fd-45d8-b818-64393590b7b3_1p,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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:
8d4885cc-cd9b-402d-b001-47261fb92f40_1p,
6dcfbe83-b04c-44ae-aa06-949aa154938e_1p,
d931c26d-3182-425c-8a5d-d92dea5707b5_1p,
89d9c8a7-e43e-4173-994c-a0917d700921_1p,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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:
bceed89c-a60b-47aa-beba-9ee88280f27c_1p,
2791e823-749a-4115-bff5-3c5c920fdf23_1p,
71ce156c-a2de-4a24-ac62-4972f5c77cc4_1p,
5e93438a-f041-4508-9c1f-5f29e736e407_1p,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43_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:
13ac6d86-c860-46d2-b61a-e8377f56195b_1p,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_1p,
9946e862-e92b-4719-93dd-98d22c10db1c_1p,
8c08cae1-f687-491a-b882-c57360eae1bb_1p,
de21c995-30d7-4d37-a01a-f25329357400_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, 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:
8ece4aff-5f56-493c-ba40-120ed8b42524_1p,
1b1df719-b259-4eaf-9074-9e0150513637_1p,
b3e86eb6-857d-45ff-898c-6d3543e1f050_1p,
e583a492-e900-4957-ba9e-546d83d76dbb_1p,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5_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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_1p,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_1p,
24555dd0-615f-4b3e-a62c-5c934d312af4_1p,
16b29286-9796-483e-a475-40cdb7b0c7cb_1p,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_1p,
f8c42a30-d188-4078-a45b-7b22a09b859b_1p,
05768100-0198-45a2-899f-98ad5f33cf20_1p,
432e87ea-e304-4607-9536-4f7046c69b0d_1p,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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:
2dffac32-1b96-4893-acce-1f154e14c80b_1p,
20f77feb-0d7f-4110-a294-2bc3985b290f_1p,
bbea30bd-e930-4495-a5b5-05038ee0952d_1p,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_1p,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_1p,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_1p,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_1p,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_1p,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_1p,
a98593fa-ab88-41aa-b892-3df1b0bd093c_1p,
b5674964-9e81-4918-9741-84eca3616cc3_1p,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_1p,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_1p
result, different session: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p,
12294c42-5770-4956-ae01-aa7b8322f552_1p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p
result, different session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_1p,
12294c42-5770-4956-ae01-aa7b8322f552_1p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_1p,
13c2b455-aca8-4424-b8fd-1186afc95de1_1p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_1p
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
0555b4d6-9494-468e-a4d1-02e172d15a1c_1p,
0e953b7f-bd90-4327-9075-399aa4eea32c_1p,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_1p,
f9bedd3b-6650-4266-97d0-29320e8acc9e_1p,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_1p,
219d8ef0-3e36-4297-aaca-444b962d7a1e_1p,
92054eb7-13b5-4026-8bb8-25ed7004a376_1p,
48b25e53-04fd-45d8-b818-64393590b7b3_1p,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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:
8d4885cc-cd9b-402d-b001-47261fb92f40_1p,
6dcfbe83-b04c-44ae-aa06-949aa154938e_1p,
d931c26d-3182-425c-8a5d-d92dea5707b5_1p,
89d9c8a7-e43e-4173-994c-a0917d700921_1p,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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:
bceed89c-a60b-47aa-beba-9ee88280f27c_1p,
2791e823-749a-4115-bff5-3c5c920fdf23_1p,
71ce156c-a2de-4a24-ac62-4972f5c77cc4_1p,
5e93438a-f041-4508-9c1f-5f29e736e407_1p,
fd4003e1-ed4b-47bc-aa28-7aba152c5b43_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:
13ac6d86-c860-46d2-b61a-e8377f56195b_1p,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_1p,
9946e862-e92b-4719-93dd-98d22c10db1c_1p,
8c08cae1-f687-491a-b882-c57360eae1bb_1p,
de21c995-30d7-4d37-a01a-f25329357400_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, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same session:
8ece4aff-5f56-493c-ba40-120ed8b42524_1p,
1b1df719-b259-4eaf-9074-9e0150513637_1p,
b3e86eb6-857d-45ff-898c-6d3543e1f050_1p,
e583a492-e900-4957-ba9e-546d83d76dbb_1p,
f4a6da67-ba9b-4522-b2fc-f012dfa922a5_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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_1p,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_1p,
24555dd0-615f-4b3e-a62c-5c934d312af4_1p,
16b29286-9796-483e-a475-40cdb7b0c7cb_1p,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_1p,
f8c42a30-d188-4078-a45b-7b22a09b859b_1p,
05768100-0198-45a2-899f-98ad5f33cf20_1p,
432e87ea-e304-4607-9536-4f7046c69b0d_1p,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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
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
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,
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
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
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
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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
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, 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, 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
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
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:
2dffac32-1b96-4893-acce-1f154e14c80b_3p,
20f77feb-0d7f-4110-a294-2bc3985b290f_3p,
bbea30bd-e930-4495-a5b5-05038ee0952d_3p,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_3p,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_3p,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_3p,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_3p,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_3p,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_3p,
a98593fa-ab88-41aa-b892-3df1b0bd093c_3p,
b5674964-9e81-4918-9741-84eca3616cc3_3p,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_3p,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_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
Failed
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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_3p,
12294c42-5770-4956-ae01-aa7b8322f552_3p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_3p,
13c2b455-aca8-4424-b8fd-1186afc95de1_3p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_3p
result, different session:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_3p,
12294c42-5770-4956-ae01-aa7b8322f552_3p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_3p,
13c2b455-aca8-4424-b8fd-1186afc95de1_3p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_3p
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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:
0555b4d6-9494-468e-a4d1-02e172d15a1c_3p,
0e953b7f-bd90-4327-9075-399aa4eea32c_3p,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_3p,
f9bedd3b-6650-4266-97d0-29320e8acc9e_3p,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_3p,
219d8ef0-3e36-4297-aaca-444b962d7a1e_3p,
92054eb7-13b5-4026-8bb8-25ed7004a376_3p,
48b25e53-04fd-45d8-b818-64393590b7b3_3p,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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,
Error: can't access property "url",
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:
8d4885cc-cd9b-402d-b001-47261fb92f40_3p,
6dcfbe83-b04c-44ae-aa06-949aa154938e_3p,
d931c26d-3182-425c-8a5d-d92dea5707b5_3p,
89d9c8a7-e43e-4173-994c-a0917d700921_3p,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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,
Error: can't access property "url",
cacheKeys[0] is undefined
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: 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:
13ac6d86-c860-46d2-b61a-e8377f56195b_3p,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_3p,
9946e862-e92b-4719-93dd-98d22c10db1c_3p,
8c08cae1-f687-491a-b882-c57360eae1bb_3p,
de21c995-30d7-4d37-a01a-f25329357400_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'),
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'),
Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: true, true, true, true, true
passed: undefined
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: 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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_3p,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_3p,
24555dd0-615f-4b3e-a62c-5c934d312af4_3p,
16b29286-9796-483e-a475-40cdb7b0c7cb_3p,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_3p,
f8c42a30-d188-4078-a45b-7b22a09b859b_3p,
05768100-0198-45a2-899f-98ad5f33cf20_3p,
432e87ea-e304-4607-9536-4f7046c69b0d_3p,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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:
2dffac32-1b96-4893-acce-1f154e14c80b_3p_http,
20f77feb-0d7f-4110-a294-2bc3985b290f_3p_http,
bbea30bd-e930-4495-a5b5-05038ee0952d_3p_http,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_3p_http,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_3p_http,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_3p_http,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_3p_http,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_3p_http,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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
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
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_3p_http,
219d8ef0-3e36-4297-aaca-444b962d7a1e_3p_http,
92054eb7-13b5-4026-8bb8-25ed7004a376_3p_http,
48b25e53-04fd-45d8-b818-64393590b7b3_3p_http,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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
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
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
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:
2dffac32-1b96-4893-acce-1f154e14c80b_3p_js,
20f77feb-0d7f-4110-a294-2bc3985b290f_3p_js,
bbea30bd-e930-4495-a5b5-05038ee0952d_3p_js,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_3p_js,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_3p_js,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_3p_js,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_3p_js,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_3p_js,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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
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
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_3p_js,
219d8ef0-3e36-4297-aaca-444b962d7a1e_3p_js,
92054eb7-13b5-4026-8bb8-25ed7004a376_3p_js,
48b25e53-04fd-45d8-b818-64393590b7b3_3p_js,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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
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
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
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:
2dffac32-1b96-4893-acce-1f154e14c80b_3p,
20f77feb-0d7f-4110-a294-2bc3985b290f_3p,
bbea30bd-e930-4495-a5b5-05038ee0952d_3p,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_3p,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_3p,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_3p,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_3p,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_3p,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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
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: , , , ,
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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_3p,
219d8ef0-3e36-4297-aaca-444b962d7a1e_3p,
92054eb7-13b5-4026-8bb8-25ed7004a376_3p,
48b25e53-04fd-45d8-b818-64393590b7b3_3p,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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
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: , , , ,
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: , , , ,
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: , , , ,
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: , , , ,
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: , , , ,
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_7292634456831875,
fake_7194278701164001,
fake_7140074808462302,
fake_4746901266050543,
fake_06759746112114051
result, different session:
fake_08765379100786386,
fake_4492515366462797,
fake_9223309383737555,
fake_38370409373229664,
fake_7089754850545926
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_2420962473705337,
fake_46062822889272326,
fake_3632151526188121,
fake_9591775138884733,
fake_614552203387265
result, different session:
fake_013000547885943403,
fake_22039938504101508,
fake_5622564227199587,
fake_8148954578022796,
fake_8680306642106679
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_8560076211314971,
fake_013629814469125812,
fake_8235677491142579,
fake_7319641263880399,
fake_045227869897559
result, different session:
fake_12425680404281203,
fake_5040090030947726,
fake_579768569313021,
fake_13115427192543683,
fake_7931264583257251
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Failed
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_4044342646224104,
fake_8125919584287224,
fake_3456452711114286,
fake_47540546004663486,
fake_20292658633697314
result, different session:
fake_4044342646224104,
fake_8125919584287224,
fake_3456452711114286,
fake_47540546004663486,
fake_20292658633697314
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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_8498398713141999,
fake_6060942472774917,
fake_883693367539629,
fake_7715450788285974,
fake_6449529634949038
result, different session:
fake_7633379822299948,
fake_31893861501858933,
fake_8012988040031872,
fake_5088000724389434,
fake_49685011810262125
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_6414696193550338,
fake_0023801880538154574,
fake_6714753889665097,
fake_562437947097099,
fake_4065554201273056
result, different session:
fake_244512686074579,
fake_054041565256773394,
fake_23821907809861909,
fake_7600528343577679,
fake_5822474503010655
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_3192083337446976,
fake_8151022453253283,
fake_9052757464308556,
fake_9698137319151185,
fake_9026587252250342
result, different session:
fake_5313556693101302,
fake_19998355994747863,
fake_21785160539061033,
fake_8527331616025815,
fake_16898045547007023
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_16647049146210713,
fake_008672694686199245,
fake_21008449498282422,
fake_032383175832669586,
fake_7898561783960303
result, different session:
fake_6244486262526887,
fake_45283229863207786,
fake_072088331711746,
fake_05217742006656656,
fake_5676724128023882
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_8618458363608856,
fake_5011428260224144,
fake_8212268603128208,
fake_724482735837231,
fake_5724803260531504
result, different session:
fake_07037434547151489,
fake_921490396846286,
fake_3688641663805492,
fake_7987399738135985,
fake_25369319538884616
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_32243383282625127,
fake_05069084446229244,
fake_5006672244167576,
fake_19454614514455093,
fake_6862278901424888
result, different session:
fake_85572324327052,
fake_40858281388499673,
fake_05102606463742787,
fake_7568998643012055,
fake_950050214901585
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_28531169989900085,
fake_94615084923771,
fake_44506815495891905,
fake_8044840002544675,
fake_5605056849910699
result, different session:
fake_693755121939599,
fake_05083810662967192,
fake_17839984868510306,
fake_22120581609634216,
fake_2632766696279336
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_5031489936030467,
fake_6332281611368713,
fake_20378606405611244,
fake_442785220316819,
fake_9762520778050283
result, different session:
fake_4721548745814801,
fake_3308645260835066,
fake_67902389549565,
fake_5105648005158256,
fake_6955773571990387
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_879056386472638,
fake_4228915302941483,
fake_7519082935455605,
fake_22393619585627156,
fake_8248149393442537
result, different session:
fake_37742062746142024,
fake_1915443716072056,
fake_5358016952345368,
fake_5678661735165591,
fake_5364900333641067
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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: 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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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:
2dffac32-1b96-4893-acce-1f154e14c80b_3p,
20f77feb-0d7f-4110-a294-2bc3985b290f_3p,
bbea30bd-e930-4495-a5b5-05038ee0952d_3p,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_3p,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_3p,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_3p,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_3p,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_3p,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_3p,
a98593fa-ab88-41aa-b892-3df1b0bd093c_3p,
b5674964-9e81-4918-9741-84eca3616cc3_3p,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_3p,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_3p,
12294c42-5770-4956-ae01-aa7b8322f552_3p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_3p,
13c2b455-aca8-4424-b8fd-1186afc95de1_3p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_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:
0555b4d6-9494-468e-a4d1-02e172d15a1c_3p,
0e953b7f-bd90-4327-9075-399aa4eea32c_3p,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_3p,
f9bedd3b-6650-4266-97d0-29320e8acc9e_3p,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_3p,
219d8ef0-3e36-4297-aaca-444b962d7a1e_3p,
92054eb7-13b5-4026-8bb8-25ed7004a376_3p,
48b25e53-04fd-45d8-b818-64393590b7b3_3p,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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:
8d4885cc-cd9b-402d-b001-47261fb92f40_3p,
6dcfbe83-b04c-44ae-aa06-949aa154938e_3p,
d931c26d-3182-425c-8a5d-d92dea5707b5_3p,
89d9c8a7-e43e-4173-994c-a0917d700921_3p,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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:
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:
13ac6d86-c860-46d2-b61a-e8377f56195b_3p,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_3p,
9946e862-e92b-4719-93dd-98d22c10db1c_3p,
8c08cae1-f687-491a-b882-c57360eae1bb_3p,
de21c995-30d7-4d37-a01a-f25329357400_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, true
passed: undefined
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:
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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_3p,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_3p,
24555dd0-615f-4b3e-a62c-5c934d312af4_3p,
16b29286-9796-483e-a475-40cdb7b0c7cb_3p,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_3p,
f8c42a30-d188-4078-a45b-7b22a09b859b_3p,
05768100-0198-45a2-899f-98ad5f33cf20_3p,
432e87ea-e304-4607-9536-4f7046c69b0d_3p,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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:
2dffac32-1b96-4893-acce-1f154e14c80b_3p,
20f77feb-0d7f-4110-a294-2bc3985b290f_3p,
bbea30bd-e930-4495-a5b5-05038ee0952d_3p,
5eca4ee7-3717-4b9f-9504-e43bd8f56427_3p,
c981c730-2b62-48a3-abcd-b8940c280a7f_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:
29cf03b5-7dfe-4a98-84bc-2fc6e80b2936_3p,
1089c2a9-23ce-4b57-b8e0-651cd045f7ba_3p,
e16988de-8d46-4d3f-9d41-4bf00d66bc7e_3p,
c3dcbd6a-ac8d-40a8-86db-55295a442fe8_3p,
ed412c57-a864-4fc8-822a-3f0cc8f20155_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:
d860a2ee-9c33-445e-beea-fe9723a15eaf_3p,
a98593fa-ab88-41aa-b892-3df1b0bd093c_3p,
b5674964-9e81-4918-9741-84eca3616cc3_3p,
61ac3ae7-ab7d-41a9-a96d-cad52512d1cd_3p,
04c73666-ca08-4b55-a7ff-cd01d91ad7d2_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:
bbe1f672-5dfe-4fe0-b879-19576ff448cc_3p,
12294c42-5770-4956-ae01-aa7b8322f552_3p,
e398fa75-1f07-40d6-95da-226c0e17ffd9_3p,
13c2b455-aca8-4424-b8fd-1186afc95de1_3p,
06ca0285-7ed8-465a-a63e-274ed2bb310d_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:
0555b4d6-9494-468e-a4d1-02e172d15a1c_3p,
0e953b7f-bd90-4327-9075-399aa4eea32c_3p,
91e213e3-6ab7-42f7-b0fd-5ab23e4ee004_3p,
f9bedd3b-6650-4266-97d0-29320e8acc9e_3p,
f159916b-d9c0-4b92-90c9-68ed38c512ad_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:
95d80c7e-a20f-4e10-abdc-5c4f950fda8f_3p,
219d8ef0-3e36-4297-aaca-444b962d7a1e_3p,
92054eb7-13b5-4026-8bb8-25ed7004a376_3p,
48b25e53-04fd-45d8-b818-64393590b7b3_3p,
b19912c8-0664-4fe7-85e2-7e0e6e0917ef_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:
8d4885cc-cd9b-402d-b001-47261fb92f40_3p,
6dcfbe83-b04c-44ae-aa06-949aa154938e_3p,
d931c26d-3182-425c-8a5d-d92dea5707b5_3p,
89d9c8a7-e43e-4173-994c-a0917d700921_3p,
57cc38cd-3f5c-441e-93da-91c5c7a11aae_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:
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:
13ac6d86-c860-46d2-b61a-e8377f56195b_3p,
27d1d689-d5d5-4723-9ff5-b18cbe32324d_3p,
9946e862-e92b-4719-93dd-98d22c10db1c_3p,
8c08cae1-f687-491a-b882-c57360eae1bb_3p,
de21c995-30d7-4d37-a01a-f25329357400_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, true
passed: undefined
test failed: false, 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:
72d38d84-a897-4546-ac22-4bbd4404fc4f_3p,
9ff9bbcb-235d-4b5b-8d49-62928c8f4a89_3p,
24555dd0-615f-4b3e-a62c-5c934d312af4_3p,
16b29286-9796-483e-a475-40cdb7b0c7cb_3p,
953b5134-bc01-4f36-a1df-6af87d70dfb8_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:
666edc2f-acc1-404b-8240-8edb19677bc3_3p,
f8c42a30-d188-4078-a45b-7b22a09b859b_3p,
05768100-0198-45a2-899f-98ad5f33cf20_3p,
432e87ea-e304-4607-9536-4f7046c69b0d_3p,
a7356d63-74ae-4dc6-b65b-b845cbbd3cd5_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
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
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,
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
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
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
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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
Failed
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: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
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, 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: 2, 2, 2, 2, 2
result, different session: 3, 3, 3, 3, 3
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
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: China
  Checks whether the browser decides to use
  encrypted DNS if the computer is located in China.
Failed
passed: false, false, false, false, false
leak detected: true, 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, 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, false
leak detected: true, 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, true, true
leak detected: true, true, true, 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
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: false, false, false, false, false
leak detected: true, 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, 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, false
leak detected: true, 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, true, true
leak detected: true, true, true, 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
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: false, false, false, false, false
leak detected: true, 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, 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, false
leak detected: true, 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, true, true
leak detected: true, true, true, 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
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: false, false, false, false, false
leak detected: true, 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, 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, false
leak detected: true, 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, true, false, true
leak detected: true, true, false, true, 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
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: false, false, false, false, false
leak detected: true, 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, 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, false
leak detected: true, 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, true, true
leak detected: true, true, true, 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
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: false, false, false, false, false
leak detected: true, 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, 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, false
leak detected: true, 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, true, true
leak detected: true, true, true, 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
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, 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
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
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
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
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: false, false, false, false, false
leak detected: true, 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, 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, false
leak detected: true, 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, true, true
leak detected: true, true, true, 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
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, 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
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
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
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
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: false, false, false, false, false
leak detected: true, 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
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
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
Failed
passed: false, false, false, false, false
leak detected: true, true, true, true, true
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
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