Title: [180549] trunk
Revision
180549
Author
rn...@webkit.org
Date
2015-02-23 21:01:15 -0800 (Mon, 23 Feb 2015)

Log Message

Disable font loading events until our implementation gets updated to match the latest spec
https://bugs.webkit.org/show_bug.cgi?id=141938

Reviewed by Andreas Kling.

Source/_javascript_Core:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

Revert r173531 for now since our implementation is outdated.

* Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

* Configurations/FeatureDefines.xcconfig:

LayoutTests:

* TestExpectations:
* platform/mac/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (180548 => 180549)


--- trunk/LayoutTests/ChangeLog	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/LayoutTests/ChangeLog	2015-02-24 05:01:15 UTC (rev 180549)
@@ -1,3 +1,13 @@
+2015-02-23  Ryosuke Niwa  <rn...@webkit.org>
+
+        Disable font loading events until our implementation gets updated to match the latest spec
+        https://bugs.webkit.org/show_bug.cgi?id=141938
+
+        Reviewed by Andreas Kling.
+
+        * TestExpectations:
+        * platform/mac/TestExpectations:
+
 2015-02-23  Benjamin Poulain  <benja...@webkit.org>
 
         CSS JIT: add support for case-insensitive attribute matching

Modified: trunk/LayoutTests/TestExpectations (180548 => 180549)


--- trunk/LayoutTests/TestExpectations	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/LayoutTests/TestExpectations	2015-02-24 05:01:15 UTC (rev 180549)
@@ -136,6 +136,7 @@
 webkit.org/b/135390 fast/css/fontloader-multiple-faces.html [ Skip ]
 webkit.org/b/135390 fast/css/fontloader-multiple-families.html [ Skip ]
 webkit.org/b/135390 fast/css/fontloader-page-cache.html [ Skip ]
+webkit.org/b/135390 fast/css/fontloader-svg-select.svg [ Skip ]
 webkit.org/b/135390 http/tests/webfont/fontloader-loading-attribute.html [ Skip ]
 
 # Various failures from the W3C CSS Shapes test suite import

Modified: trunk/LayoutTests/platform/mac/TestExpectations (180548 => 180549)


--- trunk/LayoutTests/platform/mac/TestExpectations	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/LayoutTests/platform/mac/TestExpectations	2015-02-24 05:01:15 UTC (rev 180549)
@@ -1082,16 +1082,6 @@
 webkit.org/b/139708 http/tests/media/video-buffered-range-contains-currentTime.html [ Pass Timeout ]
 # --- End media tests ---
 
-# CSS Font Loading is only enabled on Mac, and tests are not run by default
-webkit.org/b/135390 fast/css/fontloader-download-error.html [ Pass ]
-webkit.org/b/135390 fast/css/fontloader-events.html [ Pass ]
-webkit.org/b/135390 fast/css/fontloader-loadingdone.html [ Pass ]
-webkit.org/b/135390 fast/css/fontloader-multiple-faces-download-error.html [ Pass ]
-webkit.org/b/135390 fast/css/fontloader-multiple-faces.html [ Pass ]
-webkit.org/b/135390 fast/css/fontloader-multiple-families.html [ Pass ]
-webkit.org/b/135390 fast/css/fontloader-page-cache.html [ Pass ]
-webkit.org/b/135390 http/tests/webfont/fontloader-loading-attribute.html [ Pass ]
-
 webkit.org/b/136994 http/tests/media/hls/video-cookie.html [ Failure ]
 
 # Some inspector tests failing after r173992

Modified: trunk/Source/_javascript_Core/ChangeLog (180548 => 180549)


--- trunk/Source/_javascript_Core/ChangeLog	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-02-24 05:01:15 UTC (rev 180549)
@@ -1,3 +1,12 @@
+2015-02-23  Ryosuke Niwa  <rn...@webkit.org>
+
+        Disable font loading events until our implementation gets updated to match the latest spec
+        https://bugs.webkit.org/show_bug.cgi?id=141938
+
+        Reviewed by Andreas Kling.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2015-02-23  Yusuke Suzuki  <utatane....@gmail.com>
 
         REGRESSION(r179429): Can't type comments in Facebook

Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (180548 => 180549)


--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2015-02-24 05:01:15 UTC (rev 180549)
@@ -73,7 +73,7 @@
 ENABLE_FILTERS_LEVEL_2_macosx_1090 = ;
 ENABLE_FILTERS_LEVEL_2_macosx_101000 = ENABLE_FILTERS_LEVEL_2;
 ENABLE_FILTERS_LEVEL_2_macosx_101100 = ENABLE_FILTERS_LEVEL_2;
-ENABLE_FONT_LOAD_EVENTS = ENABLE_FONT_LOAD_EVENTS;
+ENABLE_FONT_LOAD_EVENTS = ;
 ENABLE_FULLSCREEN_API[sdk=macosx*] = ENABLE_FULLSCREEN_API;
 ENABLE_GAMEPAD[sdk=macosx*] = ENABLE_GAMEPAD;
 ENABLE_GAMEPAD_DEPRECATED = ;

