blob: 97e5fb1ca91b3610918dfb2d16d55f01c9b218f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<svg xmlns="http://www.w3.org/2000/svg" style="filter: url(#a); clip: rect(0px, 4rem, 2px, 2px);">
<script>
function boom()
{
document.getElementById("a").style.overflow = "hidden";
document.documentElement.style.fontSize = "10px";
}
window.addEventListener("load", boom, false);
</script>
<set id="a"/>
</svg>
|