Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / class-baseValue.svg
blob02644700f1ba4dedab869b17f12a340b9101a762
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <style type="text/css">
3 .fail {fill: red;}
4 .pass {fill: green;}
5 </style>
6 <rect width="100" height="100" id="test" class="fail"/>
7 <script>
8 document.getElementById('test').className.baseVal = 'pass';
9 </script>
10 </svg>