Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / before-load-member-access.html
blob58866a5f2f5eaf74736ff3f225cb3409490df17e
1 <html>
2 <head>
3 <title>Test that accessing member of a non loaded video works.</title>
4 <script src=video-test.js></script>
5 <script>
6 function test()
8 findMediaElement();
10 run("video.played");
11 run("video.buffered");
12 run("video.seekable");
13 run("video.volume");
14 consoleWrite("SUCCESS");
15 endTest();
17 </script>
18 </head>
20 <body onload="test()">
22 <video controls></video>
23 <p>Test that accessing member of a non loaded video works.</p>
25 </body>
26 </html>