Title: [179124] trunk/Source
Revision
179124
Author
[email protected]
Date
2015-01-26 10:33:31 -0800 (Mon, 26 Jan 2015)

Log Message

[iOS] [SVG -> OTF Converter] Flip the switch off on iOS
https://bugs.webkit.org/show_bug.cgi?id=140860

Reviewed by Darin Adler.

Source/_javascript_Core:

The fonts it makes are grotesque. (See what I did there? Typographic
humor is the best humor.)

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

No new tests because this simply reverts broken code.

The fonts it makes are grotesque. (See what I did there? Typographic
humor is the best humor.)

* Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

The fonts it makes are grotesque. (See what I did there? Typographic
humor is the best humor.)

* Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

The fonts it makes are grotesque. (See what I did there? Typographic
humor is the best humor.)

* Configurations/FeatureDefines.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (179123 => 179124)


--- trunk/Source/_javascript_Core/ChangeLog	2015-01-26 18:31:23 UTC (rev 179123)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-01-26 18:33:31 UTC (rev 179124)
@@ -1,3 +1,15 @@
+2015-01-26  Myles C. Maxfield  <[email protected]>
+
+        [iOS] [SVG -> OTF Converter] Flip the switch off on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=140860
+
+        Reviewed by Darin Adler.
+
+        The fonts it makes are grotesque. (See what I did there? Typographic
+        humor is the best humor.)
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2015-01-23  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Rename InjectedScriptHost::type to subtype

Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (179123 => 179124)


--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2015-01-26 18:31:23 UTC (rev 179123)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2015-01-26 18:33:31 UTC (rev 179124)
@@ -172,7 +172,8 @@
 ENABLE_SUBTLE_CRYPTO_macosx_101000 = ENABLE_SUBTLE_CRYPTO;
 ENABLE_SUBTLE_CRYPTO_macosx_101100 = ENABLE_SUBTLE_CRYPTO;
 ENABLE_SVG_FONTS = ENABLE_SVG_FONTS;
-ENABLE_SVG_OTF_CONVERTER = ENABLE_SVG_OTF_CONVERTER;
+ENABLE_SVG_OTF_CONVERTER[sdk=iphone*] = ;
+ENABLE_SVG_OTF_CONVERTER[sdk=macosx*] = ENABLE_SVG_OTF_CONVERTER;
 
 ENABLE_TELEPHONE_NUMBER_DETECTION[sdk=iphone*] = ENABLE_TELEPHONE_NUMBER_DETECTION;
 ENABLE_TELEPHONE_NUMBER_DETECTION[sdk=macosx*] = $(ENABLE_TELEPHONE_NUMBER_DETECTION_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));

Modified: trunk/Source/WebCore/ChangeLog (179123 => 179124)


--- trunk/Source/WebCore/ChangeLog	2015-01-26 18:31:23 UTC (rev 179123)
+++ trunk/Source/WebCore/ChangeLog	2015-01-26 18:33:31 UTC (rev 179124)
@@ -1,3 +1,17 @@
+2015-01-26  Myles C. Maxfield  <[email protected]>
+
+        [iOS] [SVG -> OTF Converter] Flip the switch off on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=140860
+
+        Reviewed by Darin Adler.
+
+        No new tests because this simply reverts broken code.
+
+        The fonts it makes are grotesque. (See what I did there? Typographic
+        humor is the best humor.)
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2015-01-26  Chris Dumez  <[email protected]>
 
         Demote 'line-height' to a low priority property.

Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (179123 => 179124)


--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2015-01-26 18:31:23 UTC (rev 179123)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2015-01-26 18:33:31 UTC (rev 179124)
@@ -172,7 +172,8 @@
 ENABLE_SUBTLE_CRYPTO_macosx_101000 = ENABLE_SUBTLE_CRYPTO;
 ENABLE_SUBTLE_CRYPTO_macosx_101100 = ENABLE_SUBTLE_CRYPTO;
 ENABLE_SVG_FONTS = ENABLE_SVG_FONTS;
-ENABLE_SVG_OTF_CONVERTER = ENABLE_SVG_OTF_CONVERTER;
+ENABLE_SVG_OTF_CONVERTER[sdk=iphone*] = ;
+ENABLE_SVG_OTF_CONVERTER[sdk=macosx*] = ENABLE_SVG_OTF_CONVERTER;
 
 ENABLE_TELEPHONE_NUMBER_DETECTION[sdk=iphone*] = ENABLE_TELEPHONE_NUMBER_DETECTION;
 ENABLE_TELEPHONE_NUMBER_DETECTION[sdk=macosx*] = $(ENABLE_TELEPHONE_NUMBER_DETECTION_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));

