blob: 493318728a2b608b55b0c1050a7316a4bc816330 [file] [log] [blame]
graouts@webkit.org0d180e72017-01-20 12:17:50 +00001<!-- webkit-test-runner [ enableModernMediaControls=false ] -->
adele@apple.comddab0f72007-12-06 20:02:21 +00002<html>
3 <head>
mihaip@chromium.org9d9ccc12011-02-24 23:10:46 +00004 <script src=media-file.js></script>
antti@apple.coma490c5c2008-01-25 21:38:28 +00005 <script>
adele@apple.comddab0f72007-12-06 20:02:21 +00006 function toggleDisplay()
7 {
8 var video = document.getElementById('vid');
philn@webkit.orgb8b2f8f2011-02-16 11:13:24 +00009 if (video.style.display == "none") {
adele@apple.comddab0f72007-12-06 20:02:21 +000010 video.style.display = "inline-block";
commit-queue@webkit.orga2d76102011-02-23 08:27:39 +000011 video.addEventListener("seeked", done);
12 video.currentTime = 0; // so the snapshot always has the same frame
philn@webkit.orgb8b2f8f2011-02-16 11:13:24 +000013 } else
adele@apple.comddab0f72007-12-06 20:02:21 +000014 video.style.display = "none";
adele@apple.comddab0f72007-12-06 20:02:21 +000015 }
16 function test()
17 {
rniwa@webkit.org08372332012-06-15 07:33:22 +000018 if (window.testRunner)
19 testRunner.waitUntilDone();
eric@webkit.org5e00a662009-09-17 22:48:32 +000020 setSrcById('vid', findMediaFile('video', 'content/test'));
philn@webkit.org86a3c922011-02-16 16:37:24 +000021 var video = document.getElementById('vid');
commit-queue@webkit.orga2d76102011-02-23 08:27:39 +000022 video.addEventListener("canplaythrough", test2);
philn@webkit.org86a3c922011-02-16 16:37:24 +000023 video.load();
adele@apple.comddab0f72007-12-06 20:02:21 +000024 }
25 function test2()
26 {
27 toggleDisplay();
28 toggleDisplay();
adele@apple.comddab0f72007-12-06 20:02:21 +000029 }
commit-queue@webkit.orga2d76102011-02-23 08:27:39 +000030 function done()
31 {
rniwa@webkit.org08372332012-06-15 07:33:22 +000032 if (window.testRunner)
33 testRunner.notifyDone();
commit-queue@webkit.orga2d76102011-02-23 08:27:39 +000034 }
adele@apple.comddab0f72007-12-06 20:02:21 +000035 </script>
36 </head>
37 <body onload="test()">
38 This tests that toggling the display property won't make the controls disappear.<br>
eric@webkit.org5e00a662009-09-17 22:48:32 +000039 <video id="vid" controls></video>
adele@apple.comddab0f72007-12-06 20:02:21 +000040 </body>
41</html>