browser_dragdrop_outer.html (554B)
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 <iframe id="iframe"></iframe> 13 </body> 14 </html>