Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / platform_apps / pointer_lock / has_permission / window.js
1 // Copyright 2013 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.
4
5 window.onload = function () {
6   chrome.test.sendMessage('Launched', function() {
7     chrome.test.runTests([
8       function requestPointerLock() {
9         document.onpointerlockchange = chrome.test.succeed;
10         document.onpointerlockerror = chrome.test.fail;
11         document.body.requestPointerLock();
12       },
13     ]);
14   });
15 }