Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/svg/custom/use-on-g-containing-symbol.html |
| diff --git a/third_party/WebKit/LayoutTests/svg/custom/use-on-g-containing-symbol.html b/third_party/WebKit/LayoutTests/svg/custom/use-on-g-containing-symbol.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9f1fbb4b51141194d3d39db0954a329d22de752f |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/svg/custom/use-on-g-containing-symbol.html |
| @@ -0,0 +1,10 @@ |
| +<!DOCTYPE html> |
| +<svg> |
| + <g id="rectgroup"> |
| + <symbol id="rect"> |
| + <rect width="50" height="100"/> |
| + </symbol> |
| + <use xlink:href="#rect" fill="green"/> |
| + </g> |
| + <use xlink:href="#rectgroup" x="50"/> |
| +</svg> |