summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/file/prompt/004.html
blob: 0232638ef8e958039e83488219bbe0c6c468d058 (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
<!DOCTYPE html>
<title>drag &amp; drop - file drop prompt for file:</title>
<style>
  body > div {
    height: 200px;
    width: 200px;
    background-color: orange;
  }
</style>

<script>
window.onload = function() {
  if( location.protocol != 'file:' ) {
    document.getElementsByTagName('p')[0].innerHTML = 'Save this page to your local filesystem, and load it from there.';
    return;
  }
  var orange = document.getElementsByTagName('div')[0];
  orange.ondragover = orange.ondragenter = orange.ondrop = function(e) {
    e.preventDefault();
  };
};
</script>

<div></div>

<p>Drag a file from your desktop onto the orange square. A prompt should appear, either showing the server name as localhost, or otherwise identifying this file as the target of the upload.</p>
<noscript><p>Enable JavaScript and reload</p></noscript>