mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
23 lines
376 B
HTML
23 lines
376 B
HTML
|
<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>
|