haikuwebkit/LayoutTests/media/W3C/video/canPlayType/canPlayType_codecs_order_2....

23 lines
585 B
HTML

<!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/ogg; codecs="theora, vorbis"'),
v.canPlayType('video/ogg; codecs="vorbis, theora"'),
"order of codecs parameters should have no effect");
});
</script>
</body>
</html>