Title: [131377] trunk/Source/WebCore
- Revision
- 131377
- Author
- [email protected]
- Date
- 2012-10-15 16:04:16 -0700 (Mon, 15 Oct 2012)
Log Message
Try to fix the build again after r131375.
* platform/graphics/WidthIterator.h:
(WebCore::WidthIterator::shouldApplyFontTransforms): Removed the length check from here.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (131376 => 131377)
--- trunk/Source/WebCore/ChangeLog 2012-10-15 22:55:41 UTC (rev 131376)
+++ trunk/Source/WebCore/ChangeLog 2012-10-15 23:04:16 UTC (rev 131377)
@@ -1,5 +1,12 @@
2012-10-15 Dan Bernstein <[email protected]>
+ Try to fix the build again after r131375.
+
+ * platform/graphics/WidthIterator.h:
+ (WebCore::WidthIterator::shouldApplyFontTransforms): Removed the length check from here.
+
+2012-10-15 Dan Bernstein <[email protected]>
+
Try to fix assertion failures on ports that do not support kerning and ligatures on the fast
code path after r131365.
Modified: trunk/Source/WebCore/platform/graphics/WidthIterator.h (131376 => 131377)
--- trunk/Source/WebCore/platform/graphics/WidthIterator.h 2012-10-15 22:55:41 UTC (rev 131376)
+++ trunk/Source/WebCore/platform/graphics/WidthIterator.h 2012-10-15 23:04:16 UTC (rev 131377)
@@ -91,7 +91,7 @@
template <typename TextIterator>
inline unsigned advanceInternal(TextIterator&, GlyphBuffer*);
- bool shouldApplyFontTransforms() const { return m_run.length() > 1 && (m_typesettingFeatures & (Kerning | Ligatures)); }
+ bool shouldApplyFontTransforms() const { return m_typesettingFeatures & (Kerning | Ligatures); }
TypesettingFeatures m_typesettingFeatures;
HashSet<const SimpleFontData*>* m_fallbackFonts;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes