Roll src/tools/swarming_client/ to 77f720b047fe45f42223e1117b18a8a0a2e38052.
[chromium-blink-merge.git] / android_webview / test / shell / assets / full_screen_video.js
bloba619cf13bd3d8983d8e215f216ddb73916e92df0
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 function goFullscreen(id) {
6 var element = document.getElementById(id);
7 if (element.webkitRequestFullScreen) {
8 element.webkitRequestFullScreen();
12 function playVideo() {
13 document.getElementById('video').play();
16 addEventListener('DOMContentLoaded', function() {
17 document.addEventListener('webkitfullscreenerror', function() {
18 javaFullScreenErrorObserver.notifyJava();
19 }, false);
20 }, false);