blob: f033d345d49861ee9c7681b45bae2d8424ac2645 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg">
<script>
function init()
{
var a = document.getElementById("a");
var b = document.getElementById("b");
a.appendChild(b);
b.getBBox();
};
window.addEventListener("load", init, false);
</script>
<rect id="a" width="20" height="10"/>
<rect id="b" width="10" height="20"/>
</svg>
|