Title: [96027] branches/chromium/835
- Revision
- 96027
- Author
- [email protected]
- Date
- 2011-09-26 16:10:25 -0700 (Mon, 26 Sep 2011)
Log Message
Merge 95301 - cachedFont not getting updated for inline SVG text.
BUG=95072
Review URL: http://codereview.chromium.org/8041050
Modified Paths
Added Paths
Diff
Copied: branches/chromium/835/LayoutTests/svg/text/text-style-recalc-crash-expected.txt (from rev 95301, trunk/LayoutTests/svg/text/text-style-recalc-crash-expected.txt) (0 => 96027)
--- branches/chromium/835/LayoutTests/svg/text/text-style-recalc-crash-expected.txt (rev 0)
+++ branches/chromium/835/LayoutTests/svg/text/text-style-recalc-crash-expected.txt 2011-09-26 23:10:25 UTC (rev 96027)
@@ -0,0 +1,3 @@
+Test passes if it does not crash.
+PASS
+
Copied: branches/chromium/835/LayoutTests/svg/text/text-style-recalc-crash.html (from rev 95301, trunk/LayoutTests/svg/text/text-style-recalc-crash.html) (0 => 96027)
--- branches/chromium/835/LayoutTests/svg/text/text-style-recalc-crash.html (rev 0)
+++ branches/chromium/835/LayoutTests/svg/text/text-style-recalc-crash.html 2011-09-26 23:10:25 UTC (rev 96027)
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+Test passes if it does not crash.
+<svg viewBox="0 0 1 1">
+<font-face font-family="A">
+<font-face-src>
+<font-face-uri xlink:href=""
+</font-face-src>
+</font-face>
+<g font-family="A">
+<text>PASS</text>
+<script>
+ if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+
+ document.execCommand("SelectAll");
+</script>
+<g>
+<text></text>
+</g>
+</g>
+</svg>
+</html>
Modified: branches/chromium/835/Source/WebCore/rendering/svg/RenderSVGInlineText.cpp (96026 => 96027)
--- branches/chromium/835/Source/WebCore/rendering/svg/RenderSVGInlineText.cpp 2011-09-26 23:07:50 UTC (rev 96026)
+++ branches/chromium/835/Source/WebCore/rendering/svg/RenderSVGInlineText.cpp 2011-09-26 23:10:25 UTC (rev 96027)
@@ -87,8 +87,6 @@
// The text metrics may be influenced by style changes.
if (RenderSVGText* textRenderer = RenderSVGText::locateRenderSVGTextAncestor(this))
textRenderer->setNeedsPositioningValuesUpdate();
-
- updateScaledFont();
}
const RenderStyle* newStyle = style();
@@ -223,6 +221,19 @@
return createVisiblePosition(offset + closestDistanceBox->start(), offset > 0 ? VP_UPSTREAM_IF_POSSIBLE : DOWNSTREAM);
}
+void RenderSVGInlineText::setStyle(PassRefPtr<RenderStyle> style)
+{
+ RenderText::setStyle(style);
+
+ // The cached scaledFont needs to be updated on every style set call. It
+ // is not similar to m_style which can get derived from parent's style and
+ // hence will get automatically updated on ancestor's style change. This is
+ // required, otherwise we will maintain stale font list in cached scaledFont
+ // when custom fonts are retired on Document::recalcStyle. See webkit bug
+ // https://bugs.webkit.org/show_bug.cgi?id=68060.
+ updateScaledFont();
+}
+
void RenderSVGInlineText::updateScaledFont()
{
computeNewScaledFontForStyle(this, style(), m_scalingFactor, m_scaledFont);
Modified: branches/chromium/835/Source/WebCore/rendering/svg/RenderSVGInlineText.h (96026 => 96027)
--- branches/chromium/835/Source/WebCore/rendering/svg/RenderSVGInlineText.h 2011-09-26 23:07:50 UTC (rev 96026)
+++ branches/chromium/835/Source/WebCore/rendering/svg/RenderSVGInlineText.h 2011-09-26 23:10:25 UTC (rev 96027)
@@ -49,6 +49,8 @@
virtual const char* renderName() const { return "RenderSVGInlineText"; }
virtual void willBeDestroyed();
+
+ virtual void setStyle(PassRefPtr<RenderStyle>);
virtual void styleDidChange(StyleDifference, const RenderStyle*);
// FIXME: We need objectBoundingBox for DRT results and filters at the moment.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes