tor-browser

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

helper-drop-vertical-scrollbar.xhtml (500B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3 <head>
      4  <title>Image drag and drop: helper file</title>
      5  <style type="text/css">
      6    div {
      7      width: 1ex;
      8    }
      9  </style>
     10  <script>
     11    function dropImage(event) {
     12      document.querySelector('div').firstChild.nodeValue = 'PASS';
     13    }
     14  </script>
     15 </head>
     16 <body>
     17  <div ondragenter="event.preventDefault()" ondragover="return false" ondrop="dropImage(event)">→ → → → → → →</div>
     18 </body>
     19 </html>