Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / hixie / dynamic / 006.xml
blobac11f1960202342cbdfdc612d946f878c6ace499
1 <svg xmlns="http://www.w3.org/2000/svg" height="200" width="400" onload="init()">
2  <style type="text/css">
3   .fail { fill: red; }
4   .pass { fill: green; }
5  </style>
6  <rect x="0" y="0" width="400" height="200" class="fail"/>
7  <script type="text/javascript">
8   function init() {
9     document.getElementsByTagNameNS('http://www.w3.org/2000/svg', 'rect')[0].setAttribute('class', 'pass');
10   }
11  </script>
12 </svg>