blob: 377ef57ed8b9d4c19b5ff98f13ed597f82769458 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>audio.canPlayType() - existence of method</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>
<audio id="a">
</audio>
<div id="log"></div>
<script>
test(function() {
assert_true(
!!document.getElementById("a").canPlayType,
"audioElement.canPlayType method exists");
});
</script>
</body>
</html>