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

Unified Diff: LayoutTests/media/track/opera/interfaces/TextTrackList/onremovetrack.html

Issue 1213813002: Work around flaky TextTrackList tests that will be stable with Oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/media/track/opera/interfaces/TextTrackList/onaddtrack.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/track/opera/interfaces/TextTrackList/onremovetrack.html
diff --git a/LayoutTests/media/track/opera/interfaces/TextTrackList/onremovetrack.html b/LayoutTests/media/track/opera/interfaces/TextTrackList/onremovetrack.html
index 70f3ed1607bf31b3f20cf3b39dffeefeddbc670e..922bf780157eceb1d038aa5f68a63e02dbe33232 100644
--- a/LayoutTests/media/track/opera/interfaces/TextTrackList/onremovetrack.html
+++ b/LayoutTests/media/track/opera/interfaces/TextTrackList/onremovetrack.html
@@ -5,7 +5,10 @@
<div id=log></div>
<script>
setup(function(){
- window.tracks = document.createElement('video').textTracks;
+ // TODO(philipj): Remove this test in favor of those in web-platform-tests
+ // once Oilpan has shipped. https://crbug.com/503852
+ window.video = document.createElement('video');
+ window.tracks = video.textTracks;
window.ev = new Event('removetrack');
window.ran = false;
window.cb = function() { ran = true; };
« no previous file with comments | « LayoutTests/media/track/opera/interfaces/TextTrackList/onaddtrack.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698