Backed out changeset 57d71ba078d7 (bug 1932390) for causing wpt failures @ failures_A...
[gecko.git] / layout / reftests / svg / pseudo-classes-01.svg
blob74ffaf9aa38ee6c00ac22ec6f66f68e5fdd59cd7
1 <!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
4 -->
5 <svg xmlns="http://www.w3.org/2000/svg" version="1.1"
6 xmlns:xlink="http://www.w3.org/1999/xlink">
8 <title>Testcase for the :first-child, :link, :visited and :lang pseudo-classes</title>
10 <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=268135 -->
12 <style type="text/css">
13 <![CDATA[
15 rect:first-child { fill: lime; }
16 a:link > rect { fill: lime; }
17 a:visited > rect { fill: lime; }
18 rect:lang(it) { fill: lime; }
20 ]]>
21 </style>
23 <!-- test :first-child -->
24 <g>
25 <rect x="0" width="25%" height="100%" fill="red"/>
26 </g>
28 <!-- test :link -->
29 <a xlink:href="do-not-visit-me.xxx" onclick="evt.preventDefault()">
30 <first-child xmlns=""/>
31 <rect x="25%" width="25%" height="100%" fill="red"/>
32 </a>
34 <!-- test :visited -->
35 <a xlink:href="">
36 <first-child xmlns=""/>
37 <rect x="50%" width="25%" height="100%" fill="red"/>
38 </a>
40 <!-- test :lang -->
41 <rect xml:lang="it" x="75%" width="25%" height="100%" fill="red"/>
43 </svg>