Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /html/editing/dnd/images/006.html - WPT Dashboard Interop Dashboard
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="../resources/test-helper.js"></script>
<head>
<title>dataURL image drag and drop from iframe</title>
<style type="text/css">
div[ondragenter] {
width: 105px;
min-height: 105px;
text-align: center;
margin-top: 20px;
padding: 10px;
border: solid thin navy;
}
iframe {
width: 150px;
height: 150px;
border-style: none;
}
</style>
<script>
function addImage(event) {
var c = document.createElement('img');
c.setAttribute('src', event.dataTransfer.getData('text/uri-list').replace(/\r\n$/, ''));
document.querySelector('div').appendChild(c);
}
</script>
</head>
<body>
<p><iframe src="helper-drag-me-data-url-image.xhtml">XHTML with image</iframe></p>
<p>Drag circle above to the box below. It should be copied to the box once you drop it there.</p>
<div ondragenter="event.preventDefault()" ondragover="return false" ondrop="addImage(event)"></div>
<script>
async function test() {
await new Promise(loaded => window.addEventListener("load", loaded));
const iframe = document.querySelector('iframe');
const div = document.querySelector('div');
function onDropCallBack(event) {
const img = document.querySelector('img');
assert_equals(frames[0].document.querySelector('img').src, img.src);
return true;
}
dragDropTest(iframe, div, onDropCallBack,
'Dragging a dataURL image from an iframe to a div should copy it there');
}
test();
</script>
</body>
</html>