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

Unified Diff: third_party/WebKit/LayoutTests/media/controls-cast-overlay-slow-fade.html

Issue 2016323003: Convert controls-cast-* tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/controls-cast-overlay-slow-fade.html
diff --git a/third_party/WebKit/LayoutTests/media/controls-cast-overlay-slow-fade.html b/third_party/WebKit/LayoutTests/media/controls-cast-overlay-slow-fade.html
index 096f3db796365b3f5b9bc3cb65766d3ff77edc53..ab94e2c419932af53d13c942aea1f1f6b20c641c 100644
--- a/third_party/WebKit/LayoutTests/media/controls-cast-overlay-slow-fade.html
+++ b/third_party/WebKit/LayoutTests/media/controls-cast-overlay-slow-fade.html
@@ -1,61 +1,54 @@
<!doctype html>
-<html>
- <head>
- <title>Test that the overlay cast button fades at the right time (neither too soon nor too late).</title>
- <script src="../resources/testharness.js"></script>
- <script src="../resources/testharnessreport.js"></script>
- <script src="media-file.js"></script>
- <script src="media-controls.js"></script>
- <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
- (Please avoid writing new tests using video-test.js) -->
- <script src="video-test.js"></script>
- </head>
- <body>
- <video loop></video>
- <script>
- var controls;
- var test;
- // The cast button should be visible for at least the controlsMouseMovementTimeout, and no more
- // than that plus the fadeout time. Allow 500ms margin at either side.
- var hideTimeoutLowerBound = controlsMouseMovementTimeoutMs - 500;
- var hideTimeoutUpperBound = controlsMouseMovementTimeoutMs + controlsFadeOutDurationMs + 500;
- function overlayCastButton(element)
+<title>Test that the overlay cast button fades at the right time (neither too soon nor too late).</title>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="media-file.js"></script>
+<script src="media-controls.js"></script>
+<video loop></video>
+<script>
+async_test(function(t)
+{
+ // The cast button should be visible for at least the controlsMouseMovementTimeout,
+ // and no more than that plus the fadeout time. Allow 500ms margin at either side.
+ var hideTimeoutLowerBound = controlsMouseMovementTimeoutMs - 500;
+ var hideTimeoutUpperBound = controlsMouseMovementTimeoutMs + controlsFadeOutDurationMs + 500;
+
+ var video = document.querySelector("video");
+ video.src = findMediaFile("video", "content/test");
+
+ video.onplaying = t.step_func(function()
+ {
+ setTimeout(t.step_func(function()
{
- var controlID = "-internal-media-controls-overlay-cast-button";
- var button = mediaControlsElement(window.internals.shadowRoot(element).firstChild, controlID);
- return button;
- }
- async_test(function(t)
+ // Cast button shoud be visible
fs 2016/05/27 14:30:06 Nit: Typo "should" (not new, but since we're essen
Srirama 2016/05/27 16:49:57 Done.
+ assert_true(isCastButtonVisible(), "button should exist");
+ }), hideTimeoutLowerBound);
+
+ setTimeout(t.step_func_done(function()
+ {
+ // Cast button shoud be gone
fs 2016/05/27 14:30:06 Ditto.
Srirama 2016/05/27 16:49:57 Done.
+ assert_false(isCastButtonVisible(), "button should not exist");
+ }), hideTimeoutUpperBound);
+
+ function isCastButtonVisible()
{
- findMediaElement();
- video.src = findMediaFile("video", "content/test");
- video.addEventListener("playing", t.step_func(function()
- {
- setTimeout(t.step_func(function()
- {
- button = overlayCastButton(video);
- // Now should have cast button
- style = window.getComputedStyle(button);
- visibility = style.getPropertyValue("visibility");
- display = style.getPropertyValue("display");
- assert_true(((display != "none")) && (visibility == "visible"),
- "button should exist, display = \"" + display + '\"');
- }), hideTimeoutLowerBound);
- setTimeout(t.step_func(function()
- {
- button = overlayCastButton(video);
- // Cast button shoud be gone
- style = window.getComputedStyle(button);
- visibility = style.getPropertyValue("visibility");
- display = style.getPropertyValue("display");
- assert_false(((display != "none")) && (visibility == "visible"),
- "button should not exist, display = \"" + display + '\"');
- t.done();
- }), hideTimeoutUpperBound);
- }));
- internals.mediaPlayerRemoteRouteAvailabilityChanged(video, true);
- video.play();
- });
- </script>
- </body>
-</html>
+ var button = overlayCastButton(video);
+ var style = getComputedStyle(button);
+ var visibility = style.getPropertyValue("visibility");
+ var display = style.getPropertyValue("display");
+ return (display != "none" && visibility == "visible");
+
fs 2016/05/27 14:30:06 Stray blank line.
Srirama 2016/05/27 16:49:57 Done.
+ }
+ });
+
+ internals.mediaPlayerRemoteRouteAvailabilityChanged(video, true);
+ video.play();
+
+ function overlayCastButton(element)
+ {
+ var controlID = "-internal-media-controls-overlay-cast-button";
+ var button = mediaControlsElement(window.internals.shadowRoot(element).firstChild, controlID);
+ return button;
+ }
+});
+</script>

Powered by Google App Engine
This is Rietveld 408576698