Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / hixie / mixed / 004.xml
blob1af886eddc972d3cc42d436e302e2a9d8c779504
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <title>'position' shouldn't apply to SVG elements</title>
4   <style type="text/css">
5    #b { fill: green; position: absolute; top: 100px; left: 100px; }
6   </style>
7  </head>
8  <body>
9   <svg xmlns="http://www.w3.org/2000/svg" height="200" width="200">
10    <circle cx="50" cy="50" r="50" fill="red" id="a"/>
11    <circle cx="50" cy="50" r="50" id="b"/>
12   </svg>
13  </body>
14 </html>