Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:html="http://www.w3.org/1999/xhtml">
4 <foreignObject id="f" width="500" height="500" y="300">
6 <div xmlns="http://www.w3.org/1999/xhtml">
8 <table border="1">
9 <tr>
10 <td><input type="text" value="3" /></td>
11 </tr>
12 </table>
14 </div>
16 </foreignObject>
18 <script>
19 window.addEventListener("load", boom, false);
20 function boom()
21 {
22 var f = document.getElementById("f");
23 document.documentElement.appendChild(f);
24 }
25 </script>
27 </svg>