summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/events/020.xhtml
blob: 4a1d60a647de9a52871b2af505e8cacc19da113d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Text input selection drag and drop: events after drag is cancelled</title>
<script type="application/ecmascript">
function selectText()
  {document.querySelector('input').select()}
function dragMe(event)
  {event.preventDefault();}
function dropIt(event)
  {say('FAIL (no drop should occur after drag is cancelled)')}
function say(it)
  {document.querySelector('pre').appendChild(document.createTextNode(it + '\n'));}
</script>
</head>
<body onload="selectText()" dropzone="copy string:text/plain" ondrop="dropIt(event)">
<p><input value="Try to drag me" ondrag="dragMe(event)"/></p>
<p>You should not be able to drop text selection above.</p>
<pre/>
</body>
</html>