Index: chrome/test/data/extensions/platform_apps/app_icon/test.js |
diff --git a/chrome/test/data/extensions/platform_apps/app_icon/test.js b/chrome/test/data/extensions/platform_apps/app_icon/test.js |
index afb3eb88534d73078af11a162ec4e45fcc7618cd..3b3887a44de97bd77798c27b9a0e74fd15b31709 100644 |
--- a/chrome/test/data/extensions/platform_apps/app_icon/test.js |
+++ b/chrome/test/data/extensions/platform_apps/app_icon/test.js |
@@ -15,7 +15,16 @@ chrome.app.runtime.onLaunched.addListener(function() { |
chrome.app.window.create( |
'main.html', { type: "shell" }, |
function (win) { |
- chrome.test.sendMessage("Completed"); |
+ // Create the shell window which is shown in shelf; it should use |
+ // another custom app icon. |
+ chrome.app.window.create( |
+ 'main.html', { id: "win_with_icon", |
+ type: "shell", |
+ icon: "icon48.png", |
+ showInShelf: true }, |
+ function (win) { |
+ chrome.test.sendMessage("Completed"); |
+ }); |
}); |
}); |
}); |