Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: LayoutTests/media/track/track-disabled.html

Issue 18856005: Fix HTMLMediaElement so that it doesn't add cues for disabled text tracks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/media/track/track-disabled-addcue.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/track/track-disabled.html
diff --git a/LayoutTests/media/track/track-disabled.html b/LayoutTests/media/track/track-disabled.html
index 21da7fa5b20e07ee8b32c76cca5652cce6f71837..aba3ccf35cbce5f7fbabd200cd706998658a65b9 100644
--- a/LayoutTests/media/track/track-disabled.html
+++ b/LayoutTests/media/track/track-disabled.html
@@ -9,11 +9,23 @@
waitForEvent('loadstart', function ()
{
- var v = document.getElementById('vid');
- v.textTracks[0].mode = "disabled";
+ var video = document.getElementById('vid');
+ video.textTracks[0].mode = "disabled";
+
+ consoleWrite("Waiting for the duration of the first cue to elapse.");
+ video.addEventListener('timeupdate', function (e)
+ {
+ if (e.target.currentTime < 1)
+ return;
+
+ // End test after the duration of the first cue to make sure the test
+ // doesn't crash during the period this cue would have been
+ // rendered if the track was not disabled.
+ consoleWrite("The duration of the first cue has elapsed.");
+ endTest();
+ });
});
- waitForEventAndEnd('loadedmetadata');
</script>
</head>
<body>
« no previous file with comments | « no previous file | LayoutTests/media/track/track-disabled-addcue.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698