| Index: chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js
|
| diff --git a/chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js b/chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js
|
| index 03141bf77f0c74cc25a8c27e99b1e0a06468b7c1..ca7186d939b0a50e312dcdcac42bc4a7ed209d82 100644
|
| --- a/chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js
|
| +++ b/chrome/test/data/extensions/api_test/file_manager_browsertest/file_manager/background.js
|
| @@ -100,8 +100,8 @@ function waitForWindowGeometry(windowId, width, height) {
|
| return callRemoteTestUtil('getWindows', null, []).then(function(windows) {
|
| if (!windows[windowId])
|
| return pending('Window %s is not found.', windowId);
|
| - if (windows[windowId].innerWidth !== width ||
|
| - windows[windowId].innerHeight !== height) {
|
| + if (windows[windowId].outerWidth !== width ||
|
| + windows[windowId].outerHeight !== height) {
|
| return pending('Expected window size is %j, but it is %j',
|
| {width: width, height: height},
|
| windows[windowId]);
|
|
|