blob: 1af886eddc972d3cc42d436e302e2a9d8c779504 [file] [log] [blame]
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>'position' shouldn't apply to SVG elements</title>
<style type="text/css">
#b { fill: green; position: absolute; top: 100px; left: 100px; }
</style>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" height="200" width="200">
<circle cx="50" cy="50" r="50" fill="red" id="a"/>
<circle cx="50" cy="50" r="50" id="b"/>
</svg>
</body>
</html>