summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/support/document-with-embedded-svg.html
blob: a81d13d9a8b6386d4584f12648f3a1d42ce74b81 (plain)
1
2
3
4
5
6
7
8
9
<!doctype html>
<body>
<script>
["embed", "frame", "iframe", "object"].forEach(name => {
  const frame = document.body.appendChild(document.createElement(name));
  const attr = name !== "object" ? "src" : "data";
  frame[attr] = "svg.svg";
});
</script>