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

Unified Diff: LayoutTests/media/media-captions-no-controls.html

Issue 291163004: Implement media cast buttons (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Reenable previously crashing tests - now fixed Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/media/media-captions-no-controls.html
diff --git a/LayoutTests/media/media-captions-no-controls.html b/LayoutTests/media/media-captions-no-controls.html
index e72227929e77415a6af12ced586716b32f12203f..770d4fb369578f31b535b035e9467b6e7c9f9160 100644
--- a/LayoutTests/media/media-captions-no-controls.html
+++ b/LayoutTests/media/media-captions-no-controls.html
@@ -13,13 +13,11 @@
consoleWrite("<br>** Initial state: no text tracks, controls should not be visible **");
testExpected("video.textTracks.length", 0);
testExpected("video.controls", false, '==');
- testExpected("internals.shadowRoot(video).firstChild", null);
consoleWrite("<br>** Add a text track, controls should not become visible **");
run("video.addTextTrack('captions')");
testExpected("video.textTracks.length", 1);
testExpected("video.controls", false);
- testExpected("internals.shadowRoot(video).firstChild", null);
consoleWrite("<br>** Enable controls **");
run("video.setAttribute('controls','controls')");
« no previous file with comments | « LayoutTests/media/controls-overlay-cast-button.html ('k') | LayoutTests/media/video-controls-overlay-play-button.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698