blob: 3cfa3001ad6c42df49f1464ef41a3eedd95b002a [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>audio.preload - existence 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_true(
"preload" in document.getElementById("audio"),
"audioElement.preload property exists");
});
</script>
</body>
</html>