Index: Source/WebCore/rendering/RenderBlockLineLayout.cpp |
=================================================================== |
--- Source/WebCore/rendering/RenderBlockLineLayout.cpp (revision 126633) |
+++ Source/WebCore/rendering/RenderBlockLineLayout.cpp (working copy) |
@@ -2343,10 +2343,10 @@ |
bool isSVGText = t->isSVGInlineText(); |
#endif |
- RenderStyle* style = t->style(lineInfo.isFirstLine()); |
- if (style->hasTextCombine() && current.m_obj->isCombineText() && !toRenderCombineText(current.m_obj)->isCombined()) |
+ if (t->style()->hasTextCombine() && current.m_obj->isCombineText() && !toRenderCombineText(current.m_obj)->isCombined()) |
toRenderCombineText(current.m_obj)->combineText(); |
+ RenderStyle* style = t->style(lineInfo.isFirstLine()); |
const Font& f = style->font(); |
bool isFixedPitch = f.isFixedPitch(); |
bool canHyphenate = style->hyphens() == HyphensAuto && WebCore::canHyphenate(style->locale()); |