blob: 381948a558c08c3ccdb1f1a39f58febc97c196f0 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>video.src - empty if no source</title>
<script src="../../w3cwrapper.js"></script>
</head>
<body>
<p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-media-src">spec reference</a></p>
<video id="v">
</video>
<div id="log"></div>
<script>
test(function() {
assert_equals(
document.getElementById("v").src,
"",
"videoElement.src should be empty if there is no source");
});
</script>
</body>
</html>