Skip to content

Commit

Permalink
lifecycle constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Jan 17, 2025
1 parent 9444817 commit a644037
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -5418,7 +5418,21 @@ empty map. It's used to track the network events for which a
<code>network.beforeRequestSent</code> event has already been sent.

A [=remote end=] has a <dfn>response map</dfn> that maps a [=request id=]
to [=/response=]. Implementations may remove data from [=response map=] map at any time.
to [=/response=]. Responses must be removed on the following conditions:

- when a browsing context group switch or destruction happens, responses
associated with the previous browsing context group are removed.

- when a navigation commits a new document, resources associated with the
previous document are removed.

- when a worker scope is removed the responses provided by the worker are
removed.

- when a user-configured (command to be defined) per navigable size limit is
exceeded, the oldest response body is evicted until there is space for
the new body. Evicted resources should result in a distinct error
code.

A [=remote end=] has a <dfn>default cache behavior</dfn> which is a string. It is
initially "<code>default</code>".
Expand Down

0 comments on commit a644037

Please sign in to comment.