blob: 8241a600973b5e64522b10be754f2443db3fd9ea [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>video.canPlayType() - application/octet-stream must always return the empty string</title>
<script src="../../w3cwrapper.js"></script>
</head>
<body>
<p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-navigator-canplaytype">spec reference</a></p>
<video id="v">
</video>
<div id="log"></div>
<script>
test(function() {
assert_true(
document.getElementById("v").canPlayType("application/octet-stream") == "",
"videoElement.canPlayType('application/octet-stream') should return the empty string");
});
</script>
</body>
</html>