Index: third_party/WebKit/Source/core/paint/MultiColumnSetPainter.cpp |
diff --git a/third_party/WebKit/Source/core/paint/MultiColumnSetPainter.cpp b/third_party/WebKit/Source/core/paint/MultiColumnSetPainter.cpp |
index 0b27f5c264c5ac9f36dab9e675f6886ff9e47772..e67d81b4a3dde4a766676b9ddd09cddc06fae6a1 100644 |
--- a/third_party/WebKit/Source/core/paint/MultiColumnSetPainter.cpp |
+++ b/third_party/WebKit/Source/core/paint/MultiColumnSetPainter.cpp |
@@ -40,7 +40,7 @@ void MultiColumnSetPainter::paintColumnRules(const PaintInfo& paintInfo, const L |
const Color& ruleColor = m_layoutMultiColumnSet.resolveColor(blockStyle, CSSPropertyWebkitColumnRuleColor); |
bool ruleTransparent = blockStyle.columnRuleIsTransparent(); |
EBorderStyle ruleStyle = blockStyle.columnRuleStyle(); |
- LayoutUnit ruleThickness = blockStyle.columnRuleWidth(); |
+ LayoutUnit ruleThickness(blockStyle.columnRuleWidth()); |
LayoutUnit colGap = m_layoutMultiColumnSet.columnGap(); |
bool renderRule = ruleStyle > BHIDDEN && !ruleTransparent; |
if (!renderRule) |