tor-browser

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

storage-search.html (600B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <!--
      4 Bug 1224115 - Storage Inspector table filtering
      5 -->
      6 <head>
      7  <meta charset="utf-8">
      8  <title>Storage inspector table filtering test</title>
      9 
     10  <script type="text/javascript">
     11    "use strict";
     12 
     13    /* exported setup */
     14    function setup() {
     15      document.cookie = "01234=56789";
     16      document.cookie = "ANIMAL=hOrSe";
     17      document.cookie = "food=energy bar";
     18      document.cookie = "FOO=bArBaz";
     19      document.cookie = "money=##$$$**";
     20      document.cookie = "sport=football";
     21      document.cookie = "year=2016";
     22    }
     23  </script>
     24 
     25 </head>
     26 <body>
     27 </body>
     28 </html>