blob: 0192d8d55c28d16570fc12a111047ce821630997 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>video.canPlayType() - codecs parameter order</title>
<script src="../../w3cwrapper.js"></script>
</head>
<body>
<p><a href="http://dev.w3.org/html5/spec/Overview.html#mime-types">spec reference</a></p>
<video id="v">
</video>
<div id="log"></div>
<script>
test(function() {
var v = document.getElementById("v");
assert_equals(
v.canPlayType('video/webm; codecs="vp8, vorbis"'),
v.canPlayType('video/webm; codecs="vorbis, vp8"'),
"order of codecs parameters should have no effect");
});
</script>
</body>
</html>