blob: f564b90de8cd962a19a6205338afdfa9a24e461f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<title>Test Reference</title>
<style>
use { font-size: 60px; }
g { font-size: 100px; }
</style>
<svg>
<use id="use_elm" xlink:href="#tmpl" />
<g id="g_elm">
<text id="tmpl" x="10" y="100">Hello!</text>
</g>
</svg>
|