Index: third_party/WebKit/Source/core/paint/FrameSetPainter.cpp |
diff --git a/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp b/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp |
index fc78d7a2127578e508d297f842a088a4df8f6fe2..c27ff62f5498e000da8116bf88736d4f16d09ba8 100644 |
--- a/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp |
+++ b/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp |
@@ -34,10 +34,11 @@ void FrameSetPainter::paintColumnBorder(const PaintInfo& paintInfo, |
// Fill first. |
GraphicsContext& context = paintInfo.context; |
- context.fillRect(borderRect, m_layoutFrameSet.frameSet()->hasBorderColor() |
- ? m_layoutFrameSet.resolveColor( |
- CSSPropertyBorderLeftColor) |
- : borderFillColor()); |
+ context.fillRect( |
+ borderRect, |
+ m_layoutFrameSet.frameSet()->hasBorderColor() |
+ ? m_layoutFrameSet.resolveColor(CSSPropertyBorderLeftColor) |
+ : borderFillColor()); |
// Now stroke the edges but only if we have enough room to paint both edges |
// with a little bit of the fill color showing through. |
@@ -58,10 +59,11 @@ void FrameSetPainter::paintRowBorder(const PaintInfo& paintInfo, |
// Fill first. |
GraphicsContext& context = paintInfo.context; |
- context.fillRect(borderRect, m_layoutFrameSet.frameSet()->hasBorderColor() |
- ? m_layoutFrameSet.resolveColor( |
- CSSPropertyBorderLeftColor) |
- : borderFillColor()); |
+ context.fillRect( |
+ borderRect, |
+ m_layoutFrameSet.frameSet()->hasBorderColor() |
+ ? m_layoutFrameSet.resolveColor(CSSPropertyBorderLeftColor) |
+ : borderFillColor()); |
// Now stroke the edges but only if we have enough room to paint both edges |
// with a little bit of the fill color showing through. |