| 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>
|
|
|