blob: 580d5e5557088108373045d0228e1fa98e008452 [file] [log] [blame]
anderscab3a34012006-01-21 21:58:03 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3<html>
4<head>
5<script>
6function debug(str) {
7 var c = document.getElementById('console')
8 c.appendChild(document.createTextNode(str + '\n'));
9}
10
11var i = new Image()
12i.src ="resources/webkit-background.png";
13
14function dragStartHandler() {
15 event.dataTransfer.setDragImage(i, 10, 10);
16}
17
18</script>
19</head>
20<body onload="runTests();">
21<p>This tests that setting the drag image works. If this is successful, the drag icon when dragging the text below around should look like the image below.</p>
22<img src="resources/webkit-background.png">
23<div ondragstart="dragStartHandler()" style="-khtml-user-select:none; -khtml-user-drag:element;">Try dragging me around!</div>
24<pre id="console">
25</pre>
26</body>
27</html>