blob: bbdc8c2c3afbe714d2a3485d0810887c3d725ced [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>audio.currentSrc - existence test</title>
<script src="../../w3cwrapper.js"></script>
</head>
<body>
<p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-media-currentsrc">spec reference</a></p>
<audio id="a">
</audio>
<div id="log"></div>
<script>
test(function() {
assert_true(
"currentSrc" in document.getElementById("a"),
"audioElement.currentSrc property exists");
});
</script>
</body>
</html>