summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_draggableprop.html
blob: af2d9906c241300a9cad4c3c2b638da02d702311 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<html>
<head>
  <title>Tests for the draggable property on HTML elements</title>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
  <script type="application/javascript" 
          src="/tests/SimpleTest/SimpleTest.js"></script>      

<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>

<span id="elem1">One</span>
<span id="elem2" draggable="true">Two</span>
<span id="elem3" draggable="">Three</span>
<span id="elem4" draggable="false">Four</span>
<span id="elem5" draggable="other">Five</span>
<span id="elem6" draggable="false"><span style="user-select: none">Six</span></span>

<img id="img1" src="../happy.png">
<img id="img2" src="../happy.png" draggable="true">
<img id="img3" src="../happy.png" draggable="">
<img id="img4" src="../happy.png" draggable="false">
<img id="img5" src="../happy.png" draggable="other">
<img id="img6" src="../happy.png" draggable="false">

<a id="a1">One</a>
<a id="a2" draggable="true">Two</a>
<a id="a3" draggable="">Three</a>
<a id="a4" draggable="false">Four</a>
<a id="a5" draggable="other">Five</a>
<a id="a6" draggable="false"><span style="user-select: none">Six</span></a>

<a id="ahref1" href="http://www.mozilla.org">One</a>
<a id="ahref2" href="http://www.mozilla.org" draggable="true">Two</a>
<a id="ahref3" href="http://www.mozilla.org" draggable="">Three</a>
<a id="ahref4" href="http://www.mozilla.org" draggable="false">Four</a>
<a id="ahref5" href="http://www.mozilla.org" draggable="other">Five</a>
<a id="ahref6" href="http://www.mozilla.org" draggable="false"><span style="user-select: none">Six</span></a>

<script>
function check()
{
  try {
    checkElements(1, false, true, false, true);
    checkElements(2, true, true, true, true);
    checkElements(3, false, true, false, true);
    checkElements(4, false, false, false, false);
    checkElements(5, false, true, false, true);
    checkElements(6, false, false, false, false);
  } catch (ex) {
    is("script error", ex, "fail");
  }
}

function checkElements(idx, estate, istate, astate, ahrefstate)
{
  checkElement("elem" + idx, estate, false);
  checkElement("img" + idx, istate, true);
  checkElement("a" + idx, astate, false);
  checkElement("ahref" + idx, ahrefstate, true);
}

function checkElement(elemid, state, statedef)
{
  var elem = document.getElementById(elemid);

  is(elem.draggable, state, elemid + "-initial");
  elem.draggable = true;
  is(elem.draggable, true, elemid + "-true");
  elem.draggable = false;
  is(elem.draggable, false, elemid + "-false");

  elem.setAttribute("draggable", "true");
  is(elem.draggable, true, elemid + "-attr-true");
  elem.setAttribute("draggable", "false");
  is(elem.draggable, false, elemid + "-attr-false");
  elem.setAttribute("draggable", "other");
  is(elem.draggable, statedef, elemid + "-attr-other");
  elem.setAttribute("draggable", "");
  is(elem.draggable, statedef, elemid + "-attr-empty");
  elem.removeAttribute("draggable");
  is(elem.draggable, statedef, elemid + "-attr-removed");
}

check();

</script>

</body>
</html>