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.203

private
edge logo
edge
151.0

private
firefox logo
firefox
154.0

private
librewolf logo
librewolf
153.0-3

private
mullvad logo
mullvad
15.0

private
opera logo
opera
135.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(window.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(window.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(window.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(window.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(window.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(window.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(window.location)).searchParams.get('thirdparty') === 'same') {
          if (protocol !== 'h3') {
            throw new Error('Unsupported');
          }
        }
        return protocol;
      }
result, same first party: h3, Error: Unsupported, h3, h3, h3
result, different first party: h2, h2, h2, h2, h2
unsupported: false, true, false, false, false
passed: 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(window.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(window.location)).searchParams.get('thirdparty') === 'same') {
          if (protocol !== 'h3') {
            throw new Error('Unsupported');
          }
        }
        return protocol;
      }
result, same first party: h3, h3, h3
result, different first party: h2, h2, h2
unsupported: false, false, false
passed: true, true, true
test failed: 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(window.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(window.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(window.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(window.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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party:
Error: Failed to fetch,
Error: Failed to fetch,
Error: Failed to fetch
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (secret) => {
        try {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const 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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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 {
          const 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) => {
        const response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
        const result = await response.json();
        const blobUrl = decodeURIComponent(result.blobUrl);
        const blobResponse = await fetch(blobUrl);
        return blobResponse.text();
      }
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party:
Error: no BroadcastChannel message,
Error: no BroadcastChannel message,
Error: no BroadcastChannel message
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (secret) => {
        try {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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 {
          const 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) => {
          const bc = new BroadcastChannel('secrets');
          bc.onmessage = (event) => {
            if (event.data !== 'request') {
              resolve(event.data);
            }
          };
          bc.postMessage('request');
          setTimeout(() => reject(new Error('no BroadcastChannel message')), 3000);
        })
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
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')
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        try {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const 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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_http,
1149fc16-891c-44a1-9432-2fcb67a8afec_http,
7f3f882f-bf42-486f-ac40-4b892e427ab5_http,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_http,
9672e867-6514-4e9c-b9af-155c70873e5c_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_http,
06c4f63c-c3a4-4e44-8828-a674b8662611_http,
ae95c568-e714-48ea-a374-a7ea8abba7a7_http,
2e693120-3d0f-4950-aa5f-9778bb90d518_http,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68_http,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_http,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_http,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_http,
db344afd-364b-43c8-9491-33e8c780cbeb_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e_http,
9066f6a1-d89e-4393-82dd-1a866fdec175_http,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_http,
733581b5-563c-40ae-92fc-b7983cfa51a6_http,
1b047f33-474e-4570-b33b-10f049be9ac6_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a_http,
b00fd805-d49d-4f28-8353-40016f4f7a5f_http,
c76936cb-c522-46b1-b439-e0c57a978e9b_http,
65a5780f-59e2-49d1-840b-537d809c01ed_http,
831069eb-e748-405a-8701-4187fa4e735b_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45_http,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_http,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_http,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_http,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_http,
62cacb5f-5445-410d-83d3-9a33778e4594_http,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_http,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_http,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6_http,
af4cad6c-9701-493b-93ee-b124ff883bec_http,
6b01a2a5-440c-41f7-b841-b9471079703d_http,
019ae16c-0261-49ea-903d-eeb03dfe4c4d_http,
58e87ab5-ce3c-480c-a7fb-241de68ce12b_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6_http,
050972df-1052-4c60-9d05-634ae6be9272_http,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_http
result, different first party: , ,
unsupported: false, false, false
passed: true, true, true
test failed: 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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d_http,
a26a6a39-0325-456f-a01d-fed7aa8eee6d_http,
2f76f639-3e75-406f-8bbc-1cca58e46d78_http,
3356118d-7ca7-4fc7-a3fb-b83459990d5e_http,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734_http,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_http,
5d7dea03-99c4-44ac-a928-1835f8bfb309_http,
2177082e-4041-463f-9803-e2ff90b3e5ba_http,
177f1d41-1770-4381-890e-d2c9dc0a025d_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f_http,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_http,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_http,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_http,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_js,
1149fc16-891c-44a1-9432-2fcb67a8afec_js,
7f3f882f-bf42-486f-ac40-4b892e427ab5_js,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_js,
9672e867-6514-4e9c-b9af-155c70873e5c_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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_js,
06c4f63c-c3a4-4e44-8828-a674b8662611_js,
ae95c568-e714-48ea-a374-a7ea8abba7a7_js,
2e693120-3d0f-4950-aa5f-9778bb90d518_js,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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:
c7930b01-006c-4b97-8da7-803c379dce68_js,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_js,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_js,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_js,
db344afd-364b-43c8-9491-33e8c780cbeb_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:
65825e45-1344-4626-b6c6-63a3f0fc515e_js,
9066f6a1-d89e-4393-82dd-1a866fdec175_js,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_js,
733581b5-563c-40ae-92fc-b7983cfa51a6_js,
1b047f33-474e-4570-b33b-10f049be9ac6_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:
c596c124-6113-4dc5-9cc3-968ea982394a_js,
b00fd805-d49d-4f28-8353-40016f4f7a5f_js,
c76936cb-c522-46b1-b439-e0c57a978e9b_js,
65a5780f-59e2-49d1-840b-537d809c01ed_js,
831069eb-e748-405a-8701-4187fa4e735b_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:
8affffcb-ccb2-41b8-881e-381df160ad45_js,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_js,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_js,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_js,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_js,
62cacb5f-5445-410d-83d3-9a33778e4594_js,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_js,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_js,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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:
ae93286b-ec33-4efa-9291-0b20edc085f6_js,
af4cad6c-9701-493b-93ee-b124ff883bec_js,
6b01a2a5-440c-41f7-b841-b9471079703d_js,
019ae16c-0261-49ea-903d-eeb03dfe4c4d_js,
58e87ab5-ce3c-480c-a7fb-241de68ce12b_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:
5d441ef0-f40f-422d-9739-c114bc2d94e6_js,
050972df-1052-4c60-9d05-634ae6be9272_js,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_js
result, different first party: , ,
unsupported: false, false, false
passed: true, true, true
test failed: 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:
9425b73a-f005-4a05-a6f2-6a228afde59d_js,
a26a6a39-0325-456f-a01d-fed7aa8eee6d_js,
2f76f639-3e75-406f-8bbc-1cca58e46d78_js,
3356118d-7ca7-4fc7-a3fb-b83459990d5e_js,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21_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:
2b909a01-4f05-4f0f-8eba-64d9e5508734_js,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_js,
5d7dea03-99c4-44ac-a928-1835f8bfb309_js,
2177082e-4041-463f-9803-e2ff90b3e5ba_js,
177f1d41-1770-4381-890e-d2c9dc0a025d_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:
a30e5906-f75b-4da4-9836-2b3ecdca691f_js,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_js,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_js,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_js,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party: , ,
unsupported: false, false, false
passed: true, true, true
test failed: 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:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_5491321067025741,
fake_6659554044166318,
fake_2774760791783524,
fake_9630881190495266,
fake_4532139261116146
result, different first party:
fake_5247855018332399,
fake_8103694015097807,
fake_27348512939602365,
fake_5418349886365341,
fake_7885734456518425
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_16541057250104663,
fake_8690978188071812,
fake_43502705603003444,
fake_19918219224694433,
fake_9639499359278396
result, different first party:
fake_05242025964892316,
fake_44490915888785887,
fake_16235995881856158,
fake_9189640789543958,
fake_6852001009418729
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_5757328740389887,
fake_7541560933259741,
fake_8899052887523506,
fake_5237404247729933,
fake_847976941247881
result, different first party:
fake_5757328740389887,
fake_7541560933259741,
fake_8899052887523506,
fake_5237404247729933,
fake_847976941247881
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_22574072529689815,
fake_5520065231375746,
fake_8521069120217213,
fake_034662855576091944,
fake_0196332389922107
result, different first party:
fake_07055246722463471,
fake_22868903857482992,
fake_0952967762877932,
fake_4076587236113145,
fake_2560686694933749
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_10477109090416725,
fake_9681380328992761,
fake_6837120052697017,
fake_3337519766895227,
fake_7229247520755151
result, different first party:
fake_10477109090416725,
fake_9681380328992761,
fake_6837120052697017,
fake_3337519766895227,
fake_7229247520755151
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_47329454562115614,
fake_2693889230368103,
fake_593948935646909,
fake_7492761342853316,
fake_08667749731505059
result, different first party:
fake_7217514271710603,
fake_2873479178470215,
fake_6872766512302717,
fake_043494992355291195,
fake_7168416954453987
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_4220028223874248,
fake_3540529990352652,
fake_06832237569411315,
fake_164667413341677,
fake_07248592938866283
result, different first party:
fake_8724969683707793,
fake_9892654892394395,
fake_41444934562887914,
fake_23918448117340807,
fake_05085344263146241
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_9862801177325369,
fake_8571012089714938,
fake_6386650379502767,
fake_7568894280091931,
fake_295920224868647
result, different first party:
fake_3898629994170302,
fake_9851954689743485,
fake_010883861809391604,
fake_5308462052784992,
fake_6787462212693194
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_6844701460207072,
fake_4995047463567328,
fake_7167473857936397
result, different first party:
fake_6844701460207072,
fake_4995047463567328,
fake_7167473857936397
unsupported: false, false, false
passed: false, false, false
test failed: 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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_5536050476980698,
fake_4673019131060283,
fake_9814555116704138,
fake_7332005212521349,
fake_40861483605040627
result, different first party:
fake_8240829042636648,
fake_03202839348104214,
fake_13428467847839132,
fake_2883824367807044,
fake_4290918056471431
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_09662710415381537,
fake_11977179647843417,
fake_4092990991400429,
fake_6599297730266129,
fake_31876329722980157
result, different first party:
fake_7128259938116566,
fake_9280609848226478,
fake_5684750637702762,
fake_2440941967740511,
fake_8429579024860092
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_8864620117648156,
fake_19118210140231762,
fake_9633513911742073,
fake_736574091824066,
fake_46586792975512403
result, different first party:
fake_8864620117648156,
fake_19118210140231762,
fake_9633513911742073,
fake_736574091824066,
fake_46586792975512403
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same first party:
fake_4054019235436417,
fake_4676272807588193,
fake_4358007337044312,
fake_6584593491274415,
fake_9698787050136082
result, different first party:
fake_4054019235436417,
fake_4676272807588193,
fake_4358007337044312,
fake_6584593491274415,
fake_9698787050136082
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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const count = (await response.text()).trim();
        if (count === '0') {
          throw new Error('No requests received');
        }
        return count;
      }
result, same first party: 1, 1, 1
result, different first party: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
        await sleepMs(2000);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const countResponse = await fetch(testURI('ctr', 'fetch', key),
          { cache: 'reload' });
        return (await countResponse.text()).trim();
      }
result, same first party: 1, 1, 1
result, different first party: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const response = await fetch(
          testURI('ctr', 'font', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same first party: 1, 1, 1
result, different first party: 1, 1, 1
unsupported: false, false, false
passed: false, false, false
test failed: false, false, false
Passed
write: async (key) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
unsupported: false, false, false
passed: true, true, true
test failed: 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:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party: , ,
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (secret) => {
        await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, { cache: 'no-store' });
      }
read: async () => {
        const 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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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 () => {
        const response = await fetch('https://h1.privacytests2.org:8901/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party: , ,
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (secret) => {
        await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, { cache: 'no-store' });
      }
read: async () => {
        const 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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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 () => {
        const response = await fetch('https://h2.privacytests2.org:8902/?mode=read', { cache: 'no-store' });
        return await response.text();
      }
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id');
        return await response.text();
      }
result, same first party:
776274d94b3674d818a018ef5fcf7c2b,
4fabbbb85824f42ecbd839085cbdaeda,
e072e64a1395b9630d9fc8b83897a40e,
4147ac9e1e45fa1142d5a606735179a6,
3fd2d9b8c393217509e110a1438e2b77
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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const 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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id');
        return await response.text();
      }
result, same first party:
d44404090515729fc2897ec48bce108d,
0bbb90b5ec4d7b1abd53e6e2322c9d46,
88f510cdef220cb370164fe29316e1af,
eb5b362fb2ed8d1dcb1fa9f5150e91c1,
3913616a5b5d5342a4623f9024e6054b
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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const 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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id');
        return await response.text();
      }
result, same first party:
4a59330213151ef03329cd96ec42ea27,
cf9354a9797d6813f1c036e9ad5ce1fa,
88d21a43264b31fd64b0fb4d36aaaffc,
fd400e5db4e04e86e013fa6ad8fe5632,
e95a05352e45a605844597fbc540f97b
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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id');
        return await response.text();
      }
result, same first party:
08922550ca2d198b4eedd1e9c76516ef,
68cc8ebb158af06c79ba43f2d8a14491,
78f0436ad0c50496de8ac6c8b57f65dd,
14ab812b3040fb7b7163c8ad74f8202c,
e0068d6b30a71e30edb35c25fdcbeb9f
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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id');
        return await response.text();
      }
result, same first party:
db1573434cb678169b2df09d55aba14b,
a29e7525917801a297aa0746b09b8ee3,
765775fe2aa7151c1267e5f54e1cd146,
a462740727868bc45820f5f89cce50df,
d039444890106df7cad07419c969fbee
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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id');
        return await response.text();
      }
result, same first party:
ca56daba0322df07335e24b1f6907569,
d93ad72d1d8a1f553361333271d63698,
4a02046d818f9a4c555164e2724049a8,
d98518230673ba48ba2d051c8765a435,
bd2de0e43da11d3aa5c3d1612374c4e5
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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id');
        return await response.text();
      }
result, same first party:
a11fdc48bcb03c13df9ee4d0cd1b76a6,
7567b831f2455c7d2fb7354f18ce8f80,
f118d6ddcf8275c9fce764442c9f49c5
result, different first party: , ,
unsupported: false, false, false
passed: true, true, true
test failed: 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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const 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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const 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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id');
        return await response.text();
      }
result, same first party:
ebe3c506dce98d478643ce6d7052527a,
fcd695945ab9ec2845a1a3408ee0a40f,
285df36f1b03afd0bcd343a29c3e3105,
6528d9a46e101d37314ea6ff4a92e722,
3c7e5fb712b1ff2bf0b86073815bb0a1
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?
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id', { cache: 'no-store' });
        const text = await response.text();
        // Empty response text indicates we are not connecting over h3:
        if (text.trim() === '') {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const response = await fetch('https://h3.privacytests2.org:4434/connection_id');
        return await response.text();
      }
result, same first party:
0f8bc31782ebb3fccd3a8f6cf82079b2,
3d14e406d7f3445c6ffeefc970968725,
5b98830bad9327d7d960b3018cab54b6,
383bcac5f3955f22a803e766a5187524,
cd28826e97d64705029cef0430201c09
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
unsupported: , ,
passed: true, true, true
test failed: 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
unsupported: , ,
passed: true, true, true
test failed: 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const response = await fetch(
          testURI('ctr', 'page', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same first party: 1, 1, 1
result, different first party: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const response = await fetch(
          testURI('ctr', 'image', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same first party: 1, 1, 1
result, different first party: 1, 1, 1
unsupported: false, false, false
passed: false, false, false
test failed: false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party: undefined
unsupported: false, false, false
passed: true, true, true
test failed: 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:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party: , ,
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (secret) => { window.localStorage.setItem('secret', secret); }
read: () => window.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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
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')
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        if (navigator.locks) {
          navigator.locks.request(key, lock => new Promise((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const 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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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((resolve) => {}));
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].clientId;
        } else {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        if (navigator.locks) {
          const queryResult = await navigator.locks.query();
          return queryResult.held[0].name;
        }
      }
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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
Passed
write: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const countString = (await response.text()).trim();
        if (parseInt(countString) === 0) {
          throw new Error('No requests received');
        }
        return countString;
      }
result, same first party: 1, 1, 1
result, different first party: 1, 1, 1
unsupported: false, false, false
passed: false, false, false
test failed: false, false, false
Unsupported
write: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const response = await fetch(
          testURI('ctr', 'script', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same first party: 1, 1, 1
result, different first party: 1, 1, 1
unsupported: false, false, false
passed: false, false, false
test failed: false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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 {
          const worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
result, different first party: none, none, none, none, none
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 worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
result, different first party:
Error: no SharedWorker message received,
Error: no SharedWorker message received,
Error: no SharedWorker message received,
Error: no SharedWorker message received,
Error: no SharedWorker message received
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
        try {
          const worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
result, different first party: none, none, none, none, none
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 worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
result, different first party: none, none, none, none, none
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 worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
result, different first party: none, none, none, none, none
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 worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
result, different first party: none, none, none, none, none
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 worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
result, different first party: none, none, none, none, none
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 worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
result, different first party:
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
        try {
          const worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party: none, none, none
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Unsupported
write: async (secret) => {
        try {
          const worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
result, different first party: none, none, none, none, none
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
Passed
write: async (secret) => {
        try {
          const worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
result, different first party:
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.,
Error: SharedWorker constructor: StorageAccess denied.
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async (secret) => {
        try {
          const worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
result, different first party: none, none, none, none, none
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 worker = new window.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 () => {
        const worker = new window.SharedWorker('supercookies_sharedworker.js');
        worker.port.start();
        const messagePromise = new Promise((resolve, reject) => {
          worker.port.onmessage = (e) => resolve(e.data);
          setTimeout(() => reject(new Error('no SharedWorker message received')), 200);
        });
        worker.port.postMessage('request');
        const message = await messagePromise;
        if ((new URL(window.location)).searchParams.get('thirdparty') === 'same' && message === 'none') {
          throw new Error('Unsupported');
        }
        return message;
      }
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
TLS Session ID
The TLS protocol is used by HTTPS to make connections secure. If the browser were to re-use a TLS session, then the session ID could be used to track users across websites.
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
69a140f1bf3fcaaac1dacf8309e7d86b1d357279fc5d51b4d6d185a74356d22b,
c569c1693f95977068ee88ac974339bf516776bd351c370d3824adc81e51cef7,
9c908ab248eb6aeadaf40e98a9437e129afa24a9ea873e8f98272b979ff4724c,
ab8ca1c730e84824a2d8778d70f1bf813da9d87c96c483e2177782ef7e00f149,
b06b5dcdf259432f8af3c3dd8564abfdf453042726cbdce848de67a48d383b04
result, different first party:
a8eb37027f4a550969422c5a07b75dc6c6f10f685b76d7d7172bf843836a4897,
e082685dc773e528b93e1359d1dbb81271708f22922cfb9fd3fca140aa6aae0c,
dcd0b1be4873be3d349dd959d046e173b5f439463513aec67e8cd49861c38f4f,
1a0235650d3ae5ff6a5ec605a64165de213cedcc877748df7f2977ebf74f3de5,
4c399bba214073b25196d6c719a8b8f3f68ab5613644a79e051ecbb65b6c8cbe
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
54a08f8b41f73b3410d46b36bc33a813598689add870e6e2397e6c2fdcdf2776,
33425b6f78223686ad28d43c03fd3213ff75051f9128a159c6712d7ebe83aa8f,
7b8ea1f19f8f7ec9dd0c554567ccab03813e6c9e9d216b3dbef300950f53bcd3,
d40d55fb1f9453c26cb08d3fa1a600a4bb23ee75f0959ee69e21f933bf9f3e94,
d232238f8b11c27236d7529e38273ed1792e463eb31504340038e339bc5238ba
result, different first party:
cc4145cecddbd6fada2990441140512ca9eb24d17157df1f39e3680f9fec913c,
d45c0666eab4a96e705203149cbba1cc5d427b831404d6b6a3e247ddfae19764,
a1c0de6a216fdb37fbca36fb3e33e29f2778f4eb30c0ffdd3669976637c9224d,
fe4797cec4bdcc6529c492bdeb4471e000fbf91cb5e9a7ae24df1b9cfa384a42,
9f7d85cead644f9b8c6a61966c7ef24ee080df7bdd53d55343eaa66361c116b6
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
63ba28377fd0307bc33d03010111a474544265607c6e4fda284706bb076d38df,
8975390d1ca97158f9c7154bc27ba3209b49f79ac1ef2faae157a3343c019224,
da4e72e3ce4e9fdcea0189e028c50975c0f1df56391aabcec0bc56bd0cbf9376,
dbcfc2248844f3602724a5addfd1ff3e98d97102d72abc3a204e03d1babf5056,
6c68f16673e0dac10c0dad20319bbd481c4955d19de03d6ad28cf3d6ab6a3430
result, different first party:
e9f7b5b50f98612b78ff2066d875467bd7cc88dddde77d400f7f839778dd5fcb,
4320d0dfc7dde64a025629bbee8c1646885c99ebab6afd4ae2f5bd68ae9ec3e5,
f636bbdae12e03357a3d74dc8973fec61b5d3a168cc3c1c36393518aaf3e8b22,
ad768572fe870704f9256deb6197a4e2da649a75370befabb59247b0c16384a3,
068a2abdd70ddb0f1160009f7e88bc093a4ff8c178a51f4e0a87227fd4b23fcf
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
387ade9c2fe2dce353e64d38ce95b690bbef7fa591fb5871b38468d035f65141,
3d21af1e08f750b65dbbc1ea72e6d21b879839cd36cff07fdffbf33450288c8d,
ade863f1b70f07b289287bce0602c7495e49fbfb9655c6fdc7333d24eaa80226,
71e360a1303b8f142f544173c8022b27758f480857f1951e2ea7142705f98b1e,
a7c1302b35fce9d64574c14eacf03948fb501d7d5e50ba581ef9fd25bed7468b
result, different first party:
40708ef6442d0ad56145e47e08a1e979240a48ca421755a3dde9ce393f4f7e3c,
345cfd0a031cd64a5e2bad378d314aa8a3206ef9355c65de68acaae19f2be604,
15fab625d049ed412b3fea502d50b79aef6127928c8ebc00b76a20bda585a881,
2350224190e7af4113620f4eb62cde9a4dcab28f1fb05a99f7d04e9480ad25b1,
aee091f92295fd7ef09b7674aeb1aa32d190c93d3160e08040fd1097815531da
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
34f96e50092a206609d929b3c1206c726d10841d4a5742e6c788cadf04b8b83a,
06801a192662d80ad1cd516aadefdc8cd8f17f742bc1f418d889b2ec8e9d4571,
cccfaf5443f5717ca9c61604cfd3477ad0646f49fea3202062a7b83786dc9970,
9108ecdec99c0341226061a32b65a30f7beb23b549b2ab2523be853083e0dcc6,
a12da4ce66d3e10ffda6e53af9f7a05d3be99b96fbdb85065434bd5290d20809
result, different first party:
0b727d8a444541c1a18cf4b1b4f294b5aa8379e1b51dd62fb3bece16a8e2f262,
df5d3eff0592f0a8ad14131a1f23654c2fb01c7707ab4feb89abfd7fcbb8b0ad,
389762d4513157abdb280d3390a6501bd8017a5d998c74e323b683ade632d438,
6a5fe83868182d6a31cce726c6a9f0bd3c39cae9e55815026c6243dba98692a7,
23093897df764a9f4077111a2944d85d04b340f6a0ce809cd1b077a7211c2f2a
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
c3061c990a4b10cc653c566e10f661bdc13bda26c222facf0f89b8739baf5540,
43fdf1e957a019b7b37d54baa8c5b015ca0aea1df40d33075248878d51ece11b,
1611943d65dad14391a69a2ec0219a2bf15dc38a1c38586030e0fdaa414766ef,
d3f95193042018b76a303d44e52ae0fc1d42c2eb73a4aff62cdc6cd782e1a2a6,
c0e97dd595ab47944c01c0d5ee5870a56f4537334ab0592a5d45b566f60d6ad1
result, different first party:
db059406a2d29384b9a2199057885cb0851a15e7415e97d660d3a0c5c293036e,
203acb10eec5059109bb6c75361b1361a87d7175e0fb1ecdb5f8a1666c4cce00,
b33879f8ef0add6a48b043eee85bf5248debba6cafd960b4d9f8c568a30f6fce,
826784409efc10a1e21fc8dc587b0d860f443b89707ef44f02b658a5fcfb5a25,
2238d2bc95879c79af27e35ac8a8264687db7d25b2f712ce2d9f98e6154542af
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
34cfa48e5807ed052706f7c894158a522637761b7c875b6d652762d0560f0618,
f92c4dbbd1b4125673dc9db9c9f3c5f06288f89e7a1bc2b91c6928e3dee042e1,
172587305c6f51b1d4c186bb16ee94ee7ed3ca3b517dd40f33895dd8d21aa6bd,
987b69384b329ebd29123f797cb1a1b5bed4d593e6b9e7a886655302526a6847,
f267b009317659606cb340448ea5effc74643de8ba74de22a06b418ff465b9d8
result, different first party:
feb304bfd358ddc15fa480305549289208a46d6bd8893bccb016b2974c1c6710,
7e00ccd7a02b6b4ae3dfe5c6c53ef11bf895dd7904c652e8bd6458a8acdf1779,
7ce483983263e0bdf40dd2ab12073504fec0f29503fd3daa98d110a93820b1b2,
e37ed6509d05258a09d927c09af608e975d089e8fc62e7e146c4c82249f4aa4e,
c8100845f5ca7fc8e9616099da00ca807b3375e19f56ed7c9f5f4aad58170e15
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
590bdef0e3c99f818ddc15ea1369b033753b1fd7b3a57b4a20af5c410a9378d9,
08331e6733be29bdf57aa4c312f851c4df3918df1ff74dfc36c713d7bc56ae12,
cdd44578152612471900bba54dd4a81eaf0422ade6a5ad6b561bb891f74e63e1,
07167348c56fd9531de167422bf55d85bff4e1bc3320a51e308bcaa7c116a0d1,
ba6171aae72aca3296cd9f4b6c5bec32ba2125d4eac595b2ffbc12d914b907e8
result, different first party:
a71108acad520a7a42dc4de33c65fd15afa0d7cbf6f7521bc44f5ded44d38a02,
3ef82db8a2aa6958999d076f317295b6eef140dcdbe33f47948f528a59763fa5,
d822374028005398ba5c43d68cbbd457903f37a76949242cc7e894a33fb34536,
b00bcff70c1e4b254659d67eef37c4ab9640a0d5cd7595ef94daf93da6b34923,
ef6341e293112c65c1d4f77bdeb47c900f57a2ed2dcbaadf9aa92df72c2e4fbd
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
088cf5655ad134aa000690191c4eef6a49a3859d0ee90aebe9be2ab75a9c3d5f,
1dfa11cd907c3226063c65423fdddeb8fb5e53a603ceb407d232ddcd71eaaa6e,
8e17327b120d63d5056e54b268817aa01fb6c1e004b96149fe277ac164c5b549
result, different first party:
9875abf526344e2bafc708ef340d9b05c273a0584f35358ba5a93f58a9ddb6da,
81c0f4cf75300bce3ff1fd9f9e74436758e7910ea31cd1b13d2092aac0f19e3d,
0a4d9e2369742defe6b3b73eaab8e251004a741bfa0a8c8bf25400d70fb7f937
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
8f35b7c51f94e589cf3bb5871374464661b2cae0635a5d3ed62c23c62ec5b0ab,
73b4c5615bca7fc0acd61005d86d8d0794713ccb1b198a677565efb27d735a20,
90d4358a6ebff5dc4b7f9dae149cfb650e0bffa4452ab4070bc513018e61f18f,
73d15e59887532f5c630ccfd1769c397daab924a8ee7d3a803f6fcf0d37e8bd1,
e3fca250dd65ce21254ca5f5fd497e18251e59ef84eaa6065a3870495a7b0429
result, different first party:
88d7729f2eb50236f05537845b7789b47e588796aaecba0f209fe4e8dede4584,
46535531ab67158a75ff2fcaa2d2e16fda8e3b7751b6b8baab6064b0a9b33728,
be309b0eb6fc0c5fa3d6d55b848dffc14c43fda1903b1207fa4f2cd3a5106284,
4e5469a1693ad45c9b4b30c6668980e46e22bf57dba3ee7747c366c203e99849,
c2ba07875a74f7aa7ceff8746f3a553aaed434f5de6630643abef9f4e3b0b4f5
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
c547a5dc94bb716ca5d897c99c4f777abb46fceae1b04ed0689d31ce0c5e9179,
72589a82cacd4f256bcd7eb0cfd0df6f48002922e673475595616d3682837d66,
a2bca028938eea951ee53d6424b3af0b920eff8b3d35b7c0731719f067df34f5,
627b7d121b48b4a20edd5fcc4794819901cf3ed9b1a992538035f6dbe4b57588,
690f189ee2bace66174bf8b0e59f3d00f3501521031ba8e9f0e3ef44050b5da7
result, different first party:
306339c1d35a3df263b0242c05b4f256ca4fa740f824a1dc9e4b2a7cc9e2b47e,
82e04db1e531d5b1e957e52cd95de009ae09e1915dfb7a1514351e3e3d174391,
865bfbe57c6c2a4142807f159c48eceffcc168b0f7640517ade764d2b836dfe5,
d8a9775d26266909272f02901febd561e9f2d2cca5d8e139f4fa451d19f8a0a6,
857eafc88372fb0b2ab56d38ac18a405288bb69ee971f1d9a75bb2950c3a5bd2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
c43627d6beb0bc77d5f65cc1c351b8aa02ffc82bd38a3f590bdcf0c9c13e5489,
752d19635857b4b5fe21a506fc02ebb73dfa8a44f75bea62c3631bf0cdce56f4,
794ca0555b2f24595d27e8bbc96e63cddab4d11c76778df1af4be0ae95dc526f,
4c42b7c2be0adf1ae0a7b150721105f26ad2677080a4b300619d78b7c6439d19,
4c156be504e183bbcee684762074b31968f5f565d79214a4e1db2a0eb1a715d7
result, different first party:
a9fe0e1f2f0539dc4e6d1106a9fe7c8360ac9641b7638d0ed300567781f6a2aa,
657eb603d3035b532a27caf03921073867aad9cdd05d8f69c508c149871f090f,
bc7e292dc6ad673695ca65edf6b27cf2d3998f6cb9e4ee374c6524418f69c28e,
3f8e28c02d0703dcb714ec45e33bd0b940cb703b4b1363c2c8f9c31b0a1b46a1,
879232317629a62231d78184101ddb4c05590e18569fa960d5b9a00b94809bf7
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
Passed
write: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
read: async () => {
        const results = await fetch('https://tls.privacytests2.org:8900/');
        return (await results.json()).sessionId;
      }
result, same first party:
2d2d10f9b9875bd640fcea8e11aef43ebf31dba0790dd4f798a16cbef198d4ed,
58bbbbf7dc38635245cddb73e2e1b68f98b3fbf8233c2dc23f1ecb492ebbb932,
17c6e6f720e8f85a40bfafcc17a82515331a82759ae3b6aae2afa3ba4ecdf2a0,
0822bdfb5554bd87820685ef21c1d76f1be5a7d8672d3d5342909d14babaf66d,
14688539254b49b56c21bc83eec2b1716cbd76072d728699dbc0c482b12804cb
result, different first party:
89b2cd7523aa35cf2f66839de6c8c3f64ac8d4b308fc2a6aa3c290f40ce195bd,
ac8ab3d83650fa8da033e3989bdb5d5e8bf852cd40b7ceae0b8e2451ab86d2ff,
b359c9d8c2b26ce60e760788e4242e47e976e004f53eaf35d237acb47f9c566f,
5bfdb47170647483436ac0fee0dea3bc3c7c84d7a865cd56e52b5bdbd21113b8,
4d617fcc937e26c89e4201f7d473babc55cf3d58828a3778a1b3802f8aad4465
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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const countResponse = await fetch(testURI('ctr', 'xhr', key),
          { cache: 'reload' });
        return (await countResponse.text()).trim();
      }
result, same first party: 1, 1, 1
result, different first party: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        const req = new window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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/
result, different first party:
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/,
https://test-pages.privacytests2.org/
unsupported: false, false, false
passed: false, false, false
test failed: 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) => window.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
1149fc16-891c-44a1-9432-2fcb67a8afec,
7f3f882f-bf42-486f-ac40-4b892e427ab5,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
9672e867-6514-4e9c-b9af-155c70873e5c
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
06c4f63c-c3a4-4e44-8828-a674b8662611,
ae95c568-e714-48ea-a374-a7ea8abba7a7,
2e693120-3d0f-4950-aa5f-9778bb90d518,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
c7930b01-006c-4b97-8da7-803c379dce68,
a59a1b0a-5289-46c3-b7bf-d5f343d62375,
62dbe453-71a4-48d5-99fa-d44cc87dcf25,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
db344afd-364b-43c8-9491-33e8c780cbeb
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
65825e45-1344-4626-b6c6-63a3f0fc515e,
9066f6a1-d89e-4393-82dd-1a866fdec175,
c8926a5b-a54f-4b61-81fd-87463c70b7b7,
733581b5-563c-40ae-92fc-b7983cfa51a6,
1b047f33-474e-4570-b33b-10f049be9ac6
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
c596c124-6113-4dc5-9cc3-968ea982394a,
b00fd805-d49d-4f28-8353-40016f4f7a5f,
c76936cb-c522-46b1-b439-e0c57a978e9b,
65a5780f-59e2-49d1-840b-537d809c01ed,
831069eb-e748-405a-8701-4187fa4e735b
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
8affffcb-ccb2-41b8-881e-381df160ad45,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
df44d1b3-e72b-4df2-a0b5-054d1f732b73,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
62cacb5f-5445-410d-83d3-9a33778e4594,
d2e0ede7-9339-4374-8f91-a92d789ed1ea,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
416db85b-38b0-4fa6-a96c-3c4f160cac74
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
ae93286b-ec33-4efa-9291-0b20edc085f6,
af4cad6c-9701-493b-93ee-b124ff883bec,
6b01a2a5-440c-41f7-b841-b9471079703d,
019ae16c-0261-49ea-903d-eeb03dfe4c4d,
58e87ab5-ce3c-480c-a7fb-241de68ce12b
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
5d441ef0-f40f-422d-9739-c114bc2d94e6,
050972df-1052-4c60-9d05-634ae6be9272,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party: , ,
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (secret) => window.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
2043697a-2a8a-48c7-94a9-570140184613,
69a7c791-f889-4415-a89a-2172db33ec88,
817b63b2-fee5-4446-a467-a2a449a5a03e,
882e8118-14b4-4c18-b3bc-cb39e480ce7a,
e3680d96-b956-4a20-b300-749600a5e842
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
9425b73a-f005-4a05-a6f2-6a228afde59d,
a26a6a39-0325-456f-a01d-fed7aa8eee6d,
2f76f639-3e75-406f-8bbc-1cca58e46d78,
3356118d-7ca7-4fc7-a3fb-b83459990d5e,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
2b909a01-4f05-4f0f-8eba-64d9e5508734,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
5d7dea03-99c4-44ac-a928-1835f8bfb309,
2177082e-4041-463f-9803-e2ff90b3e5ba,
177f1d41-1770-4381-890e-d2c9dc0a025d
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.sessionStorage.setItem('secret', secret)
read: () => window.sessionStorage.getItem('secret')
result, same first party:
a30e5906-f75b-4da4-9836-2b3ecdca691f,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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_f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8,
name_1149fc16-891c-44a1-9432-2fcb67a8afec,
name_7f3f882f-bf42-486f-ac40-4b892e427ab5,
name_7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4,
name_9672e867-6514-4e9c-b9af-155c70873e5c
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_c4f8090c-8582-4b7e-8d82-d13cd9a13e47,
name_06c4f63c-c3a4-4e44-8828-a674b8662611,
name_ae95c568-e714-48ea-a374-a7ea8abba7a7,
name_2e693120-3d0f-4950-aa5f-9778bb90d518,
name_74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343
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_c7930b01-006c-4b97-8da7-803c379dce68,
name_a59a1b0a-5289-46c3-b7bf-d5f343d62375,
name_62dbe453-71a4-48d5-99fa-d44cc87dcf25,
name_ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
name_db344afd-364b-43c8-9491-33e8c780cbeb
result, different first party:
name_c7930b01-006c-4b97-8da7-803c379dce68,
name_a59a1b0a-5289-46c3-b7bf-d5f343d62375,
name_62dbe453-71a4-48d5-99fa-d44cc87dcf25,
name_ab526dc2-2b3f-4d34-9d81-3a118363f5ad,
name_db344afd-364b-43c8-9491-33e8c780cbeb
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_65825e45-1344-4626-b6c6-63a3f0fc515e,
name_9066f6a1-d89e-4393-82dd-1a866fdec175,
name_c8926a5b-a54f-4b61-81fd-87463c70b7b7,
name_733581b5-563c-40ae-92fc-b7983cfa51a6,
name_1b047f33-474e-4570-b33b-10f049be9ac6
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_c596c124-6113-4dc5-9cc3-968ea982394a,
name_b00fd805-d49d-4f28-8353-40016f4f7a5f,
name_c76936cb-c522-46b1-b439-e0c57a978e9b,
name_65a5780f-59e2-49d1-840b-537d809c01ed,
name_831069eb-e748-405a-8701-4187fa4e735b
result, different first party:
name_c596c124-6113-4dc5-9cc3-968ea982394a,
name_b00fd805-d49d-4f28-8353-40016f4f7a5f,
name_c76936cb-c522-46b1-b439-e0c57a978e9b,
name_65a5780f-59e2-49d1-840b-537d809c01ed,
name_831069eb-e748-405a-8701-4187fa4e735b
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_8affffcb-ccb2-41b8-881e-381df160ad45,
name_2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5,
name_3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33,
name_df44d1b3-e72b-4df2-a0b5-054d1f732b73,
name_7b45432e-0b5d-40c0-9e2c-e3048680c5a0
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_1fdd9c24-226d-4a3f-8485-6dbe5c950ebb,
name_62cacb5f-5445-410d-83d3-9a33778e4594,
name_d2e0ede7-9339-4374-8f91-a92d789ed1ea,
name_dccd5c48-2f5a-41a1-8f15-a8768a9c702d,
name_416db85b-38b0-4fa6-a96c-3c4f160cac74
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_ae93286b-ec33-4efa-9291-0b20edc085f6,
name_af4cad6c-9701-493b-93ee-b124ff883bec,
name_6b01a2a5-440c-41f7-b841-b9471079703d,
name_019ae16c-0261-49ea-903d-eeb03dfe4c4d,
name_58e87ab5-ce3c-480c-a7fb-241de68ce12b
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_5d441ef0-f40f-422d-9739-c114bc2d94e6,
name_050972df-1052-4c60-9d05-634ae6be9272,
name_708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
result, different first party:
name_5d441ef0-f40f-422d-9739-c114bc2d94e6,
name_050972df-1052-4c60-9d05-634ae6be9272,
name_708bd5cf-b50c-4ea9-979a-8c94ad99d3f9
unsupported: false, false, false
passed: false, false, false
test failed: false, false, false
Passed
write: (secret) => { window.name = 'name_' + secret; }
read: () => window.name
result, same first party:
name_2043697a-2a8a-48c7-94a9-570140184613,
name_69a7c791-f889-4415-a89a-2172db33ec88,
name_817b63b2-fee5-4446-a467-a2a449a5a03e,
name_882e8118-14b4-4c18-b3bc-cb39e480ce7a,
name_e3680d96-b956-4a20-b300-749600a5e842
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_9425b73a-f005-4a05-a6f2-6a228afde59d,
name_a26a6a39-0325-456f-a01d-fed7aa8eee6d,
name_2f76f639-3e75-406f-8bbc-1cca58e46d78,
name_3356118d-7ca7-4fc7-a3fb-b83459990d5e,
name_40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21
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_2b909a01-4f05-4f0f-8eba-64d9e5508734,
name_1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
name_5d7dea03-99c4-44ac-a928-1835f8bfb309,
name_2177082e-4041-463f-9803-e2ff90b3e5ba,
name_177f1d41-1770-4381-890e-d2c9dc0a025d
result, different first party:
name_2b909a01-4f05-4f0f-8eba-64d9e5508734,
name_1e6eeff2-7ebc-4665-9bc3-fabd64e64351,
name_5d7dea03-99c4-44ac-a928-1835f8bfb309,
name_2177082e-4041-463f-9803-e2ff90b3e5ba,
name_177f1d41-1770-4381-890e-d2c9dc0a025d
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_a30e5906-f75b-4da4-9836-2b3ecdca691f,
name_51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
name_c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
name_01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
name_2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
result, different first party:
name_a30e5906-f75b-4da4-9836-2b3ecdca691f,
name_51bb87eb-4b7f-4f69-989f-24aa33dfaf33,
name_c2a2ce49-65d3-48bd-9873-8347c1bf90c5,
name_01f07d0b-40cd-4ed2-b022-fc25284fb2e2,
name_2b8dc81c-c6ae-4b6f-a9c7-47120e51e249
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
result:
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
passed: 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
passed: 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
result: 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
result: 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
Failed
SNI_status: encrypted
passed: true, false, true, true, true
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, true, false, true, false
Passed
SNI_status: encrypted
passed: true, true, true, true, true
Passed
SNI_status: encrypted
passed: true, true, true
Failed
SNI_status: plaintext
passed: false, false, false, false, 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
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
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
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 hidden
IP addresses can be used to uniquely identify a large percentage of users. A proxy, VPN, or Tor can mask a user's IP address.
Failed
passed: false, false, true, false, true
Passed
passed: true, true, true, true, true
Failed
passed: true, true, true, true, false
Failed
passed: true, true, true, false, true
Failed
passed: false, true, true, true, false
Failed
passed: false, true, true, false, false
Failed
passed: true, true, true, false, true
Failed
passed: true, false, false, true, false
Failed
passed: true, true, false
Failed
passed: false, true, true, false, true
Passed
passed: true, true, true, true, true
Failed
passed: false, true, true, false, true
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:
109.70.100.15,
109.70.100.3,
82.153.138.184,
45.13.225.78,
185.220.100.254
readDifferentFirstParty:
109.70.100.14,
185.220.101.0,
185.231.33.38,
185.220.101.27,
109.70.100.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
readSameFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
readDifferentFirstParty:
Error: Unsupported,
Error: Unsupported,
Error: Unsupported
testFailed: 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, true, false, false, false
readSameFirstParty:
2a03:4000:6:d042:5440:88ff:fedd:4ae5,
Error: Unsupported,
2001:67c:e60:c0c:192:42:116:114,
2001:67c:e60:c0c:192:42:116:105,
2001:67c:e60:c0c:192:42:116:96
readDifferentFirstParty:
2605:6f01:2000:145::4183:1f95,
2605:6f08:2000:24::f182:67c5,
2a04:52c0:1000:253::253,
2a0b:f4c2::13,
2001:67c:e60:c0c:192:42:116:45
passed: 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
Tor enabled
The Tor network sends the browser's web requests through a series of relays to hide a user's IP address, thereby helping to mask their identity and location. This test checks to see if the Tor network is being used by default.
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Passed
IsTorExit: true, true, true, true, true
passed: true, true, true, true, true
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false
passed: false, false, false
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Passed
IsTorExit: true, true, true, true, true
passed: true, true, true, true, true
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
Failed
IsTorExit: false, false, false, false, false
passed: false, false, false, false, false
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
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
passed: false, false, false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false
Passed
passed: true, true, true, true, true
Passed
passed: true, true, true, true, true
Failed
value: 15714489077561944
passed: false, false, false, false, false
Failed
value: 15714489077561944
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, false
Passed
url: https://munchkin.marketo.net/munchkin.js
Failed
url: https://munchkin.marketo.net/munchkin.js
passed: false
Adobe Audience Manager
Tests whether the browser blocks the page from loading the tracker at https://dpm.demdex.net/ibs
Passed
url: https://dpm.demdex.net/ibs
passed: true, true, true, true, true
Passed
url: https://dpm.demdex.net/ibs
passed: true, true, true, true, true
Failed
url: https://dpm.demdex.net/ibs
passed: false, false, false, false
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
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
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, 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, 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
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, 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
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
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, false
Bing Ads
Tests whether the browser blocks the page from loading the tracker at https://bat.bing.com/bat.js
Passed
url: https://bat.bing.com/bat.js
passed: true, true, true, true, true
Passed
url: https://bat.bing.com/bat.js
passed: true, true, true, true, true
Failed
url: https://bat.bing.com/bat.js
passed: , false, false
Passed
url: https://bat.bing.com/bat.js
passed: true, true, true, true, true
Failed
url: https://bat.bing.com/bat.js
passed: false, false, false
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
Passed
url: https://bat.bing.com/bat.js
Passed
url: https://bat.bing.com/bat.js
Failed
url: https://bat.bing.com/bat.js
passed: , false, false
Failed
url: https://bat.bing.com/bat.js
passed: , false
Passed
url: https://bat.bing.com/bat.js
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
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, 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
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, false
Failed
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: 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
Failed
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: , false, 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: 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
Passed
url: https://securepubads.g.doubleclick.net/static/glade.js
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
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
Passed
url: https://connect.facebook.net/en_US/fbevents.js
passed: true, true, true, true, true
Failed
url: https://connect.facebook.net/en_US/fbevents.js
passed: false, false, false, false, false
Failed
url: https://connect.facebook.net/en_US/fbevents.js
passed: false, false, false, false, false
Failed
url: https://connect.facebook.net/en_US/fbevents.js
passed: false, false, false, false, false
Google (third-party ad pixel)
Tests whether the browser blocks the page from loading the tracker at https://www.google.com/pagead/1p-user-list/
Passed
url: https://www.google.com/pagead/1p-user-list/
passed: true, true, true, true, true
Passed
url: https://www.google.com/pagead/1p-user-list/
passed: true, true, true, true, true
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: , false
Passed
url: https://www.google.com/pagead/1p-user-list/
passed: true, true, true, true, true
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false
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
Passed
url: https://www.google.com/pagead/1p-user-list/
Passed
url: https://www.google.com/pagead/1p-user-list/
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false, false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: false, false, false, false
Failed
url: https://www.google.com/pagead/1p-user-list/
passed: , 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
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
Passed
url: https://google-analytics.com/urchin.js
passed: true, true, true, true, true
Failed
url: https://google-analytics.com/urchin.js
passed: , false
Failed
url: https://google-analytics.com/urchin.js
passed: false, 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
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
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
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, false, false
Failed
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: , false, false
Index Exchange
Tests whether the browser blocks the page from loading the tracker at https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
Passed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: true, true, true, true, true
Passed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: true, true, true, true, true
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: , false
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
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
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, false, false
Failed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: , false, false
Passed
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
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
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
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, false
Failed
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false, false, false, false, false
Quantcast
Tests whether the browser blocks the page from loading the tracker at https://pixel.quantserve.com/pixel
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true, true
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true, true
Failed
url: https://pixel.quantserve.com/pixel
passed: false, false, false
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true, true
Passed
url: https://pixel.quantserve.com/pixel
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true, true
Passed
url: https://pixel.quantserve.com/pixel
passed: true, true, true, true, true
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, false, false
Failed
url: https://pixel.quantserve.com/pixel
passed: , false
Scorecard Research Beacon
Tests whether the browser blocks the page from loading the tracker at https://sb.scorecardresearch.com/internal-c2/default/cs.js
Passed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: true, true, true, true, true
Passed
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: true, true, true, true, true
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
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
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
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
Passed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
Failed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: , false
Failed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false, false, false, false, false
Failed
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false, false, false, false, false
Twitter pixel
Tests whether the browser blocks the page from loading the tracker at https://t.co/i/adsct
Passed
url: https://t.co/i/adsct
passed: true, true, true, true, true
Passed
url: https://t.co/i/adsct
passed: true, true, true, true, true
Failed
url: https://t.co/i/adsct
passed: , false, false, false
Passed
url: https://t.co/i/adsct
passed: true, true, true, true, true
Failed
url: https://t.co/i/adsct
passed: false, 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, false, false
Failed
url: https://t.co/i/adsct
passed: , 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
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
url: https://munchkin.marketo.net/munchkin.js
cookieFound: 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
url: https://dpm.demdex.net/ibs
cookieFound: 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
url: https://s.amazon-adsystem.com/dcm
cookieFound: 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
url: https://ib.adnxs.com/px?id=178248&t=1
cookieFound: 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
url: https://bat.bing.com/bat.js
cookieFound: 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
url: https://static.chartbeat.com/js/chartbeat.js
cookieFound: 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
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
cookieFound: 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
url: https://securepubads.g.doubleclick.net/static/glade.js
cookieFound: 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
url: https://connect.facebook.net/en_US/fbevents.js
cookieFound: 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
url: https://www.google.com/pagead/1p-user-list/
cookieFound: 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
url: https://google-analytics.com/urchin.js
cookieFound: 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
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
cookieFound: 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
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
cookieFound: 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
url: https://js-agent.newrelic.com/nr-1212.min.js
cookieFound: 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
url: https://pixel.quantserve.com/pixel
cookieFound: 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
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
cookieFound: 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
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
cookieFound: 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
url: https://t.co/i/adsct
cookieFound: 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
url: https://yandex.ru/ads/system/header-bidding.js
cookieFound: 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(window.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(window.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(window.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(window.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(window.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(window.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(window.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(window.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(window.location)).searchParams.get('thirdparty') === 'same') {
          if (protocol !== 'h3') {
            throw new Error('Unsupported');
          }
        }
        return protocol;
      }
result, same session: h3, h3, h3
result, different session: h2, h2, h2
unsupported: false, false, false
passed: true, true, true
test failed: 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(window.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(window.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(window.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(window.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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_1p,
1149fc16-891c-44a1-9432-2fcb67a8afec_1p,
7f3f882f-bf42-486f-ac40-4b892e427ab5_1p,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_1p,
9672e867-6514-4e9c-b9af-155c70873e5c_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_1p,
06c4f63c-c3a4-4e44-8828-a674b8662611_1p,
ae95c568-e714-48ea-a374-a7ea8abba7a7_1p,
2e693120-3d0f-4950-aa5f-9778bb90d518_1p,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
c7930b01-006c-4b97-8da7-803c379dce68_1p,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_1p,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_1p,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_1p,
db344afd-364b-43c8-9491-33e8c780cbeb_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p,
1b047f33-474e-4570-b33b-10f049be9ac6_1p
result, different session:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p,
1b047f33-474e-4570-b33b-10f049be9ac6_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
c596c124-6113-4dc5-9cc3-968ea982394a_1p,
b00fd805-d49d-4f28-8353-40016f4f7a5f_1p,
c76936cb-c522-46b1-b439-e0c57a978e9b_1p,
65a5780f-59e2-49d1-840b-537d809c01ed_1p,
831069eb-e748-405a-8701-4187fa4e735b_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
8affffcb-ccb2-41b8-881e-381df160ad45_1p,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_1p,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_1p,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_1p,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_1p,
62cacb5f-5445-410d-83d3-9a33778e4594_1p,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_1p,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_1p,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
ae93286b-ec33-4efa-9291-0b20edc085f6_1p,
af4cad6c-9701-493b-93ee-b124ff883bec_1p,
6b01a2a5-440c-41f7-b841-b9471079703d_1p,
019ae16c-0261-49ea-903d-eeb03dfe4c4d_1p,
58e87ab5-ce3c-480c-a7fb-241de68ce12b_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
5d441ef0-f40f-422d-9739-c114bc2d94e6_1p,
050972df-1052-4c60-9d05-634ae6be9272_1p,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_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')
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Unsupported
write: async (key) => {
        try {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const 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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
9425b73a-f005-4a05-a6f2-6a228afde59d_1p,
a26a6a39-0325-456f-a01d-fed7aa8eee6d_1p,
2f76f639-3e75-406f-8bbc-1cca58e46d78_1p,
3356118d-7ca7-4fc7-a3fb-b83459990d5e_1p,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
2b909a01-4f05-4f0f-8eba-64d9e5508734_1p,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_1p,
5d7dea03-99c4-44ac-a928-1835f8bfb309_1p,
2177082e-4041-463f-9803-e2ff90b3e5ba_1p,
177f1d41-1770-4381-890e-d2c9dc0a025d_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
a30e5906-f75b-4da4-9836-2b3ecdca691f_1p,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_1p,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_1p,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_1p,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_1p_http,
1149fc16-891c-44a1-9432-2fcb67a8afec_1p_http,
7f3f882f-bf42-486f-ac40-4b892e427ab5_1p_http,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_1p_http,
9672e867-6514-4e9c-b9af-155c70873e5c_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_1p_http,
06c4f63c-c3a4-4e44-8828-a674b8662611_1p_http,
ae95c568-e714-48ea-a374-a7ea8abba7a7_1p_http,
2e693120-3d0f-4950-aa5f-9778bb90d518_1p_http,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
c7930b01-006c-4b97-8da7-803c379dce68_1p_http,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_1p_http,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_1p_http,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_1p_http,
db344afd-364b-43c8-9491-33e8c780cbeb_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p_http,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p_http,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p_http,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p_http,
1b047f33-474e-4570-b33b-10f049be9ac6_1p_http
result, different session:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p_http,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p_http,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p_http,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p_http,
1b047f33-474e-4570-b33b-10f049be9ac6_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
c596c124-6113-4dc5-9cc3-968ea982394a_1p_http,
b00fd805-d49d-4f28-8353-40016f4f7a5f_1p_http,
c76936cb-c522-46b1-b439-e0c57a978e9b_1p_http,
65a5780f-59e2-49d1-840b-537d809c01ed_1p_http,
831069eb-e748-405a-8701-4187fa4e735b_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
8affffcb-ccb2-41b8-881e-381df160ad45_1p_http,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_1p_http,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_1p_http,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_1p_http,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_1p_http,
62cacb5f-5445-410d-83d3-9a33778e4594_1p_http,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_1p_http,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_1p_http,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
ae93286b-ec33-4efa-9291-0b20edc085f6_1p_http,
af4cad6c-9701-493b-93ee-b124ff883bec_1p_http,
6b01a2a5-440c-41f7-b841-b9471079703d_1p_http,
019ae16c-0261-49ea-903d-eeb03dfe4c4d_1p_http,
58e87ab5-ce3c-480c-a7fb-241de68ce12b_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
5d441ef0-f40f-422d-9739-c114bc2d94e6_1p_http,
050972df-1052-4c60-9d05-634ae6be9272_1p_http,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_1p_http
result, different session: , ,
unsupported: false, false, false
passed: true, true, true
test failed: 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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
9425b73a-f005-4a05-a6f2-6a228afde59d_1p_http,
a26a6a39-0325-456f-a01d-fed7aa8eee6d_1p_http,
2f76f639-3e75-406f-8bbc-1cca58e46d78_1p_http,
3356118d-7ca7-4fc7-a3fb-b83459990d5e_1p_http,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
2b909a01-4f05-4f0f-8eba-64d9e5508734_1p_http,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_1p_http,
5d7dea03-99c4-44ac-a928-1835f8bfb309_1p_http,
2177082e-4041-463f-9803-e2ff90b3e5ba_1p_http,
177f1d41-1770-4381-890e-d2c9dc0a025d_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
a30e5906-f75b-4da4-9836-2b3ecdca691f_1p_http,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_1p_http,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_1p_http,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_1p_http,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_1p_js,
1149fc16-891c-44a1-9432-2fcb67a8afec_1p_js,
7f3f882f-bf42-486f-ac40-4b892e427ab5_1p_js,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_1p_js,
9672e867-6514-4e9c-b9af-155c70873e5c_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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_1p_js,
06c4f63c-c3a4-4e44-8828-a674b8662611_1p_js,
ae95c568-e714-48ea-a374-a7ea8abba7a7_1p_js,
2e693120-3d0f-4950-aa5f-9778bb90d518_1p_js,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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:
c7930b01-006c-4b97-8da7-803c379dce68_1p_js,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_1p_js,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_1p_js,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_1p_js,
db344afd-364b-43c8-9491-33e8c780cbeb_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:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p_js,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p_js,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p_js,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p_js,
1b047f33-474e-4570-b33b-10f049be9ac6_1p_js
result, different session:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p_js,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p_js,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p_js,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p_js,
1b047f33-474e-4570-b33b-10f049be9ac6_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:
c596c124-6113-4dc5-9cc3-968ea982394a_1p_js,
b00fd805-d49d-4f28-8353-40016f4f7a5f_1p_js,
c76936cb-c522-46b1-b439-e0c57a978e9b_1p_js,
65a5780f-59e2-49d1-840b-537d809c01ed_1p_js,
831069eb-e748-405a-8701-4187fa4e735b_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:
8affffcb-ccb2-41b8-881e-381df160ad45_1p_js,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_1p_js,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_1p_js,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_1p_js,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_1p_js,
62cacb5f-5445-410d-83d3-9a33778e4594_1p_js,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_1p_js,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_1p_js,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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:
ae93286b-ec33-4efa-9291-0b20edc085f6_1p_js,
af4cad6c-9701-493b-93ee-b124ff883bec_1p_js,
6b01a2a5-440c-41f7-b841-b9471079703d_1p_js,
019ae16c-0261-49ea-903d-eeb03dfe4c4d_1p_js,
58e87ab5-ce3c-480c-a7fb-241de68ce12b_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:
5d441ef0-f40f-422d-9739-c114bc2d94e6_1p_js,
050972df-1052-4c60-9d05-634ae6be9272_1p_js,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_1p_js
result, different session: , ,
unsupported: false, false, false
passed: true, true, true
test failed: 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:
9425b73a-f005-4a05-a6f2-6a228afde59d_1p_js,
a26a6a39-0325-456f-a01d-fed7aa8eee6d_1p_js,
2f76f639-3e75-406f-8bbc-1cca58e46d78_1p_js,
3356118d-7ca7-4fc7-a3fb-b83459990d5e_1p_js,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21_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:
2b909a01-4f05-4f0f-8eba-64d9e5508734_1p_js,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_1p_js,
5d7dea03-99c4-44ac-a928-1835f8bfb309_1p_js,
2177082e-4041-463f-9803-e2ff90b3e5ba_1p_js,
177f1d41-1770-4381-890e-d2c9dc0a025d_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:
a30e5906-f75b-4da4-9836-2b3ecdca691f_1p_js,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_1p_js,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_1p_js,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_1p_js,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_1p,
1149fc16-891c-44a1-9432-2fcb67a8afec_1p,
7f3f882f-bf42-486f-ac40-4b892e427ab5_1p,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_1p,
9672e867-6514-4e9c-b9af-155c70873e5c_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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_1p,
06c4f63c-c3a4-4e44-8828-a674b8662611_1p,
ae95c568-e714-48ea-a374-a7ea8abba7a7_1p,
2e693120-3d0f-4950-aa5f-9778bb90d518_1p,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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:
c7930b01-006c-4b97-8da7-803c379dce68_1p,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_1p,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_1p,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_1p,
db344afd-364b-43c8-9491-33e8c780cbeb_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:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p,
1b047f33-474e-4570-b33b-10f049be9ac6_1p
result, different session:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p,
1b047f33-474e-4570-b33b-10f049be9ac6_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:
c596c124-6113-4dc5-9cc3-968ea982394a_1p,
b00fd805-d49d-4f28-8353-40016f4f7a5f_1p,
c76936cb-c522-46b1-b439-e0c57a978e9b_1p,
65a5780f-59e2-49d1-840b-537d809c01ed_1p,
831069eb-e748-405a-8701-4187fa4e735b_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:
8affffcb-ccb2-41b8-881e-381df160ad45_1p,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_1p,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_1p,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_1p,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_1p,
62cacb5f-5445-410d-83d3-9a33778e4594_1p,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_1p,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_1p,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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:
ae93286b-ec33-4efa-9291-0b20edc085f6_1p,
af4cad6c-9701-493b-93ee-b124ff883bec_1p,
6b01a2a5-440c-41f7-b841-b9471079703d_1p,
019ae16c-0261-49ea-903d-eeb03dfe4c4d_1p,
58e87ab5-ce3c-480c-a7fb-241de68ce12b_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:
5d441ef0-f40f-422d-9739-c114bc2d94e6_1p,
050972df-1052-4c60-9d05-634ae6be9272_1p,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_1p
result, different session: , ,
unsupported: false, false, false
passed: true, true, true
test failed: 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:
9425b73a-f005-4a05-a6f2-6a228afde59d_1p,
a26a6a39-0325-456f-a01d-fed7aa8eee6d_1p,
2f76f639-3e75-406f-8bbc-1cca58e46d78_1p,
3356118d-7ca7-4fc7-a3fb-b83459990d5e_1p,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21_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:
2b909a01-4f05-4f0f-8eba-64d9e5508734_1p,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_1p,
5d7dea03-99c4-44ac-a928-1835f8bfb309_1p,
2177082e-4041-463f-9803-e2ff90b3e5ba_1p,
177f1d41-1770-4381-890e-d2c9dc0a025d_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:
a30e5906-f75b-4da4-9836-2b3ecdca691f_1p,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_1p,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_1p,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_1p,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_4806436504186202,
fake_2155108278772757,
fake_6984720451444955,
fake_9241607927457174,
fake_956770172041689
result, different session:
fake_8171295023558924,
fake_14320020031613923,
fake_5403245666393943,
fake_42008662681029985,
fake_7394028587170853
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_4657634493171283,
fake_6444612997104238,
fake_11316728675943621,
fake_2669727954782619,
fake_6280902248869424
result, different session:
fake_48691158485790664,
fake_1331219517757416,
fake_6971338134379461,
fake_857640497025604,
fake_9368496879191919
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_7313679976042882,
fake_14650086194007517,
fake_19643447963637084,
fake_23239685881329786,
fake_8147554965984967
result, different session:
fake_659484773807254,
fake_5235612597594639,
fake_8980465537800162,
fake_887051031197998,
fake_2923440604496583
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_827467368559043,
fake_11114089433308583,
fake_41359078134620675,
fake_6300184666987538,
fake_22532588725463665
result, different session:
fake_827467368559043,
fake_11114089433308583,
fake_41359078134620675,
fake_6300184666987538,
fake_22532588725463665
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_061648195941352846,
fake_46006779723854097,
fake_21600186799122945,
fake_44767789841197936,
fake_7285222128226072
result, different session:
fake_11241757075523662,
fake_08404182676289995,
fake_5303696644611959,
fake_07277143961495991,
fake_9913125360611657
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_9007400298376396,
fake_8326682017917031,
fake_009893436787559162,
fake_9761842476453333,
fake_9533069599031567
result, different session:
fake_009994678527705192,
fake_8850196792424536,
fake_749305897593251,
fake_8479120236600888,
fake_3539852409379487
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_909829418239839,
fake_6970046924624484,
fake_49246614508754294,
fake_49043070121269383,
fake_399205217438946
result, different session:
fake_36759599580434243,
fake_7590308455873418,
fake_3898542895761208,
fake_5257228700612575,
fake_6626343096981622
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_22080822094148744,
fake_560550331323374,
fake_3143976349824438,
fake_6026315973336105,
fake_532892815293565
result, different session:
fake_4981655542933401,
fake_6910981864999026,
fake_5177037166442156,
fake_6695754767381901,
fake_46318217067124223
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_8230480604213082,
fake_8240619313359567,
fake_5063126324889589
result, different session:
fake_17288262323246673,
fake_6213260888777012,
fake_7635825191778511
unsupported: false, false, false
passed: true, true, true
test failed: 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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_943677699311297,
fake_9945787647387392,
fake_9864555797108432,
fake_08926813822664936,
fake_3513144557542216
result, different session:
fake_3552665520293776,
fake_22811232092226197,
fake_36750895216683865,
fake_7704347979063837,
fake_9428170450884676
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_023005569556504346,
fake_3626330648699785,
fake_6248605246938208,
fake_7305427825164803,
fake_9062241761203742
result, different session:
fake_4817359865741768,
fake_06332379733271343,
fake_6581162863575207,
fake_030686815356163688,
fake_9068145397419878
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_19755410940183182,
fake_576813727175373,
fake_5034785446882739,
fake_3330144675143387,
fake_4216740605133411
result, different session:
fake_06531166713356651,
fake_6757843520530915,
fake_6855374001998182,
fake_09655803266794294,
fake_028564605499918017
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_004576313835815693,
fake_9920258810398725,
fake_8766739339934504,
fake_8737280813596418,
fake_7560191674344221
result, different session:
fake_2725148813023148,
fake_15914408416542614,
fake_38002276913899347,
fake_7668889982570837,
fake_9955515238925341
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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const count = (await response.text()).trim();
        if (count === '0') {
          throw new Error('No requests received');
        }
        return count;
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
        await sleepMs(2000);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const countResponse = await fetch(testURI('ctr', 'fetch', key),
          { cache: 'reload' });
        return (await countResponse.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const response = await fetch(
          testURI('ctr', 'font', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const response = await fetch(
          testURI('ctr', 'page', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const response = await fetch(
          testURI('ctr', 'image', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_1p,
1149fc16-891c-44a1-9432-2fcb67a8afec_1p,
7f3f882f-bf42-486f-ac40-4b892e427ab5_1p,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_1p,
9672e867-6514-4e9c-b9af-155c70873e5c_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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_1p,
06c4f63c-c3a4-4e44-8828-a674b8662611_1p,
ae95c568-e714-48ea-a374-a7ea8abba7a7_1p,
2e693120-3d0f-4950-aa5f-9778bb90d518_1p,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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:
c7930b01-006c-4b97-8da7-803c379dce68_1p,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_1p,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_1p,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_1p,
db344afd-364b-43c8-9491-33e8c780cbeb_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:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p,
1b047f33-474e-4570-b33b-10f049be9ac6_1p
result, different session:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p,
1b047f33-474e-4570-b33b-10f049be9ac6_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:
c596c124-6113-4dc5-9cc3-968ea982394a_1p,
b00fd805-d49d-4f28-8353-40016f4f7a5f_1p,
c76936cb-c522-46b1-b439-e0c57a978e9b_1p,
65a5780f-59e2-49d1-840b-537d809c01ed_1p,
831069eb-e748-405a-8701-4187fa4e735b_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:
8affffcb-ccb2-41b8-881e-381df160ad45_1p,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_1p,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_1p,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_1p,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_1p,
62cacb5f-5445-410d-83d3-9a33778e4594_1p,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_1p,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_1p,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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:
ae93286b-ec33-4efa-9291-0b20edc085f6_1p,
af4cad6c-9701-493b-93ee-b124ff883bec_1p,
6b01a2a5-440c-41f7-b841-b9471079703d_1p,
019ae16c-0261-49ea-903d-eeb03dfe4c4d_1p,
58e87ab5-ce3c-480c-a7fb-241de68ce12b_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:
5d441ef0-f40f-422d-9739-c114bc2d94e6_1p,
050972df-1052-4c60-9d05-634ae6be9272_1p,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_1p
result, different session: undefined
unsupported: false, false, false
passed: true, true, true
test failed: 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:
9425b73a-f005-4a05-a6f2-6a228afde59d_1p,
a26a6a39-0325-456f-a01d-fed7aa8eee6d_1p,
2f76f639-3e75-406f-8bbc-1cca58e46d78_1p,
3356118d-7ca7-4fc7-a3fb-b83459990d5e_1p,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21_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:
2b909a01-4f05-4f0f-8eba-64d9e5508734_1p,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_1p,
5d7dea03-99c4-44ac-a928-1835f8bfb309_1p,
2177082e-4041-463f-9803-e2ff90b3e5ba_1p,
177f1d41-1770-4381-890e-d2c9dc0a025d_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:
a30e5906-f75b-4da4-9836-2b3ecdca691f_1p,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_1p,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_1p,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_1p,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_1p,
1149fc16-891c-44a1-9432-2fcb67a8afec_1p,
7f3f882f-bf42-486f-ac40-4b892e427ab5_1p,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_1p,
9672e867-6514-4e9c-b9af-155c70873e5c_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_1p,
06c4f63c-c3a4-4e44-8828-a674b8662611_1p,
ae95c568-e714-48ea-a374-a7ea8abba7a7_1p,
2e693120-3d0f-4950-aa5f-9778bb90d518_1p,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
c7930b01-006c-4b97-8da7-803c379dce68_1p,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_1p,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_1p,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_1p,
db344afd-364b-43c8-9491-33e8c780cbeb_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p,
1b047f33-474e-4570-b33b-10f049be9ac6_1p
result, different session:
65825e45-1344-4626-b6c6-63a3f0fc515e_1p,
9066f6a1-d89e-4393-82dd-1a866fdec175_1p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_1p,
733581b5-563c-40ae-92fc-b7983cfa51a6_1p,
1b047f33-474e-4570-b33b-10f049be9ac6_1p
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
Passed
write: (secret) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
c596c124-6113-4dc5-9cc3-968ea982394a_1p,
b00fd805-d49d-4f28-8353-40016f4f7a5f_1p,
c76936cb-c522-46b1-b439-e0c57a978e9b_1p,
65a5780f-59e2-49d1-840b-537d809c01ed_1p,
831069eb-e748-405a-8701-4187fa4e735b_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
8affffcb-ccb2-41b8-881e-381df160ad45_1p,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_1p,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_1p,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_1p,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_1p,
62cacb5f-5445-410d-83d3-9a33778e4594_1p,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_1p,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_1p,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
ae93286b-ec33-4efa-9291-0b20edc085f6_1p,
af4cad6c-9701-493b-93ee-b124ff883bec_1p,
6b01a2a5-440c-41f7-b841-b9471079703d_1p,
019ae16c-0261-49ea-903d-eeb03dfe4c4d_1p,
58e87ab5-ce3c-480c-a7fb-241de68ce12b_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
5d441ef0-f40f-422d-9739-c114bc2d94e6_1p,
050972df-1052-4c60-9d05-634ae6be9272_1p,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_1p
result, different session: , ,
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Unsupported
write: (secret) => { window.localStorage.setItem('secret', secret); }
read: () => window.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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
9425b73a-f005-4a05-a6f2-6a228afde59d_1p,
a26a6a39-0325-456f-a01d-fed7aa8eee6d_1p,
2f76f639-3e75-406f-8bbc-1cca58e46d78_1p,
3356118d-7ca7-4fc7-a3fb-b83459990d5e_1p,
40a6d7a7-5d91-47e9-b9bb-2e9f0977ad21_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
2b909a01-4f05-4f0f-8eba-64d9e5508734_1p,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_1p,
5d7dea03-99c4-44ac-a928-1835f8bfb309_1p,
2177082e-4041-463f-9803-e2ff90b3e5ba_1p,
177f1d41-1770-4381-890e-d2c9dc0a025d_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
a30e5906-f75b-4da4-9836-2b3ecdca691f_1p,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_1p,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_1p,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_1p,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const countString = (await response.text()).trim();
        if (parseInt(countString) === 0) {
          throw new Error('No requests received');
        }
        return countString;
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Unsupported
write: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const response = await fetch(
          testURI('ctr', 'script', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const countResponse = await fetch(testURI('ctr', 'xhr', key),
          { cache: 'reload' });
        return (await countResponse.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        const req = new window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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(window.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(window.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(window.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(window.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(window.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(window.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(window.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(window.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(window.location)).searchParams.get('thirdparty') === 'same') {
          if (protocol !== 'h3') {
            throw new Error('Unsupported');
          }
        }
        return protocol;
      }
result, same session: h3, h3, h3
result, different session: h2, h2, h2
unsupported: false, false, false
passed: true, true, true
test failed: 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(window.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(window.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(window.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(window.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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_3p,
1149fc16-891c-44a1-9432-2fcb67a8afec_3p,
7f3f882f-bf42-486f-ac40-4b892e427ab5_3p,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_3p,
9672e867-6514-4e9c-b9af-155c70873e5c_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_3p,
06c4f63c-c3a4-4e44-8828-a674b8662611_3p,
ae95c568-e714-48ea-a374-a7ea8abba7a7_3p,
2e693120-3d0f-4950-aa5f-9778bb90d518_3p,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
c7930b01-006c-4b97-8da7-803c379dce68_3p,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_3p,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_3p,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_3p,
db344afd-364b-43c8-9491-33e8c780cbeb_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
65825e45-1344-4626-b6c6-63a3f0fc515e_3p,
9066f6a1-d89e-4393-82dd-1a866fdec175_3p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_3p,
733581b5-563c-40ae-92fc-b7983cfa51a6_3p,
1b047f33-474e-4570-b33b-10f049be9ac6_3p
result, different session:
65825e45-1344-4626-b6c6-63a3f0fc515e_3p,
9066f6a1-d89e-4393-82dd-1a866fdec175_3p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_3p,
733581b5-563c-40ae-92fc-b7983cfa51a6_3p,
1b047f33-474e-4570-b33b-10f049be9ac6_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
c596c124-6113-4dc5-9cc3-968ea982394a_3p,
b00fd805-d49d-4f28-8353-40016f4f7a5f_3p,
c76936cb-c522-46b1-b439-e0c57a978e9b_3p,
65a5780f-59e2-49d1-840b-537d809c01ed_3p,
831069eb-e748-405a-8701-4187fa4e735b_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
8affffcb-ccb2-41b8-881e-381df160ad45_3p,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_3p,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_3p,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_3p,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_3p,
62cacb5f-5445-410d-83d3-9a33778e4594_3p,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_3p,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_3p,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const 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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
5d441ef0-f40f-422d-9739-c114bc2d94e6_3p,
050972df-1052-4c60-9d05-634ae6be9272_3p,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_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')
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Unsupported
write: async (key) => {
        try {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const 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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const 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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
2b909a01-4f05-4f0f-8eba-64d9e5508734_3p,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_3p,
5d7dea03-99c4-44ac-a928-1835f8bfb309_3p,
2177082e-4041-463f-9803-e2ff90b3e5ba_3p,
177f1d41-1770-4381-890e-d2c9dc0a025d_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 {
          const cache = await window.caches.open('supercookies');
          cache.addAll([`test.css?key=${key}`]);
        } catch (e) {
          throw new Error('Unsupported');
        }
      }
read: async () => {
        const cache = await window.caches.open('supercookies');
        const cacheKeys = await cache.keys();
        const url = cacheKeys[0].url;
        return (new URL(url)).searchParams.get('key');
      }
result, same session:
a30e5906-f75b-4da4-9836-2b3ecdca691f_3p,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_3p,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_3p,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_3p,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_3p_http,
1149fc16-891c-44a1-9432-2fcb67a8afec_3p_http,
7f3f882f-bf42-486f-ac40-4b892e427ab5_3p_http,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_3p_http,
9672e867-6514-4e9c-b9af-155c70873e5c_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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_3p_http,
06c4f63c-c3a4-4e44-8828-a674b8662611_3p_http,
ae95c568-e714-48ea-a374-a7ea8abba7a7_3p_http,
2e693120-3d0f-4950-aa5f-9778bb90d518_3p_http,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session:
8affffcb-ccb2-41b8-881e-381df160ad45_3p_http,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_3p_http,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_3p_http,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_3p_http,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const cookie = (await response.json()).cookie;
        return cookie ? cookie.match(/secret=([\w-]+)/)[1] : null;
      }
result, same session: , ,
result, different session: , ,
unsupported: true, true, true
passed: undefined
test failed: 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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const 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.
        const response = await fetch(`${baseURI}headers`);
        const 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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_3p_js,
1149fc16-891c-44a1-9432-2fcb67a8afec_3p_js,
7f3f882f-bf42-486f-ac40-4b892e427ab5_3p_js,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_3p_js,
9672e867-6514-4e9c-b9af-155c70873e5c_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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_3p_js,
06c4f63c-c3a4-4e44-8828-a674b8662611_3p_js,
ae95c568-e714-48ea-a374-a7ea8abba7a7_3p_js,
2e693120-3d0f-4950-aa5f-9778bb90d518_3p_js,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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:
8affffcb-ccb2-41b8-881e-381df160ad45_3p_js,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_3p_js,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_3p_js,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_3p_js,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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
passed: undefined
test failed: 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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_3p,
1149fc16-891c-44a1-9432-2fcb67a8afec_3p,
7f3f882f-bf42-486f-ac40-4b892e427ab5_3p,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_3p,
9672e867-6514-4e9c-b9af-155c70873e5c_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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_3p,
06c4f63c-c3a4-4e44-8828-a674b8662611_3p,
ae95c568-e714-48ea-a374-a7ea8abba7a7_3p,
2e693120-3d0f-4950-aa5f-9778bb90d518_3p,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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:
8affffcb-ccb2-41b8-881e-381df160ad45_3p,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_3p,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_3p,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_3p,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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
passed: undefined
test failed: 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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_33662783853619604,
fake_5057326827004711,
fake_2603547979267187,
fake_002040736493823303,
fake_03069536590651545
result, different session:
fake_6484522953724161,
fake_18060208147271561,
fake_7652144672118519,
fake_8836472842860545,
fake_9600564273778125
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_6497179433766165,
fake_03087984432636448,
fake_9487310081885179,
fake_3990129792151125,
fake_47290283293970514
result, different session:
fake_21778961714210476,
fake_9169179091020117,
fake_33515999658816487,
fake_8635179417414232,
fake_8291893015781773
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_012758242513400964,
fake_028945410469610744,
fake_5113475019198714,
fake_9490004456788419,
fake_3387219244201578
result, different session:
fake_5853947454158615,
fake_011062466790234815,
fake_9899781263681984,
fake_7191721729834843,
fake_13725979860211956
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_2520921515814638,
fake_2675307185281377,
fake_9647333940490552,
fake_5447044237659846,
fake_22648641022202698
result, different session:
fake_2520921515814638,
fake_2675307185281377,
fake_9647333940490552,
fake_5447044237659846,
fake_22648641022202698
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_25152815981489174,
fake_24524210235362087,
fake_09723099456640161,
fake_5092596157903335,
fake_34421906835060634
result, different session:
fake_6031888699678654,
fake_5663469861958059,
fake_841855230447472,
fake_9679933687033635,
fake_9266071392494433
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_950636632035986,
fake_996244707085657,
fake_7873178919693131,
fake_24694890858548502,
fake_4794377740015261
result, different session:
fake_2203906251739527,
fake_8500949870492285,
fake_5767568169618873,
fake_6287624487730885,
fake_7521477460063484
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_7353684615536553,
fake_5752848802287753,
fake_9793860274294057,
fake_5152014845932453,
fake_11228956855747785
result, different session:
fake_9878723426526952,
fake_2855332382962146,
fake_8209350511966058,
fake_9133204331879081,
fake_7157959703818668
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_33183019220073073,
fake_49080518741407864,
fake_4419035150802435,
fake_5457884745206114,
fake_579122635144897
result, different session:
fake_7923410714772281,
fake_39629902509331205,
fake_12443962624750382,
fake_008952507611678762,
fake_1363808621813476
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_2502155165057909,
fake_8282182929200745,
fake_19836071510505549
result, different session:
fake_6540260565585769,
fake_3836450295059062,
fake_18436451089049122
unsupported: false, false, false
passed: true, true, true
test failed: 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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_3924491657828948,
fake_3228787072931718,
fake_02163022289155747,
fake_39556027545932015,
fake_09917704105710357
result, different session:
fake_48553835306512316,
fake_00027395222997217417,
fake_1712758330851587,
fake_9841558376368491,
fake_21669716063297884
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_8176336797703443,
fake_27675498833068835,
fake_8926776979829376,
fake_8991215054753376,
fake_9460287922724464
result, different session:
fake_18284502030913363,
fake_580623397596475,
fake_47216347213113075,
fake_502028956111656,
fake_08371962557827839
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_5346283901933189,
fake_08694342181997095,
fake_17332573831704545,
fake_012182766351306995,
fake_8622009176597984
result, different session:
fake_6924900461263397,
fake_781073455559677,
fake_36048634323210504,
fake_4165597973028301,
fake_1703191533774009
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 = window.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 = window.getComputedStyle(testElement).fontFamily;
          if (fontFamily.startsWith('fake')) {
            break;
          }
        }
        console.log(fontFamily);
        return fontFamily;
      }
result, same session:
fake_8248334611087103,
fake_2830148136007351,
fake_16204872891905908,
fake_8835034668895889,
fake_9616236454372962
result, different session:
fake_7919613116913782,
fake_824524469118171,
fake_5457048840758343,
fake_4776114559595914,
fake_26993887998857424
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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const count = (await response.text()).trim();
        if (count === '0') {
          throw new Error('No requests received');
        }
        return count;
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => key
read: async (key) => {
      // Wait for the favicon to load (defined in supercookies.html)
        await sleepMs(2000);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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);
        const response = await fetch(
          testURI('ctr', 'favicon', key), { cache: 'reload' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const countResponse = await fetch(testURI('ctr', 'fetch', key),
          { cache: 'reload' });
        return (await countResponse.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        return key;
      }
read: async (key) => {
        await fetch(testURI('resource', 'fetch', key),
          { cache: 'force-cache' });
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const response = await fetch(
          testURI('ctr', 'font', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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;
        const style = document.createElement('style');
        style.type = 'text/css';
        const 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);
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const response = await fetch(
          testURI('ctr', 'page', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        iframe.addEventListener('load', () => resolve(key), { once: true });
        iframe.src = testURI('resource', 'page', key);
      })
read: async (key) => {
        const iframe = document.createElement('iframe');
        document.body.appendChild(iframe);
        const iframeLoadPromise = new Promise((resolve, reject) => {
          iframe.addEventListener('load', resolve, { once: true });
        });
        const address = testURI('resource', 'page', key);
        iframe.src = address;
        await iframeLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const response = await fetch(
          testURI('ctr', 'image', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        img.addEventListener('load', () => resolve(key), { once: true });
        img.src = testURI('resource', 'image', key);
      })
read: async (key) => {
        const img = document.createElement('img');
        document.body.appendChild(img);
        const imgLoadPromise = new Promise((resolve, reject) => {
          img.addEventListener('load', resolve, { once: true });
        });
        img.src = testURI('resource', 'image', key);
        await imgLoadPromise;
        const 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:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_3p,
1149fc16-891c-44a1-9432-2fcb67a8afec_3p,
7f3f882f-bf42-486f-ac40-4b892e427ab5_3p,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_3p,
9672e867-6514-4e9c-b9af-155c70873e5c_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:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_3p,
06c4f63c-c3a4-4e44-8828-a674b8662611_3p,
ae95c568-e714-48ea-a374-a7ea8abba7a7_3p,
2e693120-3d0f-4950-aa5f-9778bb90d518_3p,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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:
c7930b01-006c-4b97-8da7-803c379dce68_3p,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_3p,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_3p,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_3p,
db344afd-364b-43c8-9491-33e8c780cbeb_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:
65825e45-1344-4626-b6c6-63a3f0fc515e_3p,
9066f6a1-d89e-4393-82dd-1a866fdec175_3p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_3p,
733581b5-563c-40ae-92fc-b7983cfa51a6_3p,
1b047f33-474e-4570-b33b-10f049be9ac6_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:
c596c124-6113-4dc5-9cc3-968ea982394a_3p,
b00fd805-d49d-4f28-8353-40016f4f7a5f_3p,
c76936cb-c522-46b1-b439-e0c57a978e9b_3p,
65a5780f-59e2-49d1-840b-537d809c01ed_3p,
831069eb-e748-405a-8701-4187fa4e735b_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:
8affffcb-ccb2-41b8-881e-381df160ad45_3p,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_3p,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_3p,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_3p,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_3p,
62cacb5f-5445-410d-83d3-9a33778e4594_3p,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_3p,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_3p,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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:
5d441ef0-f40f-422d-9739-c114bc2d94e6_3p,
050972df-1052-4c60-9d05-634ae6be9272_3p,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_3p
result, different session: undefined
unsupported: false, false, false
passed: true, true, true
test failed: 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:
2b909a01-4f05-4f0f-8eba-64d9e5508734_3p,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_3p,
5d7dea03-99c4-44ac-a928-1835f8bfb309_3p,
2177082e-4041-463f-9803-e2ff90b3e5ba_3p,
177f1d41-1770-4381-890e-d2c9dc0a025d_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:
a30e5906-f75b-4da4-9836-2b3ecdca691f_3p,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_3p,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_3p,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_3p,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
f1d08b21-c9a1-4dca-8e1d-c928a9d09ef8_3p,
1149fc16-891c-44a1-9432-2fcb67a8afec_3p,
7f3f882f-bf42-486f-ac40-4b892e427ab5_3p,
7da03d90-d0c5-44f2-b4c1-1bf30aba4ad4_3p,
9672e867-6514-4e9c-b9af-155c70873e5c_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
c4f8090c-8582-4b7e-8d82-d13cd9a13e47_3p,
06c4f63c-c3a4-4e44-8828-a674b8662611_3p,
ae95c568-e714-48ea-a374-a7ea8abba7a7_3p,
2e693120-3d0f-4950-aa5f-9778bb90d518_3p,
74ecf91c-d7b3-4f2a-92e8-f1b1c4bd0343_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
c7930b01-006c-4b97-8da7-803c379dce68_3p,
a59a1b0a-5289-46c3-b7bf-d5f343d62375_3p,
62dbe453-71a4-48d5-99fa-d44cc87dcf25_3p,
ab526dc2-2b3f-4d34-9d81-3a118363f5ad_3p,
db344afd-364b-43c8-9491-33e8c780cbeb_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
65825e45-1344-4626-b6c6-63a3f0fc515e_3p,
9066f6a1-d89e-4393-82dd-1a866fdec175_3p,
c8926a5b-a54f-4b61-81fd-87463c70b7b7_3p,
733581b5-563c-40ae-92fc-b7983cfa51a6_3p,
1b047f33-474e-4570-b33b-10f049be9ac6_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
c596c124-6113-4dc5-9cc3-968ea982394a_3p,
b00fd805-d49d-4f28-8353-40016f4f7a5f_3p,
c76936cb-c522-46b1-b439-e0c57a978e9b_3p,
65a5780f-59e2-49d1-840b-537d809c01ed_3p,
831069eb-e748-405a-8701-4187fa4e735b_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
8affffcb-ccb2-41b8-881e-381df160ad45_3p,
2c2ca91b-16d4-4a17-a1fe-200d0f57cdc5_3p,
3e0eddca-69bc-4f67-b6d3-5f9d4d9e9b33_3p,
df44d1b3-e72b-4df2-a0b5-054d1f732b73_3p,
7b45432e-0b5d-40c0-9e2c-e3048680c5a0_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
1fdd9c24-226d-4a3f-8485-6dbe5c950ebb_3p,
62cacb5f-5445-410d-83d3-9a33778e4594_3p,
d2e0ede7-9339-4374-8f91-a92d789ed1ea_3p,
dccd5c48-2f5a-41a1-8f15-a8768a9c702d_3p,
416db85b-38b0-4fa6-a96c-3c4f160cac74_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
5d441ef0-f40f-422d-9739-c114bc2d94e6_3p,
050972df-1052-4c60-9d05-634ae6be9272_3p,
708bd5cf-b50c-4ea9-979a-8c94ad99d3f9_3p
result, different session: , ,
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Unsupported
write: (secret) => { window.localStorage.setItem('secret', secret); }
read: () => window.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) => { window.localStorage.setItem('secret', secret); }
read: () => window.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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
2b909a01-4f05-4f0f-8eba-64d9e5508734_3p,
1e6eeff2-7ebc-4665-9bc3-fabd64e64351_3p,
5d7dea03-99c4-44ac-a928-1835f8bfb309_3p,
2177082e-4041-463f-9803-e2ff90b3e5ba_3p,
177f1d41-1770-4381-890e-d2c9dc0a025d_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) => { window.localStorage.setItem('secret', secret); }
read: () => window.localStorage.getItem('secret')
result, same session:
a30e5906-f75b-4da4-9836-2b3ecdca691f_3p,
51bb87eb-4b7f-4f69-989f-24aa33dfaf33_3p,
c2a2ce49-65d3-48bd-9873-8347c1bf90c5_3p,
01f07d0b-40cd-4ed2-b022-fc25284fb2e2_3p,
2b8dc81c-c6ae-4b6f-a9c7-47120e51e249_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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const countString = (await response.text()).trim();
        if (parseInt(countString) === 0) {
          throw new Error('No requests received');
        }
        return countString;
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Unsupported
write: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        return key;
      }
read: async (key) => {
        const link = document.createElement('link');
        link.rel = 'prefetch';
        link.href = testURI('resource', 'prefetch', key);
        document.getElementsByTagName('head')[0].appendChild(link);
        await sleepMs(500);
        const response = await fetch(
          testURI('ctr', 'prefetch', key), { cache: 'reload' });
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const response = await fetch(
          testURI('ctr', 'script', key), { cache: 'reload' });
        return (await response.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: (key) => new Promise((resolve, reject) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        script.addEventListener('load', () => resolve(key), { once: true });
        script.src = testURI('resource', 'script', key);
      })
read: async (key) => {
        const script = document.createElement('script');
        document.body.appendChild(script);
        const scriptLoadPromise = new Promise((resolve, reject) => {
          script.addEventListener('load', resolve, { once: true });
        });
        script.src = testURI('resource', 'script', key);
        await scriptLoadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const countResponse = await fetch(testURI('ctr', 'xhr', key),
          { cache: 'reload' });
        return (await countResponse.text()).trim();
      }
result, same session: 1, 1, 1
result, different session: 2, 2, 2
unsupported: false, false, false
passed: true, true, true
test failed: false, false, false
Passed
write: async (key) => {
        const req = new window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const 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 window.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 window.XMLHttpRequest();
        const loadPromise = new Promise(resolve => req.addEventListener('load', resolve));
        req.open('GET', testURI('resource', 'xhr', key));
        req.send();
        await loadPromise;
        const countResponse = await fetch(testURI('ctr', 'xhr', key),
          { cache: 'reload' });
        return (await countResponse.text()).trim();
      }
result, same session: 1, 1, 1, 1, 1
result, different session: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
DNS privacy testsWhich browsers keep their DNS queries encrypted?
The Domain Name System (DNS) is the method by which web browsers look up the IP address for each website you visit. In a DNS query, a web browser will ask a DNS resolver (somewhere on the internet) for the IP address corresponding to a domain name (such as nytimes.com) for a website you want to visit. Traditionally, most web browsers have sent their DNS queries unencrypted, which means your ISP or anyone else on the network between your computer and the DNS resolver can eavesdrop on the websites you visit. In recent years, web browsers and operating systems have begun to introduce encrypted DNS, including the DNS over HTTPS (DoH) protocol, to encrypt the DNS request from your browser and the response from the resolver to keep your browsing history from leaking. These tests check whether a browser is still protecting its DNS requests by sending them encrypted.
Location: Brazil
  Checks whether the browser decides to use
  encrypted DNS if the computer is located in Brazil.
Failed
passed: 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
leak detected: 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
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
leak detected: 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
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
leak detected: 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
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
leak detected: true, true, true
Failed
passed: true, false, true, true, true
leak detected: false, true, 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
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
leak detected: 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
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
leak detected: 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
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
leak detected: true, true, true
Failed
passed: true, false, true, true, true
leak detected: false, true, 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
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
leak detected: 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
leak detected: 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
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
leak detected: 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
leak detected: 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