summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp')
-rw-r--r--Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp b/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp
index 3037b77..4c227b4 100644
--- a/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp
+++ b/Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp
@@ -27,7 +27,8 @@
namespace WebCore {
-SVGTextLayoutAttributes::SVGTextLayoutAttributes()
+SVGTextLayoutAttributes::SVGTextLayoutAttributes(RenderSVGInlineText* context)
+ : m_context(context)
{
}
@@ -65,6 +66,8 @@ static inline void dumpLayoutVector(const Vector<float>& values)
void SVGTextLayoutAttributes::dump() const
{
+ fprintf(stderr, "context: %p\n", m_context);
+
fprintf(stderr, "x values: ");
dumpLayoutVector(m_xValues);
fprintf(stderr, "\n");