049.xhtml (476B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>Selecting text in SVG text element inside draggable container</title> 5 </head> 6 <body> 7 <div draggable="true"> 8 <svg xmlns="http://www.w3.org/2000/svg" version="1.2" width="200px" height="50px" viewBox="0 0 200 50"> 9 <text x="10" y="45" font-size="30" fill="navy" editable="simple">Select me</text> 10 </svg> 11 </div> 12 <p>You should be able to select text above</p> 13 </body> 14 </html>