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

Unified Diff: LayoutTests/media/video-volume-slider.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/video-volume-slider.html
diff --git a/LayoutTests/media/video-volume-slider.html b/LayoutTests/media/video-volume-slider.html
deleted file mode 100644
index b3ba53d659ef748301472b9e4315b08044282497..0000000000000000000000000000000000000000
--- a/LayoutTests/media/video-volume-slider.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<html>
-<head>
- <title>Test rendering of volume slider of video tag</title>
- <script src=media-file.js></script>
- <script src=media-controls.js></script>
- <script>
- var video;
-
- function init()
- {
- if (window.testRunner)
- testRunner.waitUntilDone();
-
- video = document.getElementsByTagName("video")[0];
- video.src = findMediaFile("video", "content/test");
- }
-
- function test()
- {
- video.volume = 0.7;
-
- if (window.eventSender) {
- var muteCoords;
- try {
- muteCoords = mediaControlsButtonCoordinates(video, "mute-button");
- } catch (exception) {
- testRunner.notifyDone();
- return;
- }
- eventSender.mouseMoveTo(muteCoords[0], muteCoords[1]);
- }
-
- video.addEventListener("volumechange", function() {
- if (window.testRunner)
- testRunner.notifyDone();
- });
- }
- </script>
-</head>
-<body onload="init()">
- Tests if the volume slider is rendererd properly. This test assumes the<br>
- volume slider is implmented and mouse over the right bottom corner of<br>
- video element will show the volume slider.<br>
- <video oncanplaythrough="test()" controls></video>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698