Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / W3C / video / preload / preload_reflects_none.html
blobbc7ea392470381746098e33c29384b28c7b0ec20
1 <!doctype html>
2 <html>
3 <head>
4 <title>video.preload - reflection 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" preload="none">
10 </video>
11 <div id="log"></div>
12 <script>
13 test(function() {
14 assert_equals(
15 document.getElementById("video").preload,
16 "none",
17 "videoElement.preload reflects 'none' value");
18 });
19 </script>
20 </body>
21 </html>