Index: LayoutTests/media/controls-mute-with-controller-expected.html |
diff --git a/LayoutTests/media/controls-mute-with-controller-expected.html b/LayoutTests/media/controls-mute-with-controller-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..eed18d493faafa91327a516237b5e5035d2903c7 |
--- /dev/null |
+++ b/LayoutTests/media/controls-mute-with-controller-expected.html |
@@ -0,0 +1,22 @@ |
+<!doctype html> |
+<html> |
+ <head> |
+ <title>media controls mute button with MediaController</title> |
+ <script src="media-file.js"></script> |
+ </head> |
+ <body> |
+ <video controls muted></video> |
+ <script> |
+ if (window.testRunner) |
+ testRunner.waitUntilDone(); |
+ |
+ var video = document.querySelector("video"); |
+ video.src = findMediaFile("video", "content/test"); |
+ video.addEventListener("loadeddata", function() |
+ { |
+ if (window.testRunner) |
+ testRunner.notifyDone(); |
+ }); |
+ </script> |
+ </body> |
+</html> |