blob: fb4fd8bb45c6675b0855fee9c38a91d06bd3e822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:svg="http://www.w3.org/2000/svg">
<head>
<script type="text/javascript">
// Test that removing a direct child element of an SVG <svg> doesnt' crash:
function boom()
{
document.getElementById("s").removeChild(document.getElementById("r"));
}
</script>
</head>
<body onload="boom();">ۀ<svg:svg id="s"><svg:rect id="r"/></svg:svg></body>
</html>
|