| Index: Source/core/css/Rect.h
|
| diff --git a/Source/core/css/Rect.h b/Source/core/css/Rect.h
|
| index 2ce8b26ae89ae020a4f15c9520625d282f4eb332..d4f14599ed1f70a481c544297e678aa7fb4bd5d0 100644
|
| --- a/Source/core/css/Rect.h
|
| +++ b/Source/core/css/Rect.h
|
| @@ -31,10 +31,10 @@ namespace blink {
|
| class CORE_EXPORT RectBase : public RefCountedWillBeGarbageCollectedFinalized<RectBase> {
|
| DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(RectBase);
|
| public:
|
| - CSSPrimitiveValue top() const { return toCSSPrimitiveValue(*m_top); }
|
| - CSSPrimitiveValue right() const { return toCSSPrimitiveValue(*m_right); }
|
| - CSSPrimitiveValue bottom() const { return toCSSPrimitiveValue(*m_bottom); }
|
| - CSSPrimitiveValue left() const { return toCSSPrimitiveValue(*m_left); }
|
| + CSSPrimitiveValue top() const { return toCSSPrimitiveValue(m_top); }
|
| + CSSPrimitiveValue right() const { return toCSSPrimitiveValue(m_right); }
|
| + CSSPrimitiveValue bottom() const { return toCSSPrimitiveValue(m_bottom); }
|
| + CSSPrimitiveValue left() const { return toCSSPrimitiveValue(m_left); }
|
|
|
| void setTop(CSSPrimitiveValue top) { m_top = top; }
|
| void setRight(CSSPrimitiveValue right) { m_right = right; }
|
|
|