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