blob: 873381d3fa502e8496017deb56e3bdc81efc22b8 [file] [log] [blame]
<html>
<head>
<style>
video { background-color: yellow; width: 320px; height: 240px;}
</style>
</head>
<body>
<video controls ></video>
<p>Test HTMLMediaElement <em>canPlayType()</em> method.</p>
<script src=video-test.js></script>
<script>
video = mediaElement = document.getElementsByTagName('video')[0];
testExpected("video.canPlayType()", "");
testExpected("video.canPlayType('video/')", "");
testExpected("video.canPlayType('video/blahblah')", "");
testExpected("video.canPlayType('video/mpeg; Codecs=&quot;avc1.4D400C&quot;')", "probably");
testExpected("video.canPlayType(' Video/MP4 ; CODECS=&quot;mp4v.20.8, mp4a.40.2&quot;')", "probably");
testExpected("video.canPlayType('audio/mpeg')", "maybe");
testExpected("video.canPlayType('audio/Wav')", "maybe");
endTest();
</script>
</body>
</html>