blob: 20a1fc3043dd5a4f8366dcb414882d718f63867b [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
a .svg1 {
fill: rgb(100, 100, 0);
}
a .svg2 {
fill: rgb(100, 0, 100);
}
</style>
</head>
<body onload="test()">
<a href="">
<svg class="svg1" height="24" width="24" viewBox="0 0 24 24">
<rect width="200" height="100" x="10" y="10"/>
</svg>
<svg class="svg2" height="24" width="24" viewBox="0 0 24 24">
<rect width="200" height="100" x="10" y="10"/>
</svg>
</a>
</body>
</html>