summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/overlay/002.xhtml
blob: 4e30fa79026bf763996648fe594ee24ffb1a2afd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Setting drag image during drag and drop</title>
<style type="text/css">
span
	{color:green;
	background-color:yellow;}
</style>
<script type="application/ecmascript">
function start(event)
	{event.dataTransfer.effectAllowed = 'copy';
	event.dataTransfer.setDragImage(document.querySelector('span'), 1, 1);}
</script>
</head>
<body>
<p><a href="data:text/plain,1" ondragstart="start(event)">Drag me</a></p>
<p>Try to drag link above. You should see word <span>PASS</span> in feedback overlay.</p>
</body>
</html>