022-manual.html (527B)
1 <!DOCTYPE html> 2 <?xml version="1.0" encoding="utf-8"?> 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 <head> 5 <title>Block element drag and drop: changing draggable attribute</title> 6 <style type="text/css"> 7 div 8 {width:100px; 9 height:100px; 10 background-color:navy;} 11 </style> 12 </head> 13 <body onload="document.querySelector('div').setAttribute('draggable','false')"> 14 <div draggable="true" ondragstart="document.querySelector('p').firstChild.nodeValue = 'FAIL'"></div> 15 <p>You should not be able to drag blue box.</p> 16 </body> 17 </html>