blob: 28305cd2646eb2ebcd912dff330b3c9a3b01c06f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!doctype html>
<html>
<head>
<title>HTML5 Drag and Drop: Auto state of draggable attribute for div element</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#the-draggable-attribute"/>
<meta name="assert" content="Auto state of draggable attribute for div element"/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=log></div>
<div style="border:2px red solid; width:200px; height:50px; display:none;" id="target">SampleText</div>
<script type="text/javascript">
test(function() {assert_false(document.getElementById("target").draggable)}, "Auto state of draggable attribute for div element");
</script>
</body>
</html>
|