Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Fix Chrome's quota numbers. #3896

Merged
merged 1 commit into from
Sep 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix Chrome's quota numbers.
  • Loading branch information
pwnall committed Sep 16, 2020
commit e3c698f9e6d0fe8a982e7f2bcf818b68cb03bacd
9 changes: 5 additions & 4 deletions src/site/content/en/blog/storage-for-the-web/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,13 @@ hundreds of gigabytes or more. Browser implementations vary, but the amount
of storage available is usually based on the amount of storage available on the
device.

* Chrome allows the browser to use up to 60% of total disk space. You can use the
[StorageManager API](#check) to determine the maximum quota available. Other
Chromium-based browsers may allow the browser to use more storage.
* Chrome allows the browser to use up to 80% of total disk space. An origin can
use up to 60% of the total disk space. You can use the [StorageManager
API](#check) to determine the maximum quota available. Other Chromium-based
browsers may allow the browser to use more storage.
* Internet Explorer 10 and later can store up to 250MB and will prompt the
user when more than 10MB has been used.
* Firefox allows the browser to use up to 50% of free disk space. An
* Firefox allows the browser to use up to 50% of free disk space. An
[eTLD+1](https://godoc.org/golang.org/x/net/publicsuffix)
group (e.g., `example.com`, `www.example.com` and `foo.bar.example.com`)
[may use up to 2GB][ff-usage-limits]. You can use the
Expand Down