Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <title>Quota</title> | |
| 3 <script> | |
| 4 successCount = 0; | |
| 5 function successCallback(grantedBytes) { | |
| 6 successCount++; | |
| 7 window.document.title = 'Count: ' + successCount; | |
| 8 } | |
| 9 function errorCallback(error){ | |
| 10 window.document.title = 'deny'; | |
| 11 console.log('navigator.webkitPersistentStorage.requestQuota error: ', error) ; | |
| 12 } | |
| 13 function initiate_requestQuota(requestedBytes) { | |
| 14 navigator.webkitPersistentStorage.requestQuota( | |
| 15 requestedBytes, successCallback, errorCallback); | |
| 16 } | |
| 17 </script> | |
| OLD | NEW |