summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/media-elements/video_muted_overriding_volume-manual.html
blob: 6d770666cc485871399ffb1068318181dc4064e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
  <head>
    <title>Video Test: video_muted_overriding_volume</title>
    <link rel="author" title="Intel" href="http://www.intel.com" />
    <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-media-muted" />
    <meta name="flags" content="" />
    <meta name="assert" content="Check if the muted attribute is present in the video element with volume is set to loudest that expecting the user hears no sound" />
    <script src="/common/media.js"></script>
  </head>
  <body>
    <p>Test passes if the video is playing without sound output and the text 'The user agent doesn't support media element.' does not appear anywhere on this page</p>
    <video id="m" controls muted>The user agent doesn't support media element.</video>
    <script type="text/javascript">
        var media = document.getElementById("m");
        media.src = getVideoURI("/media/movie_5") + "?" + new Date() + Math.random();
        media.volume = 1.0;
        media.play();
    </script>
  </body>
</html>