Diff
Modified: trunk/LayoutTests/ChangeLog (169382 => 169383)
--- trunk/LayoutTests/ChangeLog 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/LayoutTests/ChangeLog 2014-05-27 16:25:56 UTC (rev 169383)
@@ -1,3 +1,14 @@
+2014-05-27 Jon Lee <[email protected]>
+
+ Update ENABLE(MEDIA_SOURCE) on Mac
+ https://bugs.webkit.org/show_bug.cgi?id=133141
+
+ Reviewed by Darin Adler.
+
+ * platform/mac-mountainlion/js/dom/global-constructors-attributes-expected.txt:
+ * platform/mac/TestExpectations:
+ * platform/mac/js/dom/global-constructors-attributes-expected.txt:
+
2014-05-27 Michał Pakuła vel Rutka <[email protected]>
Unreviewed EFL gardening
Modified: trunk/LayoutTests/platform/mac/TestExpectations (169382 => 169383)
--- trunk/LayoutTests/platform/mac/TestExpectations 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/LayoutTests/platform/mac/TestExpectations 2014-05-27 16:25:56 UTC (rev 169383)
@@ -1368,3 +1368,5 @@
webkit.org/b/132385 compositing/repaint/repaint-on-layer-grouping-change.html [ Pass Failure ]
webkit.org/b/132491 [ MountainLion ] http/tests/media/hls/video-controls-live-stream.html [ WontFix ]
+
+[ MountainLion Mavericks ] media/media-source [ WontFix ]
Modified: trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt (169382 => 169383)
--- trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt 2014-05-27 16:25:56 UTC (rev 169383)
@@ -828,11 +828,6 @@
PASS Object.getOwnPropertyDescriptor(global, 'MediaList').hasOwnProperty('set') is false
PASS Object.getOwnPropertyDescriptor(global, 'MediaList').enumerable is false
PASS Object.getOwnPropertyDescriptor(global, 'MediaList').configurable is true
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').value is MediaSource
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').hasOwnProperty('get') is false
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').enumerable is false
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').configurable is true
PASS Object.getOwnPropertyDescriptor(global, 'MessageChannel').value is MessageChannel
PASS Object.getOwnPropertyDescriptor(global, 'MessageChannel').hasOwnProperty('get') is false
PASS Object.getOwnPropertyDescriptor(global, 'MessageChannel').hasOwnProperty('set') is false
Modified: trunk/LayoutTests/platform/mac-mountainlion/js/dom/global-constructors-attributes-expected.txt (169382 => 169383)
--- trunk/LayoutTests/platform/mac-mountainlion/js/dom/global-constructors-attributes-expected.txt 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/LayoutTests/platform/mac-mountainlion/js/dom/global-constructors-attributes-expected.txt 2014-05-27 16:25:56 UTC (rev 169383)
@@ -818,11 +818,6 @@
PASS Object.getOwnPropertyDescriptor(global, 'MediaList').hasOwnProperty('set') is false
PASS Object.getOwnPropertyDescriptor(global, 'MediaList').enumerable is false
PASS Object.getOwnPropertyDescriptor(global, 'MediaList').configurable is true
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').value is MediaSource
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').hasOwnProperty('get') is false
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').enumerable is false
-PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').configurable is true
PASS Object.getOwnPropertyDescriptor(global, 'MessageChannel').value is MessageChannel
PASS Object.getOwnPropertyDescriptor(global, 'MessageChannel').hasOwnProperty('get') is false
PASS Object.getOwnPropertyDescriptor(global, 'MessageChannel').hasOwnProperty('set') is false
Modified: trunk/Source/_javascript_Core/ChangeLog (169382 => 169383)
--- trunk/Source/_javascript_Core/ChangeLog 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-05-27 16:25:56 UTC (rev 169383)
@@ -1,3 +1,12 @@
+2014-05-27 Jon Lee <[email protected]>
+
+ Update ENABLE(MEDIA_SOURCE) on Mac
+ https://bugs.webkit.org/show_bug.cgi?id=133141
+
+ Reviewed by Darin Adler.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2014-05-27 Tibor Meszaros <[email protected]>
Remove BLOB guards
Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (169382 => 169383)
--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig 2014-05-27 16:25:56 UTC (rev 169383)
@@ -143,7 +143,10 @@
ENABLE_MEDIA_CONTROLS_SCRIPT = ENABLE_MEDIA_CONTROLS_SCRIPT;
ENABLE_MEDIA_SOURCE = $(ENABLE_MEDIA_SOURCE_$(PLATFORM_NAME));
-ENABLE_MEDIA_SOURCE_macosx = ENABLE_MEDIA_SOURCE;
+ENABLE_MEDIA_SOURCE_macosx = $(ENABLE_MEDIA_SOURCE_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_MEDIA_SOURCE_macosx_1080 = ;
+ENABLE_MEDIA_SOURCE_macosx_1090 = ;
+ENABLE_MEDIA_SOURCE_macosx_101000 = ENABLE_MEDIA_SOURCE;
ENABLE_MEDIA_STATISTICS = ;
ENABLE_METER_ELEMENT = $(ENABLE_METER_ELEMENT_$(PLATFORM_NAME));
Modified: trunk/Source/WTF/ChangeLog (169382 => 169383)
--- trunk/Source/WTF/ChangeLog 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/WTF/ChangeLog 2014-05-27 16:25:56 UTC (rev 169383)
@@ -1,3 +1,12 @@
+2014-05-27 Jon Lee <[email protected]>
+
+ Update ENABLE(MEDIA_SOURCE) on Mac
+ https://bugs.webkit.org/show_bug.cgi?id=133141
+
+ Reviewed by Darin Adler.
+
+ * wtf/FeatureDefines.h: #ifdef unneeded for Mac since it's covered in the .xcconfigs.
+
2014-05-27 Tibor Meszaros <[email protected]>
Remove BLOB guards
Modified: trunk/Source/WTF/wtf/FeatureDefines.h (169382 => 169383)
--- trunk/Source/WTF/wtf/FeatureDefines.h 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/WTF/wtf/FeatureDefines.h 2014-05-27 16:25:56 UTC (rev 169383)
@@ -232,10 +232,6 @@
#define ENABLE_INPUT_TYPE_COLOR_POPOVER 1
#endif
-#if !defined(ENABLE_MEDIA_SOURCE)
-#define ENABLE_MEDIA_SOURCE 1
-#endif
-
#if !defined(ENABLE_FILE_REPLACEMENT)
#define ENABLE_FILE_REPLACEMENT 1
#endif
Modified: trunk/Source/WebCore/ChangeLog (169382 => 169383)
--- trunk/Source/WebCore/ChangeLog 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/WebCore/ChangeLog 2014-05-27 16:25:56 UTC (rev 169383)
@@ -1,3 +1,12 @@
+2014-05-27 Jon Lee <[email protected]>
+
+ Update ENABLE(MEDIA_SOURCE) on Mac
+ https://bugs.webkit.org/show_bug.cgi?id=133141
+
+ Reviewed by Darin Adler.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2014-05-27 Tibor Meszaros <[email protected]>
Remove BLOB guards
Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (169382 => 169383)
--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2014-05-27 16:25:56 UTC (rev 169383)
@@ -143,7 +143,10 @@
ENABLE_MEDIA_CONTROLS_SCRIPT = ENABLE_MEDIA_CONTROLS_SCRIPT;
ENABLE_MEDIA_SOURCE = $(ENABLE_MEDIA_SOURCE_$(PLATFORM_NAME));
-ENABLE_MEDIA_SOURCE_macosx = ENABLE_MEDIA_SOURCE;
+ENABLE_MEDIA_SOURCE_macosx = $(ENABLE_MEDIA_SOURCE_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_MEDIA_SOURCE_macosx_1080 = ;
+ENABLE_MEDIA_SOURCE_macosx_1090 = ;
+ENABLE_MEDIA_SOURCE_macosx_101000 = ENABLE_MEDIA_SOURCE;
ENABLE_MEDIA_STATISTICS = ;
ENABLE_METER_ELEMENT = $(ENABLE_METER_ELEMENT_$(PLATFORM_NAME));
Modified: trunk/Source/WebKit/mac/ChangeLog (169382 => 169383)
--- trunk/Source/WebKit/mac/ChangeLog 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/WebKit/mac/ChangeLog 2014-05-27 16:25:56 UTC (rev 169383)
@@ -1,3 +1,12 @@
+2014-05-27 Jon Lee <[email protected]>
+
+ Update ENABLE(MEDIA_SOURCE) on Mac
+ https://bugs.webkit.org/show_bug.cgi?id=133141
+
+ Reviewed by Darin Adler.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2014-05-27 Tibor Meszaros <[email protected]>
Remove BLOB guards
Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (169382 => 169383)
--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig 2014-05-27 16:25:56 UTC (rev 169383)
@@ -143,7 +143,10 @@
ENABLE_MEDIA_CONTROLS_SCRIPT = ENABLE_MEDIA_CONTROLS_SCRIPT;
ENABLE_MEDIA_SOURCE = $(ENABLE_MEDIA_SOURCE_$(PLATFORM_NAME));
-ENABLE_MEDIA_SOURCE_macosx = ENABLE_MEDIA_SOURCE;
+ENABLE_MEDIA_SOURCE_macosx = $(ENABLE_MEDIA_SOURCE_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_MEDIA_SOURCE_macosx_1080 = ;
+ENABLE_MEDIA_SOURCE_macosx_1090 = ;
+ENABLE_MEDIA_SOURCE_macosx_101000 = ENABLE_MEDIA_SOURCE;
ENABLE_MEDIA_STATISTICS = ;
ENABLE_METER_ELEMENT = $(ENABLE_METER_ELEMENT_$(PLATFORM_NAME));
Modified: trunk/Source/WebKit2/ChangeLog (169382 => 169383)
--- trunk/Source/WebKit2/ChangeLog 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/WebKit2/ChangeLog 2014-05-27 16:25:56 UTC (rev 169383)
@@ -1,3 +1,12 @@
+2014-05-27 Jon Lee <[email protected]>
+
+ Update ENABLE(MEDIA_SOURCE) on Mac
+ https://bugs.webkit.org/show_bug.cgi?id=133141
+
+ Reviewed by Darin Adler.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2014-05-27 Tibor Meszaros <[email protected]>
Remove BLOB guards
Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (169382 => 169383)
--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig 2014-05-27 15:12:49 UTC (rev 169382)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig 2014-05-27 16:25:56 UTC (rev 169383)
@@ -143,7 +143,10 @@
ENABLE_MEDIA_CONTROLS_SCRIPT = ENABLE_MEDIA_CONTROLS_SCRIPT;
ENABLE_MEDIA_SOURCE = $(ENABLE_MEDIA_SOURCE_$(PLATFORM_NAME));
-ENABLE_MEDIA_SOURCE_macosx = ENABLE_MEDIA_SOURCE;
+ENABLE_MEDIA_SOURCE_macosx = $(ENABLE_MEDIA_SOURCE_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
+ENABLE_MEDIA_SOURCE_macosx_1080 = ;
+ENABLE_MEDIA_SOURCE_macosx_1090 = ;
+ENABLE_MEDIA_SOURCE_macosx_101000 = ENABLE_MEDIA_SOURCE;
ENABLE_MEDIA_STATISTICS = ;
ENABLE_METER_ELEMENT = $(ENABLE_METER_ELEMENT_$(PLATFORM_NAME));