summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/events/dragstart-event-manual.html
blob: 9128401ffaae34c58c90bb53b3307c3d748e28a1 (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
56
57
58
59
60
61
<!doctype html>
<html>
    <head>
        <title>HTML5 Drag and Drop: Fire dragstart 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/"/>
        <link rel="help" href="http://dev.w3.org/html5/spec/dnd.html#drag-and-drop-processing-model"/>
        <meta name="assert" content="Fire dragstart event during the drag and drop processing"/>
        <script type="text/javascript">
            var EVENT, TARGET;

            function DragstartEvent(evt)
            {
                if ((TARGET == evt.target) && (EVENT == evt.type))
                {
                    document.getElementById("test_result").firstChild.data = "PASS";
                }
                else
                {
                  document.getElementById("test_result").firstChild.data = "FAIL";
                }
            }

            EVENT = "dragstart";

            window.onload = function()
            {
                TARGET = document.getElementById("target");
                TARGET.addEventListener(EVENT, DragstartEvent, false);
            }
        </script>
    </head>
    <body>
        <pre>Description: Fire dragstart 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 red box
                    </ol>
                </div>
            </td>
            </tr>
        </table>
        <p>
        http://dev.w3.org/html5/spec/dnd.html#drag-and-drop-processing-model
        </p>
        <p>
        If it is an element that is being dragged, then set the drag data store elements list to contain just the source node.
        Fire a DND event named dragstart at the source node.
        </p>
        <div id="target" style="border:2px red solid; width:200px; height:50px" draggable="true"></div>
    </body>
</html>