tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

trust-token-redemption-supported-by-feature-policy.tentative.html (497B)


      1 <!DOCTYPE html>
      2 <title>Test that trust token redemption is advertised in the feature list</title>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <script>
      6  test(() => {
      7    assert_true(
      8        document.featurePolicy.features().includes('trust-token-redemption'),
      9        'trust token redemption should be in document.featurePolicy.features()');
     10  }, 'document.featurePolicy.features should advertise trust token redemption.');
     11 </script>