Bug 1943761 - Add class alignment to the mozsearch analysis file. r=asuth
[gecko.git] / dom / svg / test / use-with-hsts-helper.html
blob409dade7c6fc00a0ec094ab13e3aa680a2b5534c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 // Notify parent of our final URI:
6 window.parent.postMessage(window.location.href, "*");
7 </script>
8 <style>
9 html, body {
10 margin: 0;
11 height: 100%;
13 svg {
14 display: block;
15 height: 100%;
17 </style>
18 </head>
19 <body>
20 <svg xmlns="http://www.w3.org/2000/svg"
21 xmlns:xlink="http://www.w3.org/1999/xlink"
22 version="1.1">
23 <defs>
24 <rect id="limeRect" width="100%" height="100%" fill="lime"/>
25 </defs>
26 <rect width="100%" height="100%" fill="red"/>
27 <use xlink:href="#limeRect"/>
28 </svg>
29 </body>
30 </html>