Index: Source/core/rendering/InlineBox.cpp |
diff --git a/Source/core/rendering/InlineBox.cpp b/Source/core/rendering/InlineBox.cpp |
index b8b870c49bf3067d979b3d3b013c8e73bde12167..e5966b2e99d38434fc3f9c8a352a80cf6170990d 100644 |
--- a/Source/core/rendering/InlineBox.cpp |
+++ b/Source/core/rendering/InlineBox.cpp |
@@ -201,6 +201,16 @@ void InlineBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset, Layo |
RenderBlock::paintAsInlineBlock(&renderer(), paintInfo, childPoint); |
} |
+void InlineBox::paintDecorationStyle(PaintInfo& paintInfo, const LayoutPoint& paintOffset, LayoutUnit lineTop, LayoutUnit lineBottom, float underlineThickness) |
+{ |
+ return; |
+} |
+ |
+void InlineBox::getPaintDecorationSyle(PaintInfo& paintInfo, const LayoutPoint& paintOffset, float * underlineThickness, TextDecorationStyle * style) |
+{ |
+ return; |
+} |
+ |
andersr
2014/03/19 13:18:12
These could just appear in the header as:
void [g
h.joshi
2014/03/19 13:59:54
Yes, will make required changes.
On 2014/03/19 13
|
bool InlineBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, LayoutUnit /* lineTop */, LayoutUnit /*lineBottom*/) |
{ |
// Hit test all phases of replaced elements atomically, as though the replaced element established its |