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

Side by Side Diff: third_party/WebKit/LayoutTests/media/track/track-remove-track.html

Issue 2268373002: clean up media tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5
6 <script src="../media-file.js"></script> 6 <script src="../media-file.js"></script>
7 <script src="../../resources/testharness.js"></script> 7 <script src="../../resources/testharness.js"></script>
8 <script src="../../resources/testharnessreport.js"></script> 8 <script src="../../resources/testharnessreport.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 94
95 video.textTracks.addEventListener("removetrack", test.step_func( function() 95 video.textTracks.addEventListener("removetrack", test.step_func( function()
96 { 96 {
97 assert_unreached("'removetrack' event should not fire.") 97 assert_unreached("'removetrack' event should not fire.")
98 })); 98 }));
99 99
100 video.src = url; 100 video.src = url;
101 }, "Tests that the 'removetrack' event is NOT fired for inband TextT rack on a failed load."); 101 }, "Tests that the 'removetrack' event is NOT fired for inband TextT rack on a failed load.");
102 102
103 </script> 103 </script>
104 <div id="log"></div>
105 </body> 104 </body>
106 </html> 105 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698