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

Side by Side Diff: third_party/WebKit/LayoutTests/media/track/track-load-error-readyState.html

Issue 1934913002: Convert track-load* tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 7 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/track/track-load-error-readyState-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 the error event on HTMLTrackElement and ERROR readyState on TextTra ck.</title>
3 <head> 3 <video>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <track src="junk" default>
5 5 </video>
6 <script src=../media-file.js></script> 6 <script src="../../resources/testharness.js"></script>
7 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 7 <script src="../../resources/testharnessreport.js"></script>
8 (Please avoid writing new tests using video-test.js) --> 8 <script>
9 <script src=../video-test.js></script> 9 async_test(function(t) {
10 <script> 10 var track = document.querySelector("track");
11 11 track.onerror = t.step_func_done(function() {
12 function trackError() 12 assert_equals(track.readyState, HTMLTrackElement.ERROR);
13 { 13 });
14 consoleWrite("EVENT(error)"); 14 });
15 track = document.getElementById('testTrackError'); 15 </script>
16 testExpected("track.readyState", HTMLTrackElement.ERROR);
17 endTest();
18 }
19
20 </script>
21 </head>
22 <body>
23 <p>Tests the error event on HTMLTrackElement and ERROR readyState on Tex tTrack.</p>
24 <video id="videotests">
25 <track id="testTrackError" src="junk" onerror="trackError()" default >
26 </video>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/media/track/track-load-error-readyState-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698