Index: Source/core/paint/InlinePainter.cpp |
diff --git a/Source/core/paint/InlinePainter.cpp b/Source/core/paint/InlinePainter.cpp |
index 78f98f5f226b33af97388cdb4a6b96b387fcf9af..38af02b4de5285bdc776613e2672b70766f893a0 100644 |
--- a/Source/core/paint/InlinePainter.cpp |
+++ b/Source/core/paint/InlinePainter.cpp |
@@ -28,7 +28,7 @@ void InlinePainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paintOf |
void InlinePainter::paintOutline(const PaintInfo& paintInfo, const LayoutPoint& paintOffset) |
{ |
- const LayoutStyle& styleToUse = m_layoutInline.styleRef(); |
+ const ComputedStyle& styleToUse = m_layoutInline.styleRef(); |
if (!styleToUse.hasOutline()) |
return; |
@@ -97,7 +97,7 @@ void InlinePainter::paintOutline(const PaintInfo& paintInfo, const LayoutPoint& |
void InlinePainter::paintOutlineForLine(GraphicsContext* graphicsContext, const LayoutPoint& paintOffset, |
const LayoutRect& lastline, const LayoutRect& thisline, const LayoutRect& nextline, const Color outlineColor) |
{ |
- const LayoutStyle& styleToUse = m_layoutInline.styleRef(); |
+ const ComputedStyle& styleToUse = m_layoutInline.styleRef(); |
int outlineWidth = styleToUse.outlineWidth(); |
EBorderStyle outlineStyle = styleToUse.outlineStyle(); |