summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/overlay/006.xhtml
blob: 4c0295bf9bdc1d4d89943ed53ffe6a8c472c00f7 (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
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Resetting drag image on dragover</title>
<style type="text/css">
span, strong
  {color:green;
  background-color:yellow;}
strong
  {color:red;}
div
  {width:100px;
  height:100px;
  background-color:silver;
  margin-top:20px;}
</style>
<script type="application/ecmascript">
function start(event)
  {event.dataTransfer.effectAllowed = 'copy';
  event.dataTransfer.setDragImage(document.querySelector('span'), 1, 1);}
function resetImage(event)
  {event.preventDefault();
  event.dataTransfer.setDragImage(document.querySelector('strong'), 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 to the silver box. You should see word <span>PASS</span> not <strong>FAIL</strong> in feedback overlay all the time.</p>
<div ondragenter="event.preventDefault()" ondragover="resetImage(event)"/>
</body>
</html>