summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/images/016.xhtml
blob: 3479c8f5013ba5071f26cb0a585a559114b30219 (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
28
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Dropping image on vertical scrollbar of a scrollable block element</title>
<style type="text/css">
div[ondragenter]
	{width:2em;
	height:5em;
	margin-top:1em;
	font-size:1.5em;
	overflow-y:scroll;}
p:first-child
	{padding-left:1em;}
img
	{width:5px;
	height:5px;}
</style>
<script type="application/ecmascript">
function checkImage(event)
	{document.querySelector('div').firstChild.nodeValue = (document.querySelector('img').getAttribute('src') == event.dataTransfer.getData('text/uri-list').replace(/\r\n$/,''))?'P A S S':'F A I L';}
</script>
</head>
<body>
<p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEElEQVR42mNgaGD4D8YwBgAw9AX9Y9zBwwAAAABJRU5ErkJggg==" alt="PNG green pixel" ondragstart="event.dataTransfer.effectAllowed = 'copy'"/></p>
<p>Drag little square above and drop it on scrollbar below. You should see word PASS when you drop it on scrollbar.</p>
<div ondragenter="event.preventDefault()" ondragover="return false" ondrop="checkImage(event)">→ → → → → → → → → → → → → → → → → → → →</div>
</body>
</html>