Title: [114523] trunk/Source/WebCore
Revision
114523
Author
[email protected]
Date
2012-04-18 10:16:57 -0700 (Wed, 18 Apr 2012)

Log Message

[EFL][DRT] @font-face support fails on EFL
https://bugs.webkit.org/show_bug.cgi?id=83264

Patch by Dominik Röttsches <[email protected]> on 2012-04-18
Reviewed by Dimitri Glazkov.

STORE_FONT_CUSTOM_PLATFORM_DATA was not defined for EFL.
Fixing that by removing a long standing FIXME with the intention
to turn the whitelist for this switch into a blacklist.

* loader/cache/CachedFont.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (114522 => 114523)


--- trunk/Source/WebCore/ChangeLog	2012-04-18 17:15:20 UTC (rev 114522)
+++ trunk/Source/WebCore/ChangeLog	2012-04-18 17:16:57 UTC (rev 114523)
@@ -1,3 +1,16 @@
+2012-04-18  Dominik Röttsches  <[email protected]>
+
+        [EFL][DRT] @font-face support fails on EFL
+        https://bugs.webkit.org/show_bug.cgi?id=83264
+
+        Reviewed by Dimitri Glazkov.
+
+        STORE_FONT_CUSTOM_PLATFORM_DATA was not defined for EFL.
+        Fixing that by removing a long standing FIXME with the intention
+        to turn the whitelist for this switch into a blacklist.
+
+        * loader/cache/CachedFont.cpp:
+
 2012-04-18  Levi Weintraub  <[email protected]>
 
         Convert ShadowData and DropShadowFilterOperation to use IntPoint

Modified: trunk/Source/WebCore/loader/cache/CachedFont.cpp (114522 => 114523)


--- trunk/Source/WebCore/loader/cache/CachedFont.cpp	2012-04-18 17:15:20 UTC (rev 114522)
+++ trunk/Source/WebCore/loader/cache/CachedFont.cpp	2012-04-18 17:16:57 UTC (rev 114523)
@@ -27,8 +27,7 @@
 #include "config.h"
 #include "CachedFont.h"
 
-// FIXME: This should really be a blacklist instead of a whitelist
-#if USE(CG) || PLATFORM(QT) || PLATFORM(GTK) || (PLATFORM(CHROMIUM) && (!OS(DARWIN) || USE(SKIA_ON_MAC_CHROMIUM))) || OS(WINCE) || PLATFORM(BLACKBERRY)
+#if !PLATFORM(WIN_CAIRO) && !PLATFORM(WX)
 #define STORE_FONT_CUSTOM_PLATFORM_DATA
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to