blob: d7547410e485d1fe28f86b82a66ef715f4ede6e0 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>audio.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>
<audio id="audio">
</audio>
<div id="log"></div>
<script>
test(function() {
assert_equals(
document.getElementById("audio").preload,
"metadata",
"audioElement.preload absence reflects 'metadata' value");
});
</script>
</body>
</html>