Index: Source/core/style/ComputedStyle.h |
diff --git a/Source/core/style/ComputedStyle.h b/Source/core/style/ComputedStyle.h |
index 41df5fa2f251920fc983de199397efd10ed2da93..4b66e77cc1acaf700f943413ff8332c8bdeeef48 100644 |
--- a/Source/core/style/ComputedStyle.h |
+++ b/Source/core/style/ComputedStyle.h |
@@ -519,8 +519,8 @@ public: |
unsigned short borderStartWidth() const; |
unsigned short borderEndWidth() const; |
- unsigned short outlineSize() const { return max(0, outlineWidth() + outlineOffset()); } |
- unsigned short outlineWidth() const |
+ int outlineSize() const { return max(0, outlineWidth() + outlineOffset()); } |
+ int outlineWidth() const |
{ |
if (m_background->outline().style() == BNONE) |
return 0; |