Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-transfer-width-height-properties-to-symbol.svg
blobfd7aac62810db91a8012e1a1700af483872bcf13
1 <?xml version="1.0" standalone="no"?>
2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="400" height="400">
3 <defs>
4 <symbol id="s" viewBox="0 0 2 2">
5 <rect fill="green" x="0" y="0" width="1" height="1" />
6 </symbol>
7 <symbol id="s1" viewBox="0 0 2 2">
8 <use xlink:href="#s" x="0" y="0" width="1" height="1" />
9 </symbol>
10 </defs>
11 <use xlink:href="#s1" />
12 </svg>