1 <svg xmlns=
"http://www.w3.org/2000/svg">
6 var g = document.createElementNS(
"http://www.w3.org/2000/svg",
"g");
7 g.setAttribute(
"id",
"g");
8 var iframe = document.createElementNS(
"http://www.w3.org/1999/xhtml",
"iframe");
10 document.documentElement.appendChild(g);
11 var use = document.createElementNS(
"http://www.w3.org/2000/svg",
"use");
12 use.setAttributeNS(
"http://www.w3.org/1999/xlink",
"xlink:href",
"#g");
13 document.documentElement.appendChild(use);
14 setTimeout(function() {
15 setTimeout(function() {
16 g.appendChild(document.createElementNS(
"http://www.w3.org/1999/xhtml",
"video"));
20 window.addEventListener(
"load", boom, false);