tor-browser

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

session-storage.tentative.https.html (955B)


      1 <!DOCTYPE html>
      2 <!--
      3 This file is marked as "tentative" until:
      4 * The "clone & swap" mechanism for session storage in prerendering described in
      5  https://github.com/whatwg/storage/issues/119 is added to the specification.
      6 -->
      7 <title>Same-origin prerendering can access sessionStorage</title>
      8 <meta name="timeout" content="long">
      9 <script src="/resources/testharness.js"></script>
     10 <script src="/resources/testharnessreport.js"></script>
     11 <script src="/common/utils.js"></script>
     12 <script src="resources/utils.js"></script>
     13 <script src="resources/session-storage-utils.js"></script>
     14 <body>
     15 <script>
     16 const uid = token();
     17 
     18 session_storage_test(
     19  'session-storage-carry-over-to-prerender-page.html', uid);
     20 
     21 session_storage_test(
     22  'session-storage-no-leak-to-initiator-page.html', uid);
     23 
     24 session_storage_test(
     25  'session-storage-isolated-while-prerendering.html', uid);
     26 
     27 session_storage_test(
     28  'session-storage-swap-after-activate.html', uid);
     29 </script>
     30 </body>