blob: 8f34c57d78a9e6a87ee0b4f80ff8ef3a3bb4ef49 [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" preload="">
</audio>
<div id="log"></div>
<script>
test(function() {
assert_equals(
document.getElementById("audio").preload,
"auto",
"audioElement.preload reflects empty value as 'auto'");
});
</script>
</body>
</html>