document-with-embedded-svg.html (254B)
1 <!doctype html> 2 <body> 3 <script> 4 ["embed", "frame", "iframe", "object"].forEach(name => { 5 const frame = document.body.appendChild(document.createElement(name)); 6 const attr = name !== "object" ? "src" : "data"; 7 frame[attr] = "svg.svg"; 8 }); 9 </script>