tenfourfox/layout/reftests/svg/href-attr-change-restyles-ref.svg
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

30 lines
571 B
XML

<svg xmlns="http://www.w3.org/2000/svg" version="1.1"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Test for bug 549797 - Removing href attribute doesn't remove link styling</title>
<style type="text/css">
<![CDATA[
a {
fill: blue;
}
a:link, a:visited {
fill: red;
}
]]>
</style>
<a>
<text x="10" y="100">Test anchor 1</text>
</a>
<a xlink:href="http://example.com/1">
<text x="10" y="200">Test anchor 2</text>
</a>
<a xlink:href="">
<text x="10" y="300">Test anchor 3</text>
</a>
</svg>