summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/images/023.xhtml
blob: a282570d0e5a7a989e96dd486dca1f91441167cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Dropping image on horizontal object scrollbar</title>
<style type="text/css">
p:first-child
	{padding-left:1em;}
object
	{height:3em;
	width:4em;}
img
	{width:5px;
	height:5px;}
</style>
<script type="application/ecmascript">
function dragImage()
	{event.dataTransfer.effectAllowed = 'copy';}
function dropImage(event)
	{document.querySelector('p + p').firstChild.nodeValue = 'PASS';}
</script>
</head>
<body ondragenter="event.preventDefault()" ondragover="return false">
<p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEElEQVR42mNgaGD4D8YwBgAw9AX9Y9zBwwAAAABJRU5ErkJggg==" alt="PNG green pixel" ondragstart="dragImage()" ondragend="dropImage(event)"/></p>
<p>Drag little square above and drop it on horizontal scrollbar. Word PASS should appear once you drop it.</p>
<object type="application/xhtml+xml" data="helper-drop-horizontal-scrollbar.xhtml">XHTML document</object>
</body>
</html>