summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/dynamic-link-style-01.svg
blob: 65eb5c54c257c24e72978a041eac6608c94a3e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink"
     onload="setTimeout(function() { document.getElementById('r').removeAttribute('xlink:href'); }, 0);">

    <title>Testcase for dynamic changes to link styles</title>

    <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=398105 -->
	
    <style type="text/css">
      a:link rect { fill: red; }
    </style>

    <a xlink:href="do-not-visit-me.xxx" id="r">
        <rect width="100%" height="100%" fill="lime" />
    </a>
</svg>