Title: [151694] trunk/Source/WebCore
- Revision
- 151694
- Author
- [email protected]
- Date
- 2013-06-18 13:40:09 -0700 (Tue, 18 Jun 2013)
Log Message
Attempted build fix for non-Mac.
* platform/graphics/SimpleFontData.cpp:
(WebCore::SimpleFontData::nonSyntheticItalicFontData):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (151693 => 151694)
--- trunk/Source/WebCore/ChangeLog 2013-06-18 20:28:58 UTC (rev 151693)
+++ trunk/Source/WebCore/ChangeLog 2013-06-18 20:40:09 UTC (rev 151694)
@@ -1,5 +1,12 @@
2013-06-18 Dean Jackson <[email protected]>
+ Attempted build fix for non-Mac.
+
+ * platform/graphics/SimpleFontData.cpp:
+ (WebCore::SimpleFontData::nonSyntheticItalicFontData):
+
+2013-06-18 Dean Jackson <[email protected]>
+
Synthesized vertical italics on rotated glyphs are transformed incorrectly
https://bugs.webkit.org/show_bug.cgi?id=117726
Modified: trunk/Source/WebCore/platform/graphics/SimpleFontData.cpp (151693 => 151694)
--- trunk/Source/WebCore/platform/graphics/SimpleFontData.cpp 2013-06-18 20:28:58 UTC (rev 151693)
+++ trunk/Source/WebCore/platform/graphics/SimpleFontData.cpp 2013-06-18 20:40:09 UTC (rev 151694)
@@ -235,7 +235,9 @@
m_derivedFontData = DerivedFontData::create(isCustomFont());
if (!m_derivedFontData->nonSyntheticItalic) {
FontPlatformData nonSyntheticItalicFontPlatformData(m_platformData);
+#if PLATFORM(MAC)
nonSyntheticItalicFontPlatformData.m_syntheticOblique = false;
+#endif
m_derivedFontData->nonSyntheticItalic = create(nonSyntheticItalicFontPlatformData, isCustomFont(), false, true);
}
return m_derivedFontData->nonSyntheticItalic;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes