blob: 813ed7d825aa6c5834e73a9a8a28356fc6b00551 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html>
<head>
<script>
function boom()
{
var use = document.createElementNS("http://www.w3.org/2000/svg", "use");
use.patternTransform = "";
}
</script>
</head>
<body onload="boom();">
</body>
</html>
|