1 <svg xmlns=
"http://www.w3.org/2000/svg" xmlns:
xlink=
"http://www.w3.org/1999/xlink">
3 <rect width=
"50" height=
"50" id=
"rect"/>
4 <use id=
"use" xlink:
href=
"#rect"/>
6 <use xlink:
href=
"#use" />
10 <rect width=
"100" height=
"100" fill=
"green" />
11 <g clip-path=
"url(#clip)">
12 <rect width=
"100" height=
"100" fill=
"red" />
15 <text x=
"10" y=
"120">The graphic above should show a
100x100 green rectangle.
</text>
16 <text x=
"10" y=
"140">The red rectangle should not show since it uses a clipping path that uses an indirect reference.
</text>