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

Unified Diff: third_party/WebKit/LayoutTests/media/track/track-css-matching-lang.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/track-css-matching-lang.html
diff --git a/third_party/WebKit/LayoutTests/media/track/track-css-matching-lang.html b/third_party/WebKit/LayoutTests/media/track/track-css-matching-lang.html
index 7f6be3d64a8b5e794d311f2fadba5e35b8d24a3f..60629f06a226ec15f9c225f66c47bac238038e17 100644
--- a/third_party/WebKit/LayoutTests/media/track/track-css-matching-lang.html
+++ b/third_party/WebKit/LayoutTests/media/track/track-css-matching-lang.html
@@ -22,7 +22,7 @@ async_test(function(t) {
video.appendChild(track);
video.onseeked = t.step_func_done(function() {
- var cueNode = textTrackDisplayElement(video, 'cue').firstElementChild.firstElementChild;
+ var cueNode = textTrackCueElementByIndex(video, 0).firstChild.firstElementChild.firstElementChild;
assert_equals(getComputedStyle(cueNode).color, 'rgb(128, 0, 128)');
cueNode = cueNode.firstElementChild.firstElementChild;
assert_equals(getComputedStyle(cueNode).color, 'rgb(0, 255, 0)');

Powered by Google App Engine
This is Rietveld 408576698