Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<html>
<head>
<title>HTML5 Drag and Drop: Fire drag event during the drag and drop processing</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/"/>
<meta name="assert" content="Fire drag event during the drag and drop processing"/>
<script src="../resources/dragdrop_support.js" type="text/javascript"></script>
<script type="text/javascript">
var EVENT, TARGET;
function DragEvent(evt)
{
if ((TARGET == evt.target) && (EVENT == evt.type))
{
LogTestResult("PASS");
}
else
{
LogTestResult("FAIL");
}
}
EVENT = "drag";
window.onload = function()
{
TARGET = document.getElementById("target");
AddEventListenersForElement(EVENT, DragEvent, false, TARGET);
}
</script>
</head>
<body>
<pre>Description: Fire drag event during the drag and drop processing</pre>
<table id='testtable' border='1'>
<tr>
<td>Test Result</td>
<td>Test Assertion</td>
</tr>
<tr>
<td id='test_result'>Manual</td>
<td id='test_assertion'>Test passes if if the word "PASS" appears to the left after following the steps below.
<div id="manualsteps">
Steps:
<ol>
<li> Click and drag the blue image
</ol>
</div>
</td>
</tr>
</table>
<p>
</p>
<p>
If the user agent is still performing the previous iteration of the sequence (if any) when the next iteration becomes due, abort these steps for this iteration (effectively "skipping missed frames" of the drag-and-drop operation).
Fire a DND event named drag event at the source node. If this event is canceled, the user agent must set the current drag operation to "none" (no drag operation).
</p>
<img src="/images/blue.png" style="width:200px; height:100px" draggable="true" id="target"/>
</body>
</html>