<!doctype html> | |
<html> | |
<head> | |
<title>video.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> | |
<video id="v"> | |
</video> | |
<div id="log"></div> | |
<script> | |
test(function() { | |
assert_true( | |
"currentSrc" in document.getElementById("v"), | |
"videoElement.currentSrc property exists"); | |
}); | |
</script> | |
</body> | |
</html> |