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

Side by Side Diff: third_party/WebKit/LayoutTests/media/audio-controls-captions.html

Issue 2004963003: Convert audio-controls* and audio-delete* tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/media/audio-controls-captions-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <title>Tests that the closed captions button is not visible.</title>
3 <head> 3 <script src="media-file.js"></script>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <script src="media-controls.js"></script>
5 <title>Test closed caption button visbility.</title> 5 <script src="../resources/testharness.js"></script>
6 <script src=media-file.js></script> 6 <script src="../resources/testharnessreport.js"></script>
7 <script src=media-controls.js></script> 7 <audio controls>
8 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956 8 <track src="track/captions-webvtt/captions-fast.vtt" default>
9 (Please avoid writing new tests using video-test.js) --> 9 </audio>
10 <script src=video-test.js></script> 10 <script>
11 </head> 11 async_test(function(t) {
12 <body> 12 var audio = document.querySelector('audio');
13 <p>Tests that the closed captions button is not visible.</p> 13 audio.src = findMediaFile('audio', 'content/test');
14 <audio controls> 14 audio.onloadedmetadata = t.step_func_done(function() {
15 <track src="track/captions-webvtt/captions-fast.vtt"> 15 assert_false(isClosedCaptionsButtonVisible(audio));
16 </audio> 16 });
17 <script> 17 });
18 findMediaElement(); 18 </script>
19 audio.src = findMediaFile('audio', 'content/test');
20 audio.addEventListener('loadedmetadata', function()
21 {
22 testClosedCaptionsButtonVisibility(false);
23 endTest();
24 });
25 </script>
26 </body>
27 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/media/audio-controls-captions-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698