mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-01 06:33:22 +00:00
17 lines
268 B
HTML
17 lines
268 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var f = document.createElementNS("http://www.w3.org/2000/svg", "feImage");
|
|
f.setAttributeNS("http://www.w3.org/1999/xlink", "xlink:href", "#s");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|
|
|