Bug 1370116 - Use the correct ancestor frame (i.e. |this|) of aFrame for checking NS_STATE_SVG_CLIPPATH_CHILD. r=longsonr

MozReview-Commit-ID: 7YK7a7RLNq5
This commit is contained in:
Mats Palmgren 2017-06-07 15:22:41 +02:00
Родитель c99cacf9f6
Коммит 9496a58997
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -5198,7 +5198,7 @@ SVGTextFrame::ShouldRenderAsPath(nsTextFrame* aFrame,
bool& aShouldPaintSVGGlyphs) bool& aShouldPaintSVGGlyphs)
{ {
// Rendering to a clip path. // Rendering to a clip path.
if (aFrame->GetParent()->GetParent()->GetStateBits() & NS_STATE_SVG_CLIPPATH_CHILD) { if (HasAnyStateBits(NS_STATE_SVG_CLIPPATH_CHILD)) {
aShouldPaintSVGGlyphs = false; aShouldPaintSVGGlyphs = false;
return true; return true;
} }