layout/reftests/svg/pseudo-classes-01.svg

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     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>

mercurial