summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/events/005.xhtml
blob: 4ea0a9058dfc729c97fa765372755a4581ca42cd (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Drag and drop of text input selection to iframe</title>
<style type="text/css">
div
  {width:0;
  height:0;
  border:solid 50px silver;
  border-radius:50px;
  margin-left:auto;}
iframe
  {width:100%;
  height:500px;}
</style>
<script type="application/ecmascript">
var step = 1;
function start(event)
  {if(step++ == 1)
    {setColor('green silver silver silver');}
  else
    {step = 0;
    setColor('maroon');
    say('Dragstart should be first event to fire.')}
  }
function leavePage(event)
  {if(step++ > 1)
    {setColor('green green silver silver')}
  else
    {step = 0;
    setColor('maroon');
    say('Dragleave should fire after dragstart.')}
  }
function endDrag(event)
  {if(step++ > 2)
    {setColor('green')}
  else
    {step = 0;
    setColor('maroon');
    say('Dragend should fire after dragstart and dragleave.')}
  }
function say(it)
  {document.querySelector('pre').appendChild(document.createTextNode(it + '\n'))}
function setColor(c)
  {document.querySelector('div').setAttribute('style','border-color:' + c)}
</script>
</head>
<body onload="document.querySelector('input').select()" ondragleave="leavePage(event)">
<p ondragstart="start(event)" ondragend="endDrag(event)"><input value="Drag me"/></p>
<p>Drag selected text to the frame below and drop it there. Both circles should turn green once text is dropped into lower frame.</p>
<div/>
<pre/>
<iframe src="helper-drop-here-body-circle.xhtml">XHTML document</iframe>
</body>
</html>