tor-browser

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

browser_dragdrop_shadow_inner.html (625B)


      1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      2   - License, v. 2.0. If a copy of the MPL was not distributed with this
      3   - file, You can obtain one at https://mozilla.org/MPL/2.0/. -->
      4 
      5   <!DOCTYPE html>
      6   <html>
      7   <head><meta charset="UTF-8"></head>
      8   <body>
      9    <script>
     10      document.body.attachShadow({mode: "open"}).innerHTML = `
     11        <image id="dropSource" draggable="true" width="64" height="64"></image>
     12        <div id="dropTarget" style="width:64px;height:64px;background-color:seagreen"
     13              ondragover="event.preventDefault()"></div>
     14      `;
     15    </script>
     16   </html>