tor-browser

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

003-manual.html (609B)


      1 <!DOCTYPE html>
      2 <?xml version="1.0" encoding="utf-8"?>
      3 <html xmlns="http://www.w3.org/1999/xhtml">
      4 <head>
      5 <title>Adding element to datastore</title>
      6 <style type="text/css">
      7 span
      8  {color:green;
      9  background-color:yellow;}
     10 </style>
     11 <script type="application/ecmascript">
     12 function start(event)
     13  {event.dataTransfer.effectAllowed = 'copy';
     14  event.dataTransfer.addElement(document.querySelector('span'));}
     15 </script>
     16 </head>
     17 <body>
     18 <p><a href="data:text/plain,1" ondragstart="start(event)">Drag me</a></p>
     19 <p>Try to drag link above. You should see word <span>PASS</span> in feedback overlay.</p>
     20 </body>
     21 </html>