Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / request_quota_background / background.js
blob2f14925f736355d3738bbd0c462ff54b9a127688
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.
5 webkitStorageInfo.requestQuota(PERSISTENT, 1, pass, fail);
7 function pass() {
8 console.log("PASS");
9 if (window.chrome && chrome.test && chrome.test.succeed)
10 chrome.test.succeed();
13 function fail() {
14 console.log("FAIL");
15 if (window.chrome && chrome.test && chrome.test.fail)
16 chrome.test.fail();