Index: Source/core/layout/LayoutTable.cpp |
diff --git a/Source/core/layout/LayoutTable.cpp b/Source/core/layout/LayoutTable.cpp |
index cd71ed7c0a7686858d2b7c43db3e530c468d8a07..f001559160a6d8a7285c6fd39bdc19e481d86a3f 100644 |
--- a/Source/core/layout/LayoutTable.cpp |
+++ b/Source/core/layout/LayoutTable.cpp |
@@ -917,7 +917,7 @@ int LayoutTable::calcBorderStart() const |
if (!numEffCols()) |
return 0; |
- unsigned borderWidth = 0; |
+ int borderWidth = 0; |
const BorderValue& tableStartBorder = style()->borderStart(); |
if (tableStartBorder.style() == BHIDDEN) |
@@ -971,7 +971,7 @@ int LayoutTable::calcBorderEnd() const |
if (!numEffCols()) |
return 0; |
- unsigned borderWidth = 0; |
+ int borderWidth = 0; |
const BorderValue& tableEndBorder = style()->borderEnd(); |
if (tableEndBorder.style() == BHIDDEN) |