blob: 257bd46289d7b62869bd2b1f31206d81b98d97c2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Audio Test: audio_volume_silent</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-media-volume" />
<meta name="flags" content="" />
<meta name="assert" content="Check if the volume attribute is set to 0.0 as silent in the audio element that expecting the user hears no sound" />
<script src="/common/media.js"></script>
</head>
<body>
<p>Test passes if the audio is playing without sound heard and the text 'The user agent doesn't support media element.' does not appear anywhere on this page</p>
<audio id="m" controls volume=0.0>The user agent doesn't support media element.</audio>
<script type="text/javascript">
var media = document.getElementById("m");
media.src = getAudioURI("/media/sound_5") + "?" + new Date() + Math.random();
media.volume = 0.0;
media.play();
</script>
</body>
</html>