mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-20 20:29:15 +00:00
18 lines
325 B
XML
18 lines
325 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
|
||
|
<mask id="m">
|
||
|
<text>
|
||
|
<tspan id="ts" />
|
||
|
</text>
|
||
|
</mask>
|
||
|
|
||
|
<rect width="600" height="400" mask="url(#m)"/>
|
||
|
|
||
|
<script>
|
||
|
window.addEventListener("load", function() {
|
||
|
document.getElementById("ts").style.overflow = "hidden";
|
||
|
}, false);
|
||
|
</script>
|
||
|
|
||
|
</svg>
|