Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion source
Original file line number Diff line number Diff line change
Expand Up @@ -103068,7 +103068,26 @@ interface <dfn interface>NotRestoredReasons</dfn> {

<dt>"<dfn data-x="blocking-sharedworker" export><code>sharedworker</code></dfn>"</dt>
<dd>This <code>Document</code> was in the <span>owner set</span> of a
<code>SharedWorkerGlobalScope</code>.</dd>
<code>SharedWorkerGlobalScope</code>.

<p class="note">User agents that support the <a href="#note-bfcache">back/forward cache</a> for
documents using shared workers can use more specific reasons such as <code
data-x="blocking-sharedworker-message">"sharedworker-message"</code> or <code
data-x="blocking-sharedworker-with-no-active-client">"sharedworker-with-no-active-client"</code>
instead of this general reason, since the usage of shared workers itself is supported outside of
the cases described in those reasons.</p></dd>

<dt>"<dfn data-x="blocking-sharedworker-message"
export><code>sharedworker-message</code></dfn>"</dt>
<dd>While the page was stored in <a href="#note-bfcache">back/forward cache</a>, a message was
received from a <code>SharedWorkerGlobalScope</code> whose <span>owner set</span> <span
data-x="list contains">contains</span> this <code>Document</code>.</dd>

<dt>"<dfn data-x="blocking-sharedworker-with-no-active-client"
export><code>sharedworker-with-no-active-client</code></dfn>"</dt>
<dd>This <code>Document</code> was in the <span>owner set</span> of a
<code>SharedWorkerGlobalScope</code> that is not <span data-x="active needed worker">actively
needed</span>.</dd>

<dt>"<dfn data-x="blocking-smartcard" export><code>smartcardconnection</code></dfn>"</dt>
<dd>The <code>Document</code> had an active <code>SmartCardConnection</code> while <span
Expand Down