delete-in-xml-space-preserve.html (449B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script> 6 "use strict"; 7 8 addEventListener("load", () => { 9 document.designMode = "on"; 10 getSelection().collapse(document.querySelector("hatchpath"), 2); 11 document.execCommand("delete"); 12 }, {once: true}); 13 </script> 14 </head> 15 <body>TEST 16 <svg xml:space="preserve"> 17 <hatchpath> 18 <test> 19 <meshgradient> 20 </meshgradient> 21 </test> 22 </hatchpath> 23 </svg> 24 </body> 25 </html>