blob: 56fa975d4363c9131b906870a49aa771cd30a84f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<html>
<head>
<title>drag and drop - dragging HTML onto the OS - helper file</title>
</head>
<body>
<p>This is the helper file. Drop the paragraph here --></p>
<script type="text/javascript">
document.body.contentEditable = true;
</script>
</body>
</html>
|