009.xhtml (1457B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>Influence of redirect during drag and drop on datastore</title> 5 <style type="text/css"> 6 div 7 {height:100px; 8 width:100px; 9 padding:20px; 10 background-color:navy;} 11 p + div 12 {background-color:gray;} 13 </style> 14 <script type="application/ecmascript"> 15 <![CDATA[ 16 var dataTypes = ['text/plain', 'text/uri-list', 'application/xml', 'application/xhtml+xml', 'application/mathml+xml', 'image/svg+xml', 'text/html', 'text/x-example'], 17 data = ['PASS', 'data:text/plain,1', '<result>PASS</result>', '<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Data store item</title></head><body><p>PASS</p></body></html>', '<math xmlns="http://www.w3.org/1998/Math/MathML"><mn>1</mn></math>', '<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100px" height="50px" viewBox="0 0 100 50"><text x="0" y="40" font-size="40" fill="green">PASS</text></svg>', '<!DOCTYPE html><html><head><title>Data store item</title></head><body><p>PASS</p></body></html>', 'PASS']; 18 function start(event) 19 {event.dataTransfer.effectAllowed = 'copy'; 20 for(var i = 0; i != dataTypes.length; i++) 21 {event.dataTransfer.setData(dataTypes[i], data[i]);} 22 window.location = '009-1.xhtml'} 23 ]]> 24 </script> 25 </head> 26 <body> 27 <div draggable="true" ondragstart="start(event)"/> 28 <p>Try to drag box above. You should be redirected to the new page and be able to drop it there.</p> 29 </body> 30 </html>