diff --git a/storage.bs b/storage.bs index 79497f6..22bb0ab 100644 --- a/storage.bs +++ b/storage.bs @@ -348,7 +348,22 @@ must run these steps:
  • Return promise. - +

    Security and Privacy Considerations

    + +

    Exposing new data

    +Global quota usage is a function of all calls made by an origin to the respective +storage APIs. The number summarizes information that the origin already has +An origin can monitor the change in total quota with every +storage API call to keep a running total. + +

    User identification and tracking

    +An origin that has data stored on the client (non-zero quota usage) can store a +unique identifier for the user. Instead of using this new API, the origin can +simply read a user ID from IndexedDB, or from Cache Storage etc. In other words, +the new API does not make it any easier to identify or track users. + +

    Padding Opaque Responses

    +TODO: Recommend padding for opaque responses.

    Acknowledgments