blob: a27d42f5744e92ce5012da9743d1fcce68ea4df2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
try {
document.getElementById("y").gradientTransform.baseVal.appendItem(function(){});
} catch(e) { }
document.documentElement.innerHTML;
}
</script>
</head>
<body onload="boom();">
<linearGradient id="y" xmlns="http://www.w3.org/2000/svg" />
</body>
</html>
|