1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12

content / test / data / gpu / functional_video.html [blame]

<html>
<body>
<video src="../media/bear.ogv" id="video"></video>
<script>
  elem = document.getElementById("video");
  elem.addEventListener("loadedmetadata", function() {
    domAutomationController.send("SUCCESS");
  });
  elem.load();
</script>
</body>
</html>