Changeset 177908 in webkit
- Timestamp:
- Jan 5, 2015, 5:07:59 AM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r177870 r177908 1 2015-01-05 Hunseop Jeong <hs85.jeong@samsung.com> 2 3 [EFL][GTK] WKPreferencesDefaults test failed after r177506 4 https://bugs.webkit.org/show_bug.cgi?id=140077 5 6 Reviewed by Csaba Osztrogonác. 7 8 WebKit C SPI is available on EFL,GTK. 9 Changed the define order to pass the API test. 10 11 * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp: 12 (TestWebKitAPI::TEST): 13 1 14 2015-01-01 Alexey Proskuryakov <ap@apple.com> 2 15 -
trunk/Tools/TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp
r177506 r177908 45 45 TEST(WebKit2, WKPreferencesDefaults) 46 46 { 47 #if WK_HAVE_C_SPI 47 #if PLATFORM(GTK) || PLATFORM(EFL) 48 static const char* expectedStandardFontFamily = "Times"; 49 static const char* expectedFixedFontFamily = "Courier New"; 50 static const char* expectedSerifFontFamily = "Times"; 51 static const char* expectedSansSerifFontFamily = "Helvetica"; 52 static const char* expectedCursiveFontFamily = "Comic Sans MS"; 53 static const char* expectedFantasyFontFamily = "Impact"; 54 static const char* expectedPictographFontFamily = "Times"; 55 #elif WK_HAVE_C_SPI 48 56 static const char* expectedStandardFontFamily = "Times"; 49 57 static const char* expectedFixedFontFamily = "Courier"; … … 61 69 static const char* expectedFantasyFontFamily = "Papyrus"; 62 70 static const char* expectedPictographFontFamily = "AppleColorEmoji"; 63 #elif PLATFORM(GTK) || PLATFORM(EFL)64 static const char* expectedStandardFontFamily = "Times";65 static const char* expectedFixedFontFamily = "Courier New";66 static const char* expectedSerifFontFamily = "Times";67 static const char* expectedSansSerifFontFamily = "Helvetica";68 static const char* expectedCursiveFontFamily = "Comic Sans MS";69 static const char* expectedFantasyFontFamily = "Impact";70 static const char* expectedPictographFontFamily = "Times";71 71 #endif 72 72
Note:
See TracChangeset
for help on using the changeset viewer.