152.xhtml (538B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>Dropping selection in readonly textarea</title> 5 <style type="text/css"> 6 textarea 7 {padding:1em; 8 width:300px; 9 height:100px;} 10 </style> 11 </head> 12 <body onload="window.getSelection().selectAllChildren(document.querySelector('p'))"> 13 <p>Drag me</p> 14 <p>Try to drag selected text into the input below. You should not be able to drop it here.</p> 15 <p><textarea readonly="readonly" placeholder="Try to drop selected text here"/></p> 16 </body> 17 </html>