blob: 0bebcc02e595878162d8b8ff5e519cc3d650f1aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:html="http://www.w3.org/1999/xhtml">
<foreignObject id="f" width="500" height="500" y="300">
<div xmlns="http://www.w3.org/1999/xhtml">
<table border="1">
<tr>
<td><input type="text" value="3" /></td>
</tr>
</table>
</div>
</foreignObject>
<script>
window.addEventListener("load", boom, false);
function boom()
{
var f = document.getElementById("f");
document.documentElement.appendChild(f);
}
</script>
</svg>
|