blob: c1e8639806d56865460120a9330b895c7346e887 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<svg xmlns="http://www.w3.org/2000/svg" onload="tweak()">
<pattern>
<rect id="r" />
</pattern>
<script>
function tweak() {
document.getElementById("r").style.textDecoration = "underline";
}
</script>
</svg>
|