Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / webstore_private / cancelled.html
blob643b93fa3130d5d1414df19f3fac8f93db4489b3
1 <script src="common.js"></script>
2 <script>
3 // This tests the user cancelling an install started by
4 // beginInstallWithManifest3.
6 var manifest = getManifest();
7 getIconData(function(icon) {
9 // Begin installing.
10 chrome.webstorePrivate.beginInstallWithManifest3(
11 {'id':extensionId, 'iconData': icon, 'manifest': manifest},
12 function(result) {
13 assertEq(result, "user_cancelled");
14 succeed();
15 });
16 });
17 </script>