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

Unified Diff: third_party/WebKit/LayoutTests/media/track/track-cue-rendering-wider-than-controls.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-cue-rendering-wider-than-controls.html
diff --git a/third_party/WebKit/LayoutTests/media/track/track-cue-rendering-wider-than-controls.html b/third_party/WebKit/LayoutTests/media/track/track-cue-rendering-wider-than-controls.html
index f9e8c424a278ee285c99f19ca33722a11145c4ee..4ac19e340920535a246b76e57bdfc4ac5ddf84e1 100644
--- a/third_party/WebKit/LayoutTests/media/track/track-cue-rendering-wider-than-controls.html
+++ b/third_party/WebKit/LayoutTests/media/track/track-cue-rendering-wider-than-controls.html
@@ -30,7 +30,7 @@ async_test(function(t) {
var controlsContainer = mediaControlsButton(video, "panel");
assert_true(parseFloat(getComputedStyle(controlsContainer).width) <= 800);
- var cueRoot = textTrackDisplayElement(video);
+ var cueRoot = textTrackContainerElement(video);
assert_true(parseFloat(getComputedStyle(cueRoot).width) > 800);
});

Powered by Google App Engine
This is Rietveld 408576698