browser_dragdrop_inner.html (521B)
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 <image id="dropSource" draggable="true" width="64" height="64"></image> 10 <div id="dropTarget" style="width:64px;height:64px;background-color:seagreen" 11 ondragover="event.preventDefault()"></div> 12 </body> 13 </html>