mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
10 lines
220 B
HTML
10 lines
220 B
HTML
<html>
|
|
<head><script>
|
|
function boom()
|
|
{
|
|
var b = document.getElementById("b");
|
|
b.setAttributeNS(null, "style", "filter: url(#a);");
|
|
}
|
|
</script></head>
|
|
<body onload="boom();" id="a"><span id="b">B</span></body></html>
|