no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / svg / svg-in-inner-svg-dimensions.svg
blob7268dfe1603a2bdc019556c23215d669de4f06b3
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <title>Test that percentage width/height for inner-&lt;svg&gt; resolves against the nearest &lt;svg&gt; ancestor, not the outer-&lt;svg&gt;</title>
3 <rect width="100%" height="100%" fill="lime"/>
4 <!-- This red rect should be covered by the lime one below -->
5 <rect x="50" y="50" width="50" height="50" fill="red"/>
6 <svg width="100" height="100">
7 <svg viewBox="0 0 100 100">
8 <rect x="50" y="50" width="50" height="50" fill="lime"/>
9 </svg>
10 </svg>
11 </svg>