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

Unified Diff: third_party/WebKit/LayoutTests/media/track/text-track-selection-menu-add-track.html

Issue 2268923003: Clean up textTrackDisplayElement utility function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 4 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
Index: third_party/WebKit/LayoutTests/media/track/text-track-selection-menu-add-track.html
diff --git a/third_party/WebKit/LayoutTests/media/track/text-track-selection-menu-add-track.html b/third_party/WebKit/LayoutTests/media/track/text-track-selection-menu-add-track.html
index 6af6e004d0bab7aedf726cf0cacd45ac3c866274..1dcfa2e94bdb6b8a73d4238c7123bca1ca042fd1 100644
--- a/third_party/WebKit/LayoutTests/media/track/text-track-selection-menu-add-track.html
+++ b/third_party/WebKit/LayoutTests/media/track/text-track-selection-menu-add-track.html
@@ -21,13 +21,13 @@ async_test(function(t) {
assert_equals(video.textTracks[1].mode, "hidden");
// Verify the default track is being displayed.
- assert_equals(textTrackCueDisplayElement(video).innerText, "Lorem");
+ assert_equals(textTrackDisplayElement(video).innerText, "Lorem");
// Click the newly added track.
clickTextTrackAtIndex(video, 1);
assert_equals(video.textTracks[1].mode, "showing");
assert_equals(video.textTracks[0].mode, "disabled");
- assert_equals(textTrackCueDisplayElement(video).innerText, trackCueText);
+ assert_equals(textTrackDisplayElement(video).innerText, trackCueText);
});
video.src = findMediaFile("video", "../content/test");

Powered by Google App Engine
This is Rietveld 408576698