Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-modify-container-in-target.svg
blob61f964ab95324744b18b1ea56966ee0613a9cc39
1 <?xml version="1.0" standalone="no"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3 <svg viewBox="0 0 400 300" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4 <defs>
5 <g id="g">
6 <g id="g2">
7 <rect id="rect" stroke-width="5px" stroke="navy" width="60" height="10"/>
8 </g>
9 <circle id="circle" opacity="0.5" fill="green" cx="30" cy="5" r="10"/>
10 </g>
11 </defs>
13 <use x="25" y="25" xlink:href="#g"/>
14 <use x="125" y="25" xlink:href="#g"/>
16 <text font-size="10" id="text" x="10" y="70">You should see a red rectangle and a green circle.</text>
18 <script>
19 document.getElementById("g2").setAttribute("fill", "red");
20 </script>
21 </svg>