14 lines
554 B
HTML
14 lines
554 B
HTML
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at https://mozilla.org/MPL/2.0/. -->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head><meta charset="UTF-8"></head>
|
|
<body>
|
|
<image id="dropSource" draggable="true" width="64" height="64"></image>
|
|
<div id="dropTarget" style="width:64px;height:64px;background-color:seagreen"
|
|
ondragover="event.preventDefault()"></div>
|
|
<iframe id="iframe"></iframe>
|
|
</body>
|
|
</html>
|