| Index: chrome/test/data/extensions/platform_apps/geometry/page3.js
|
| diff --git a/chrome/test/data/extensions/platform_apps/geometry/page3.js b/chrome/test/data/extensions/platform_apps/geometry/page3.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dc08e4c7cbd36a5d53f4c8bc4cfb72e37bf7e0fd
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/platform_apps/geometry/page3.js
|
| @@ -0,0 +1,13 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +function checkGeometry() {
|
| + chrome.test.assertEq(201, window.screenX);
|
| + chrome.test.assertEq(220, window.screenY);
|
| + chrome.test.assertEq(203, window.innerWidth);
|
| + chrome.test.assertEq(187, window.innerHeight);
|
| + chrome.test.sendMessage('Done3');
|
| +}
|
| +
|
| +window.setTimeout(checkGeometry, 500);
|
|
|