Title: [113446] trunk
Revision
113446
Author
[email protected]
Date
2012-04-06 09:13:11 -0700 (Fri, 06 Apr 2012)

Log Message

[Gtk] Unskip the video track tests
https://bugs.webkit.org/show_bug.cgi?id=82590

Patch by Zan Dobersek <[email protected]> on 2012-04-06
Reviewed by Martin Robinson.

Source/WebCore:

Enable the video track runtime feature for the Gtk port as well.

No new tests - existing ones will be unskipped.

* bindings/generic/RuntimeEnabledFeatures.cpp:
(WebCore):

LayoutTests:

Unskip passing video track tests and update expectations
where necessary.

* platform/gtk/Skipped:
* platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (113445 => 113446)


--- trunk/LayoutTests/ChangeLog	2012-04-06 16:09:22 UTC (rev 113445)
+++ trunk/LayoutTests/ChangeLog	2012-04-06 16:13:11 UTC (rev 113446)
@@ -1,3 +1,16 @@
+2012-04-06  Zan Dobersek  <[email protected]>
+
+        [Gtk] Unskip the video track tests
+        https://bugs.webkit.org/show_bug.cgi?id=82590
+
+        Reviewed by Martin Robinson.
+
+        Unskip passing video track tests and update expectations
+        where necessary.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
+
 2012-04-06  Stephen Chenney  <[email protected]>
 
         RenderSVGRoot should inherit from RenderReplaced

Modified: trunk/LayoutTests/platform/gtk/Skipped (113445 => 113446)


--- trunk/LayoutTests/platform/gtk/Skipped	2012-04-06 16:09:22 UTC (rev 113445)
+++ trunk/LayoutTests/platform/gtk/Skipped	2012-04-06 16:13:11 UTC (rev 113446)
@@ -403,11 +403,6 @@
 # For now, Web Audio API is disabled
 webaudio
 
-# VIDEO_TRACK is disabled for now
-media/track
-fast/events/constructors/track-event-constructor.html
-http/tests/security/text-track-crossorigin.html
-
 # CSS Filters is disabled
 css3/filters
 

Modified: trunk/LayoutTests/platform/gtk/fast/dom/prototype-inheritance-2-expected.txt (113445 => 113446)


--- trunk/LayoutTests/platform/gtk/fast/dom/prototype-inheritance-2-expected.txt	2012-04-06 16:09:22 UTC (rev 113445)
+++ trunk/LayoutTests/platform/gtk/fast/dom/prototype-inheritance-2-expected.txt	2012-04-06 16:13:11 UTC (rev 113446)
@@ -217,6 +217,9 @@
 PASS TextPrototype from inner.document.forms.testForm.0.attributes.0.lastChild.__proto__
 PASS TextTrack from inner.document.forms.testForm.0.previousElementSibling.previousElementSibling.previousElementSibling.previousElementSibling.track
 PASS TextTrackConstructor from inner.document.forms.testForm.0.previousElementSibling.previousElementSibling.previousElementSibling.previousElementSibling.track.constructor
+PASS TextTrackList from inner.document.forms.testForm.0.previousElementSibling.textTracks
+PASS TextTrackListConstructor from inner.document.forms.testForm.0.previousElementSibling.textTracks.constructor
+PASS TextTrackListPrototype from inner.document.forms.testForm.0.previousElementSibling.textTracks.__proto__
 PASS TextTrackPrototype from inner.document.forms.testForm.0.previousElementSibling.previousElementSibling.previousElementSibling.previousElementSibling.track.__proto__
 PASS TimeRanges from inner.document.forms.testForm.0.previousElementSibling.played
 PASS TimeRangesConstructor from inner.document.forms.testForm.0.previousElementSibling.played.constructor
@@ -455,7 +458,6 @@
 Never found TextMetrics
 Never found TextTrackCue
 Never found TextTrackCueList
-Never found TextTrackList
 Never found URL
 Never found WebKitCSSMatrix
 Never found WebKitCSSRegionRule

Modified: trunk/Source/WebCore/ChangeLog (113445 => 113446)


--- trunk/Source/WebCore/ChangeLog	2012-04-06 16:09:22 UTC (rev 113445)
+++ trunk/Source/WebCore/ChangeLog	2012-04-06 16:13:11 UTC (rev 113446)
@@ -1,3 +1,17 @@
+2012-04-06  Zan Dobersek  <[email protected]>
+
+        [Gtk] Unskip the video track tests
+        https://bugs.webkit.org/show_bug.cgi?id=82590
+
+        Reviewed by Martin Robinson.
+
+        Enable the video track runtime feature for the Gtk port as well.
+
+        No new tests - existing ones will be unskipped.
+
+        * bindings/generic/RuntimeEnabledFeatures.cpp:
+        (WebCore):
+
 2012-04-06  Michael Saboff  <[email protected]>
 
         Call Heap::discardAllCompiledCode() in low memory situations

Modified: trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (113445 => 113446)


--- trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2012-04-06 16:09:22 UTC (rev 113445)
+++ trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2012-04-06 16:13:11 UTC (rev 113446)
@@ -177,7 +177,7 @@
 #endif
 
 #if ENABLE(VIDEO_TRACK)
-#if PLATFORM(MAC)
+#if PLATFORM(MAC) || PLATFORM(GTK)
     bool RuntimeEnabledFeatures::isVideoTrackEnabled = true;
 #else
     bool RuntimeEnabledFeatures::isVideoTrackEnabled = false;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to