Index: trunk/Source/core/css/resolver/StyleBuilderCustom.cpp |
=================================================================== |
--- trunk/Source/core/css/resolver/StyleBuilderCustom.cpp (revision 157750) |
+++ trunk/Source/core/css/resolver/StyleBuilderCustom.cpp (working copy) |
@@ -870,15 +870,6 @@ |
return convertLengthSizing(state, value); |
} |
-LengthPoint StyleBuilderConverter::convertLengthPoint(StyleResolverState& state, CSSValue* value) |
-{ |
- CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); |
- Pair* pair = primitiveValue->getPairValue(); |
- Length x = pair->first()->convertToLength<FixedIntegerConversion | PercentConversion>(state.style(), state.rootElementStyle(), state.style()->effectiveZoom()); |
- Length y = pair->second()->convertToLength<FixedIntegerConversion | PercentConversion>(state.style(), state.rootElementStyle(), state.style()->effectiveZoom()); |
- return LengthPoint(x, y); |
-} |
- |
LengthSize StyleBuilderConverter::convertRadius(StyleResolverState& state, CSSValue* value) |
{ |
CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); |
@@ -1453,7 +1444,6 @@ |
case CSSPropertyBorderWidth: |
case CSSPropertyListStyle: |
case CSSPropertyMargin: |
- case CSSPropertyObjectPosition: |
case CSSPropertyOutline: |
case CSSPropertyOverflow: |
case CSSPropertyPadding: |