| Index: chrome/test/data/extensions/platform_apps/window_api/test.js
|
| diff --git a/chrome/test/data/extensions/platform_apps/window_api/test.js b/chrome/test/data/extensions/platform_apps/window_api/test.js
|
| index 2d2f96c0ef21f20a46e960ebfa88067323ba4cc5..990ec926ff7eb255e7c34aa3840bf91cbddeda9d 100644
|
| --- a/chrome/test/data/extensions/platform_apps/window_api/test.js
|
| +++ b/chrome/test/data/extensions/platform_apps/window_api/test.js
|
| @@ -254,6 +254,19 @@ function testCreate() {
|
| win2.contentWindow.close();
|
| }));
|
| }));
|
| + },
|
| +
|
| + function hiddenAndNormal() {
|
| + chrome.app.window.create('test.html',
|
| + {hidden: true},
|
| + callbackPass(function(win1) {
|
| + chrome.app.window.create('test.html',
|
| + {hidden: false},
|
| + callbackPass(function(win2) {
|
| + win1.contentWindow.close();
|
| + win2.contentWindow.close();
|
| + }));
|
| + }));
|
| }
|
| ]);
|
| }
|
|
|