Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / media / media-fullscreen-inline.html
blob571ec815dc3a2a5a569eb542fddf63ba6b848e6c
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
4 <title>inline &lt;video&gt; element fullscreen test</title>
6 <script src=video-test.js></script>
7 <script src=media-fullscreen.js></script>
9 <script>
10 var movieInfo =
12 current : -1,
13 movies :
16 url : "content/test.mp4",
17 description : "even though it has video",
18 supportsFS : false,
19 inline : true,
20 type : 'audio',
23 url : "content/silence.mpg",
24 description : "because it is an audio-only &lt;video&gt element",
25 supportsFS : false,
26 inline : true,
27 type : 'video',
30 url : "content/test.mp4",
31 description : "because it is a &lt;video&gt element with video media",
32 supportsFS : true,
33 inline : true,
34 type : 'video',
38 </script>
40 </head>
42 <body onload="openNextMovie()">
44 <p>Test media element fullscreen API when an element is in the DOM.</p>
46 <div id='parent'>
47 </div>
48 <br>
49 <input type="button" id="button" value="Enter Fullscreen" onmouseup="buttonClickHandler()">
51 </body>
52 </html>