helper-drop-horizontal-scrollbar.xhtml (468B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>Image drag and drop: helper file</title> 5 <script> 6 function dropImage(event) { 7 document.querySelector('div').firstChild.nodeValue = 'PASS'; 8 } 9 </script> 10 </head> 11 <body> 12 <div ondragenter="event.preventDefault()" ondragover="return false" ondrop="dropImage(event)">↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ 13 </div> 14 </body> 15 </html>