Modified: trunk/Source/WebKit/mac/ChangeLog (179123 => 179124)


--- trunk/Source/WebKit/mac/ChangeLog	2015-01-26 18:31:23 UTC (rev 179123)
+++ trunk/Source/WebKit/mac/ChangeLog	2015-01-26 18:33:31 UTC (rev 179124)
@@ -1,3 +1,15 @@
+2015-01-26  Myles C. Maxfield  <[email protected]>
+
+        [iOS] [SVG -> OTF Converter] Flip the switch off on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=140860
+
+        Reviewed by Darin Adler.
+
+        The fonts it makes are grotesque. (See what I did there? Typographic
+        humor is the best humor.)
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2015-01-23  Timothy Horton  <[email protected]>
 
         QLPreviewMenuItem popovers don't close when the page scrolls

Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (179123 => 179124)


--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2015-01-26 18:31:23 UTC (rev 179123)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2015-01-26 18:33:31 UTC (rev 179124)
@@ -172,7 +172,8 @@
 ENABLE_SUBTLE_CRYPTO_macosx_101000 = ENABLE_SUBTLE_CRYPTO;
 ENABLE_SUBTLE_CRYPTO_macosx_101100 = ENABLE_SUBTLE_CRYPTO;
 ENABLE_SVG_FONTS = ENABLE_SVG_FONTS;
-ENABLE_SVG_OTF_CONVERTER = ENABLE_SVG_OTF_CONVERTER;
+ENABLE_SVG_OTF_CONVERTER[sdk=iphone*] = ;
+ENABLE_SVG_OTF_CONVERTER[sdk=macosx*] = ENABLE_SVG_OTF_CONVERTER;
 
 ENABLE_TELEPHONE_NUMBER_DETECTION[sdk=iphone*] = ENABLE_TELEPHONE_NUMBER_DETECTION;
 ENABLE_TELEPHONE_NUMBER_DETECTION[sdk=macosx*] = $(ENABLE_TELEPHONE_NUMBER_DETECTION_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));

Modified: trunk/Source/WebKit2/ChangeLog (179123 => 179124)


--- trunk/Source/WebKit2/ChangeLog	2015-01-26 18:31:23 UTC (rev 179123)
+++ trunk/Source/WebKit2/ChangeLog	2015-01-26 18:33:31 UTC (rev 179124)
@@ -1,3 +1,15 @@
+2015-01-26  Myles C. Maxfield  <[email protected]>
+
+        [iOS] [SVG -> OTF Converter] Flip the switch off on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=140860
+
+        Reviewed by Darin Adler.
+
+        The fonts it makes are grotesque. (See what I did there? Typographic
+        humor is the best humor.)
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2015-01-26  Fabien VallĂ©e  <[email protected]>
 
         AX: crash in accessibilityRootObjectWrapper method (WebPageAccessibilityObjectAtk.cpp)

Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (179123 => 179124)


--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2015-01-26 18:31:23 UTC (rev 179123)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2015-01-26 18:33:31 UTC (rev 179124)
@@ -172,7 +172,8 @@
 ENABLE_SUBTLE_CRYPTO_macosx_101000 = ENABLE_SUBTLE_CRYPTO;
 ENABLE_SUBTLE_CRYPTO_macosx_101100 = ENABLE_SUBTLE_CRYPTO;
 ENABLE_SVG_FONTS = ENABLE_SVG_FONTS;
-ENABLE_SVG_OTF_CONVERTER = ENABLE_SVG_OTF_CONVERTER;
+ENABLE_SVG_OTF_CONVERTER[sdk=iphone*] = ;
+ENABLE_SVG_OTF_CONVERTER[sdk=macosx*] = ENABLE_SVG_OTF_CONVERTER;
 
 ENABLE_TELEPHONE_NUMBER_DETECTION[sdk=iphone*] = ENABLE_TELEPHONE_NUMBER_DETECTION;
 ENABLE_TELEPHONE_NUMBER_DETECTION[sdk=macosx*] = $(ENABLE_TELEPHONE_NUMBER_DETECTION_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to