Index: Source/core/style/BorderValue.h |
diff --git a/Source/core/style/BorderValue.h b/Source/core/style/BorderValue.h |
index 8cf40e1f02c6492e3831944f9f01832abed8db6e..cc630904ea595ebbb52b605ffc604bf7157285f1 100644 |
--- a/Source/core/style/BorderValue.h |
+++ b/Source/core/style/BorderValue.h |
@@ -86,7 +86,7 @@ public: |
StyleColor color() const { return m_colorIsCurrentColor ? StyleColor::currentColor() : StyleColor(m_color); } |
- unsigned width() const { return m_width; } |
+ int width() const { return m_width; } |
EBorderStyle style() const { return static_cast<EBorderStyle>(m_style); } |
void setStyle(EBorderStyle style) { m_style = style; } |