| Index: Source/core/css/SVGCSSStyleSelector.cpp
|
| diff --git a/Source/core/css/SVGCSSStyleSelector.cpp b/Source/core/css/SVGCSSStyleSelector.cpp
|
| index ace386b1d82f1836ba744f118f40f302e5a2f231..912ddd9cd1c6819d7cdbcc81537f8a7f60c664fd 100644
|
| --- a/Source/core/css/SVGCSSStyleSelector.cpp
|
| +++ b/Source/core/css/SVGCSSStyleSelector.cpp
|
| @@ -133,8 +133,8 @@ void StyleResolver::applySVGProperty(CSSPropertyID id, CSSValue* value)
|
| if (!primitiveValue)
|
| break;
|
|
|
| - if (primitiveValue->getIdent()) {
|
| - switch (primitiveValue->getIdent()) {
|
| + if (primitiveValue->getValueID()) {
|
| + switch (primitiveValue->getValueID()) {
|
| case CSSValueBaseline:
|
| svgstyle->setBaselineShift(BS_BASELINE);
|
| break;
|
| @@ -535,7 +535,7 @@ void StyleResolver::applySVGProperty(CSSPropertyID id, CSSValue* value)
|
| ASSERT(orientation != -1);
|
|
|
| svgstyle->setGlyphOrientationVertical((EGlyphOrientation) orientation);
|
| - } else if (primitiveValue->getIdent() == CSSValueAuto)
|
| + } else if (primitiveValue->getValueID() == CSSValueAuto)
|
| svgstyle->setGlyphOrientationVertical(GO_AUTO);
|
|
|
| break;
|
|
|