| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012 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 function checkGeometry() { |
| 6 chrome.test.assertEq(201, window.screenX); |
| 7 chrome.test.assertEq(220, window.screenY); |
| 8 chrome.test.assertEq(203, window.innerWidth); |
| 9 chrome.test.assertEq(187, window.innerHeight); |
| 10 chrome.test.sendMessage('Done3'); |
| 11 } |
| 12 |
| 13 window.setTimeout(checkGeometry, 500); |
| OLD | NEW |