1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
<body>
<div style="background-color: black;" width="300">
<input type=file>
</div>
<div style="background-color: blue;" width="300">
<input type=file>
</div>
<input type=file>
<p>
<input type="file"> should be able to support drag and drop of files. Use the above controls to demonstrate:
</p>
<ol>
<li> Accepting normal file drags (indicating accpetance during hover).
<li> Rejecting diretory and non-normal file drags.
<li> Dropping a symlink'd file should accpect/show/upload the target, not the symlink itself.
<li> Rejecting of file-promise drags (this is probably a bug, not a feature).
</ol>
</body>
|