Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / W3C / video / currentSrc / currentSrc_property_exists.html
blobd25794047daf1986283eb5b1437414df214d58ea
1 <!doctype html>
2 <html>
3 <head>
4 <title>video.currentSrc - 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-currentsrc">spec reference</a></p>
9 <video id="v">
10 </video>
11 <div id="log"></div>
12 <script>
13 test(function() {
14 assert_true(
15 "currentSrc" in document.getElementById("v"),
16 "videoElement.currentSrc property exists");
17 });
18 </script>
19 </body>
20 </html>