blob: b6322ddaeb51f58b29b38a1a37048c294e81acc0 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>video.preload - reflection test</title>
<script src="../../w3cwrapper.js"></script>
</head>
<body>
<p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-media-preload">spec reference</a></p>
<video id="video" preload="auto">
</video>
<div id="log"></div>
<script>
test(function() {
assert_equals(
document.getElementById("video").preload,
"auto",
"videoElement.preload reflects 'auto' value");
});
</script>
</body>
</html>