Title: [152318] trunk
- Revision
- 152318
- Author
- [email protected]
- Date
- 2013-07-02 13:28:57 -0700 (Tue, 02 Jul 2013)
Log Message
[Mac] .webkitClosedCaptionsVisible doesn't work with "Automatic" caption mode
https://bugs.webkit.org/show_bug.cgi?id=118319
Reviewed by Darin Adler.
Source/WebCore:
Test: media/track/track-legacyapi-with-automatic-mode.html
* page/CaptionUserPreferencesMediaAF.cpp:
(WebCore::CaptionUserPreferencesMediaAF::textTrackSelectionScore): Don't apply "automatic"
logic when captions were enabled with .webkitClosedCaptionsVisible.
LayoutTests:
* media/track/track-legacyapi-with-automatic-mode-expected.txt: Added.
* media/track/track-legacyapi-with-automatic-mode.html: Added.
Modified Paths
Added Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (152317 => 152318)
--- trunk/LayoutTests/ChangeLog 2013-07-02 20:07:22 UTC (rev 152317)
+++ trunk/LayoutTests/ChangeLog 2013-07-02 20:28:57 UTC (rev 152318)
@@ -1,3 +1,13 @@
+2013-07-02 Eric Carlson <[email protected]>
+
+ [Mac] .webkitClosedCaptionsVisible doesn't work with "Automatic" caption mode
+ https://bugs.webkit.org/show_bug.cgi?id=118319
+
+ Reviewed by Darin Adler.
+
+ * media/track/track-legacyapi-with-automatic-mode-expected.txt: Added.
+ * media/track/track-legacyapi-with-automatic-mode.html: Added.
+
2013-06-26 Robert Hogan <[email protected]>
empty inlines should not affect line-wrapping
Added: trunk/LayoutTests/media/track/track-legacyapi-with-automatic-mode-expected.txt (0 => 152318)
--- trunk/LayoutTests/media/track/track-legacyapi-with-automatic-mode-expected.txt (rev 0)
+++ trunk/LayoutTests/media/track/track-legacyapi-with-automatic-mode-expected.txt 2013-07-02 20:28:57 UTC (rev 152318)
@@ -0,0 +1,30 @@
+Test that enabling a track with .webkitClosedCaptionsVisible succeeds when in "automatic" mode.
+
+
+** Setup
+RUN(internals.setCaptionDisplayMode('Automatic'))
+RUN(trackElement = document.createElement('track'))
+RUN(trackElement.kind = 'captions')
+RUN(trackElement.src = '')
+RUN(video.appendChild(trackElement))
+
+EVENT(canplaythrough)
+
+** Test initial state
+EXPECTED (video.textTracks.length == '1') OK
+EXPECTED (video.textTracks[0].mode == 'disabled') OK
+
+** Enable cues, allow them to load
+RUN(video.webkitClosedCaptionsVisible = true)
+EVENT(load)
+EXPECTED (track.readyState == '2') OK
+RUN(video.currentTime = 0.5)
+
+EVENT(seeked)
+
+** Check to make sure captions are displaying
+EXPECTED (video.textTracks[0].cues != 'null') OK
+EXPECTED (textTrackDisplayElement(video, 'cue').textContent != 'null') OK
+
+END OF TEST
+
Added: trunk/LayoutTests/media/track/track-legacyapi-with-automatic-mode.html (0 => 152318)
--- trunk/LayoutTests/media/track/track-legacyapi-with-automatic-mode.html (rev 0)
+++ trunk/LayoutTests/media/track/track-legacyapi-with-automatic-mode.html 2013-07-02 20:28:57 UTC (rev 152318)
@@ -0,0 +1,67 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Enabling a track with legacy API succeeds when in "Automatic" mode</title>
+
+ <script src=""
+ <script src=""
+ <script src=""
+ <script src=""
+ <script>
+
+ function seeked()
+ {
+ consoleWrite("<br><i>** Check to make sure captions are displaying<" + "/i>");
+
+ testExpected("video.textTracks[0].cues", null, '!=');
+ testExpected("textTrackDisplayElement(video, 'cue').textContent", null, '!=');
+
+ consoleWrite("");
+ endTest();
+ }
+
+ function trackLoaded()
+ {
+ consoleWrite("EVENT(load)");
+ track = event.target;
+ testExpected("track.readyState", HTMLTrackElement.LOADED);
+ run("video.currentTime = 0.5");
+ waitForEvent('seeked', seeked);
+ consoleWrite("");
+ }
+
+ function canplaythrough()
+ {
+ consoleWrite("<br><i>** Test initial state<" + "/i>");
+ testExpected("video.textTracks.length", 1);
+ testExpected("video.textTracks[0].mode", "disabled");
+
+ consoleWrite("<br><i>** Enable cues, allow them to load<" + "/i>");
+ run("video.webkitClosedCaptionsVisible = true");
+ }
+
+ function setup()
+ {
+ consoleWrite("<br><i>** Setup<" + "/i>");
+ findMediaElement();
+
+ if (window.internals)
+ run("internals.setCaptionDisplayMode('Automatic')");
+ run("trackElement = document.createElement('track')");
+ run("trackElement.kind = 'captions'");
+ run("trackElement.src = ''");
+ run("video.appendChild(trackElement)");
+
+ video.src = "" '../content/test');
+ trackElement.setAttribute('onload', 'trackLoaded()');
+ waitForEvent('canplaythrough', canplaythrough);
+ consoleWrite("");
+ }
+
+ </script>
+ </head>
+ <body _onload_="setup()">
+ <video controls width=500></video>
+ <p>Test that enabling a track with .webkitClosedCaptionsVisible succeeds when in "automatic" mode.</p>
+ </body>
+</html>
Modified: trunk/Source/WebCore/ChangeLog (152317 => 152318)
--- trunk/Source/WebCore/ChangeLog 2013-07-02 20:07:22 UTC (rev 152317)
+++ trunk/Source/WebCore/ChangeLog 2013-07-02 20:28:57 UTC (rev 152318)
@@ -1,3 +1,16 @@
+2013-07-02 Eric Carlson <[email protected]>
+
+ [Mac] .webkitClosedCaptionsVisible doesn't work with "Automatic" caption mode
+ https://bugs.webkit.org/show_bug.cgi?id=118319
+
+ Reviewed by Darin Adler.
+
+ Test: media/track/track-legacyapi-with-automatic-mode.html
+
+ * page/CaptionUserPreferencesMediaAF.cpp:
+ (WebCore::CaptionUserPreferencesMediaAF::textTrackSelectionScore): Don't apply "automatic"
+ logic when captions were enabled with .webkitClosedCaptionsVisible.
+
2013-07-02 Anders Carlsson <[email protected]>
Always flip the coordinate system before drawing NSViews from Widget::paint
Modified: trunk/Source/WebCore/page/CaptionUserPreferencesMediaAF.cpp (152317 => 152318)
--- trunk/Source/WebCore/page/CaptionUserPreferencesMediaAF.cpp 2013-07-02 20:07:22 UTC (rev 152317)
+++ trunk/Source/WebCore/page/CaptionUserPreferencesMediaAF.cpp 2013-07-02 20:28:57 UTC (rev 152318)
@@ -680,7 +680,7 @@
Vector<String> userPreferredCaptionLanguages = preferredLanguages();
- if (displayMode == Automatic || trackHasOnlyForcedSubtitles) {
+ if ((displayMode == Automatic && !legacyOverride) || trackHasOnlyForcedSubtitles) {
if (!mediaElement || !mediaElement->player())
return 0;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes