| Index: Source/WebCore/css/CSSPrimitiveValue.cpp
|
| ===================================================================
|
| --- Source/WebCore/css/CSSPrimitiveValue.cpp (revision 122237)
|
| +++ Source/WebCore/css/CSSPrimitiveValue.cpp (working copy)
|
| @@ -540,12 +540,7 @@
|
| if (computingFontSize || isFontRelativeLength())
|
| return result;
|
|
|
| - // Any original result that was >= 1 should not be allowed to fall below 1. This keeps border lines from
|
| - // vanishing.
|
| - double zoomedResult = result * multiplier;
|
| - if (zoomedResult < 1.0 && result >= 1.0)
|
| - return 1.0;
|
| - return zoomedResult;
|
| + return result * multiplier;
|
| }
|
|
|
| void CSSPrimitiveValue::setFloatValue(unsigned short, double, ExceptionCode& ec)
|
|
|