Changeset 173531 in webkit
- Timestamp:
- Sep 11, 2014, 12:37:29 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/mac/TestExpectations (modified) (1 diff)
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/Configurations/FeatureDefines.xcconfig (modified) (1 diff)
-
Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (modified) (1 diff)
-
Source/WebKit/mac/ChangeLog (modified) (1 diff)
-
Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (modified) (1 diff)
-
Source/WebKit2/ChangeLog (modified) (1 diff)
-
Source/WebKit2/Configurations/FeatureDefines.xcconfig (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r173530 r173531 1 2014-09-11 Bear Travis <betravis@adobe.com> 2 3 [CSS Font Loading] Enable CSS Font Loading on Mac 4 https://bugs.webkit.org/show_bug.cgi?id=135473 5 6 Reviewed by Antti Koivisto. 7 8 Enable tests on the Mac platform. As more platforms 9 are added, this should move from the tests defaulting 10 to disabled to the tests defaulting to enabled. 11 12 * platform/mac/TestExpectations: Mark the Font Loading 13 tests as enabled. 14 1 15 2014-09-11 Roger Fong <roger_fong@apple.com> 2 16 -
trunk/LayoutTests/platform/mac/TestExpectations
r173527 r173531 1375 1375 webkit.org/b/121995 media/video-controls-captions-trackmenu-includes-enabled-track.html [ Timeout Failure ] 1376 1376 1377 # CSS Font Loading is only enabled on Mac, and tests are not run by default 1378 webkit.org/b/135390 fast/css/fontloader-download-error.html [ Pass ] 1379 webkit.org/b/135390 fast/css/fontloader-events.html [ Pass ] 1380 webkit.org/b/135390 fast/css/fontloader-loadingdone.html [ Pass ] 1381 webkit.org/b/135390 fast/css/fontloader-multiple-faces-download-error.html [ Pass ] 1382 webkit.org/b/135390 fast/css/fontloader-multiple-faces.html [ Pass ] 1383 webkit.org/b/135390 fast/css/fontloader-multiple-families.html [ Pass ] 1384 webkit.org/b/135390 fast/css/fontloader-page-cache.html [ Pass ] 1385 webkit.org/b/135390 http/tests/webfont/fontloader-loading-attribute.html [ Pass ] 1386 1377 1387 # REGRESSION(r156546): 7 media tests broken (122021) 1378 1388 webkit.org/b/122021 media/track/track-cue-mutable-text.html -
trunk/Source/JavaScriptCore/ChangeLog
r173526 r173531 1 2014-09-11 Bear Travis <betravis@adobe.com> 2 3 [CSS Font Loading] Enable CSS Font Loading on Mac 4 https://bugs.webkit.org/show_bug.cgi?id=135473 5 6 Reviewed by Antti Koivisto. 7 8 Enable CSS Font Loading in FeatureDefines. 9 10 * Configurations/FeatureDefines.xcconfig: 11 1 12 2014-09-11 Joseph Pecoraro <pecoraro@apple.com> 2 13 -
trunk/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig
r173397 r173531 83 83 ENABLE_ENCRYPTED_MEDIA_V2_macosx_1090 = ENABLE_ENCRYPTED_MEDIA_V2; 84 84 ENABLE_ENCRYPTED_MEDIA_V2_macosx_101000 = ENABLE_ENCRYPTED_MEDIA_V2; 85 ENABLE_FONT_LOAD_EVENTS = ;85 ENABLE_FONT_LOAD_EVENTS = ENABLE_FONT_LOAD_EVENTS; 86 86 ENABLE_FULLSCREEN_API = $(ENABLE_FULLSCREEN_API_$(PLATFORM_NAME)); 87 87 ENABLE_FULLSCREEN_API_macosx = ENABLE_FULLSCREEN_API; -
trunk/Source/WebCore/ChangeLog
r173528 r173531 1 2014-09-11 Bear Travis <betravis@adobe.com> 2 3 [CSS Font Loading] Enable CSS Font Loading on Mac 4 https://bugs.webkit.org/show_bug.cgi?id=135473 5 6 Reviewed by Antti Koivisto. 7 8 Enable CSS Font Loading in FeatureDefines, and in 9 RuntimeEnabledFeatures. 10 11 Font Loading tests have been toggled back on in the Mac 12 TestExpectations file. 13 14 * Configurations/FeatureDefines.xcconfig: 15 * bindings/generic/RuntimeEnabledFeatures.cpp: 16 (WebCore::RuntimeEnabledFeatures::RuntimeEnabledFeatures): 17 1 18 2014-09-11 Chris Dumez <cdumez@apple.com> 2 19 -
trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig
r173397 r173531 83 83 ENABLE_ENCRYPTED_MEDIA_V2_macosx_1090 = ENABLE_ENCRYPTED_MEDIA_V2; 84 84 ENABLE_ENCRYPTED_MEDIA_V2_macosx_101000 = ENABLE_ENCRYPTED_MEDIA_V2; 85 ENABLE_FONT_LOAD_EVENTS = ;85 ENABLE_FONT_LOAD_EVENTS = ENABLE_FONT_LOAD_EVENTS; 86 86 ENABLE_FULLSCREEN_API = $(ENABLE_FULLSCREEN_API_$(PLATFORM_NAME)); 87 87 ENABLE_FULLSCREEN_API_macosx = ENABLE_FULLSCREEN_API; -
trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp
r172316 r173531 96 96 #endif 97 97 #if ENABLE(FONT_LOAD_EVENTS) 98 , m_isFontLoadEventsEnabled( false)98 , m_isFontLoadEventsEnabled(true) 99 99 #endif 100 100 #if ENABLE(GAMEPAD) -
trunk/Source/WebKit/mac/ChangeLog
r173523 r173531 1 2014-09-11 Bear Travis <betravis@adobe.com> 2 3 [CSS Font Loading] Enable CSS Font Loading on Mac 4 https://bugs.webkit.org/show_bug.cgi?id=135473 5 6 Reviewed by Antti Koivisto. 7 8 Enable CSS Font Loading in FeatureDefines. 9 10 * Configurations/FeatureDefines.xcconfig: 11 1 12 2014-09-11 Beth Dakin <bdakin@apple.com> 2 13 -
trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig
r173397 r173531 83 83 ENABLE_ENCRYPTED_MEDIA_V2_macosx_1090 = ENABLE_ENCRYPTED_MEDIA_V2; 84 84 ENABLE_ENCRYPTED_MEDIA_V2_macosx_101000 = ENABLE_ENCRYPTED_MEDIA_V2; 85 ENABLE_FONT_LOAD_EVENTS = ;85 ENABLE_FONT_LOAD_EVENTS = ENABLE_FONT_LOAD_EVENTS; 86 86 ENABLE_FULLSCREEN_API = $(ENABLE_FULLSCREEN_API_$(PLATFORM_NAME)); 87 87 ENABLE_FULLSCREEN_API_macosx = ENABLE_FULLSCREEN_API; -
trunk/Source/WebKit2/ChangeLog
r173516 r173531 1 2014-09-11 Bear Travis <betravis@adobe.com> 2 3 [CSS Font Loading] Enable CSS Font Loading on Mac 4 https://bugs.webkit.org/show_bug.cgi?id=135473 5 6 Reviewed by Antti Koivisto. 7 8 Enable CSS Font Loading in FeatureDefines. 9 10 * Configurations/FeatureDefines.xcconfig: 11 1 12 2014-09-11 Youenn Fablet <youenn.fablet@crf.canon.fr> 2 13 -
trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig
r173397 r173531 83 83 ENABLE_ENCRYPTED_MEDIA_V2_macosx_1090 = ENABLE_ENCRYPTED_MEDIA_V2; 84 84 ENABLE_ENCRYPTED_MEDIA_V2_macosx_101000 = ENABLE_ENCRYPTED_MEDIA_V2; 85 ENABLE_FONT_LOAD_EVENTS = ;85 ENABLE_FONT_LOAD_EVENTS = ENABLE_FONT_LOAD_EVENTS; 86 86 ENABLE_FULLSCREEN_API = $(ENABLE_FULLSCREEN_API_$(PLATFORM_NAME)); 87 87 ENABLE_FULLSCREEN_API_macosx = ENABLE_FULLSCREEN_API;
Note:
See TracChangeset
for help on using the changeset viewer.