tor-browser

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

local_set_item_iframe.html (405B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <body>
      4    <script>
      5        if (('localStorage' in window) && window.localStorage !== null){
      6            try {
      7                localStorage.setItem("name", "user1");
      8            } catch (e) {
      9                parent.fail("setItem method is failed.");
     10            }
     11        } else {
     12            parent.fail("localStorage is not supported.");
     13        }
     14    </script>
     15 </body>
     16 </html>