|
1 <!-- |
|
2 Any copyright is dedicated to the Public Domain. |
|
3 http://creativecommons.org/publicdomain/zero/1.0/ |
|
4 --> |
|
5 <html xmlns="http://www.w3.org/1999/xhtml" |
|
6 xmlns:svg="http://www.w3.org/2000/svg" |
|
7 xmlns:xlink="http://www.w3.org/1999/xlink"> |
|
8 <head> |
|
9 <title>Test that using elements from conditional-failing outer 'svg' elements works</title> |
|
10 <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=615146 --> |
|
11 <style>svg { position: absolute; top: 0; left: 0; height: 100%; width: 100% }</style> |
|
12 </head> |
|
13 <body> |
|
14 |
|
15 <svg:svg requiredExtensions="x"><svg:rect id="r" width="100%" height="100%" fill="lime"/></svg:svg> |
|
16 <svg:svg><svg:use xlink:href="#r"/></svg:svg> |
|
17 |
|
18 </body> |
|
19 </html> |