chromium/third_party/blink/web_tests/svg/hixie/mixed/004.xml

<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>