summaryrefslogtreecommitdiffstats
path: root/mobile/android/focus-android/app/src/androidTest/assets/mutedVideoPage.html
blob: 9283ff296b286858e9961cb7cdde0304a8946577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html>
  <head>
    <title>Muted_Video_Test_Page</title>
  </head>
  <body>
    <p id="testContent">Page content: muted video player</p>
    <div class="playbackState"></div>
    <div id="video-container" style="text-align: center">
      <button onclick="play()">Play</button>
      <button onclick="pause()">Pause</button>
      <button onclick="fullscreen()">Full Screen</button>
      <br /><br />
      <video id="mutedVideo" width="420" autoplay muted controls loop>
        <source src="resources/clip.mp4" type="video/mp4" />
        Your browser does not support HTML video.
      </video>
    </div>

    <script>
      const mutedVideo = document.getElementById("mutedVideo");

      function play() {
        mutedVideo.play();
      }

      function pause() {
        mutedVideo.pause();
      }

      function fullscreen() {
        mutedVideo.requestFullscreen();
      }

      var showPlayAlert = true;

      mutedVideo.addEventListener("playing", event => {
        <!-- document.querySelector('.playbackState').innerHTML="Media file is playing";-->
        <!-- Need this hack to verify that the video is playing, -->
        <!-- the test cannot currently verify the text displayed on the page-->
        if (showPlayAlert === true) {
          showPlayAlert = false;
          alert("Media file is playing");
        }
      });

      mutedVideo.addEventListener("pause", event => {
        // document.querySelector('.playbackState').innerHTML="Media file is paused";
        alert("Media file is paused");
      });
    </script>
  </body>
</html>