Modified: trunk/Source/WebCore/ChangeLog (180548 => 180549)


--- trunk/Source/WebCore/ChangeLog	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/Source/WebCore/ChangeLog	2015-02-24 05:01:15 UTC (rev 180549)
@@ -1,3 +1,14 @@
+2015-02-23  Ryosuke Niwa  <rn...@webkit.org>
+
+        Disable font loading events until our implementation gets updated to match the latest spec
+        https://bugs.webkit.org/show_bug.cgi?id=141938
+
+        Reviewed by Andreas Kling.
+
+        Revert r173531 for now since our implementation is outdated.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2015-02-23  Brent Fulgham  <bfulg...@apple.com>
 
         EventHandler references deleted Scrollbar

Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (180548 => 180549)


--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2015-02-24 05:01:15 UTC (rev 180549)
@@ -73,7 +73,7 @@
 ENABLE_FILTERS_LEVEL_2_macosx_1090 = ;
 ENABLE_FILTERS_LEVEL_2_macosx_101000 = ENABLE_FILTERS_LEVEL_2;
 ENABLE_FILTERS_LEVEL_2_macosx_101100 = ENABLE_FILTERS_LEVEL_2;
-ENABLE_FONT_LOAD_EVENTS = ENABLE_FONT_LOAD_EVENTS;
+ENABLE_FONT_LOAD_EVENTS = ;
 ENABLE_FULLSCREEN_API[sdk=macosx*] = ENABLE_FULLSCREEN_API;
 ENABLE_GAMEPAD[sdk=macosx*] = ENABLE_GAMEPAD;
 ENABLE_GAMEPAD_DEPRECATED = ;

Modified: trunk/Source/WebKit/mac/ChangeLog (180548 => 180549)


--- trunk/Source/WebKit/mac/ChangeLog	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/Source/WebKit/mac/ChangeLog	2015-02-24 05:01:15 UTC (rev 180549)
@@ -1,3 +1,12 @@
+2015-02-23  Ryosuke Niwa  <rn...@webkit.org>
+
+        Disable font loading events until our implementation gets updated to match the latest spec
+        https://bugs.webkit.org/show_bug.cgi?id=141938
+
+        Reviewed by Andreas Kling.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2015-02-23  Yusuke Suzuki  <utatane....@gmail.com>
 
         REGRESSION(r179429): Can't type comments in Facebook

Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (180548 => 180549)


--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2015-02-24 05:01:15 UTC (rev 180549)
@@ -73,7 +73,7 @@
 ENABLE_FILTERS_LEVEL_2_macosx_1090 = ;
 ENABLE_FILTERS_LEVEL_2_macosx_101000 = ENABLE_FILTERS_LEVEL_2;
 ENABLE_FILTERS_LEVEL_2_macosx_101100 = ENABLE_FILTERS_LEVEL_2;
-ENABLE_FONT_LOAD_EVENTS = ENABLE_FONT_LOAD_EVENTS;
+ENABLE_FONT_LOAD_EVENTS = ;
 ENABLE_FULLSCREEN_API[sdk=macosx*] = ENABLE_FULLSCREEN_API;
 ENABLE_GAMEPAD[sdk=macosx*] = ENABLE_GAMEPAD;
 ENABLE_GAMEPAD_DEPRECATED = ;

Modified: trunk/Source/WebKit2/ChangeLog (180548 => 180549)


--- trunk/Source/WebKit2/ChangeLog	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/Source/WebKit2/ChangeLog	2015-02-24 05:01:15 UTC (rev 180549)
@@ -1,3 +1,12 @@
+2015-02-23  Ryosuke Niwa  <rn...@webkit.org>
+
+        Disable font loading events until our implementation gets updated to match the latest spec
+        https://bugs.webkit.org/show_bug.cgi?id=141938
+
+        Reviewed by Andreas Kling.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2015-02-23  Yusuke Suzuki  <utatane....@gmail.com>
 
         REGRESSION(r179429): Can't type comments in Facebook

Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (180548 => 180549)


--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2015-02-24 04:09:21 UTC (rev 180548)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2015-02-24 05:01:15 UTC (rev 180549)
@@ -73,7 +73,7 @@
 ENABLE_FILTERS_LEVEL_2_macosx_1090 = ;
 ENABLE_FILTERS_LEVEL_2_macosx_101000 = ENABLE_FILTERS_LEVEL_2;
 ENABLE_FILTERS_LEVEL_2_macosx_101100 = ENABLE_FILTERS_LEVEL_2;
-ENABLE_FONT_LOAD_EVENTS = ENABLE_FONT_LOAD_EVENTS;
+ENABLE_FONT_LOAD_EVENTS = ;
 ENABLE_FULLSCREEN_API[sdk=macosx*] = ENABLE_FULLSCREEN_API;
 ENABLE_GAMEPAD[sdk=macosx*] = ENABLE_GAMEPAD;
 ENABLE_GAMEPAD_DEPRECATED = ;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to