Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / W3C / video / preload / preload_property_exists.html
bloba50bb4172dca71d21c702f25e17d45e63361f2a9
1 <!doctype html>
2 <html>
3 <head>
4 <title>video.preload - existence test</title>
5 <script src="../../w3cwrapper.js"></script>
6 </head>
7 <body>
8 <p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-media-preload">spec reference</a></p>
9 <video id="video">
10 </video>
11 <div id="log"></div>
12 <script>
13 test(function() {
14 assert_true(
15 "preload" in document.getElementById("video"),
16 "videoElement.preload property exists");
17 });
18 </script>
19 </body>
20 </html>