Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editorial: export history handling behavior #10308

Merged
merged 4 commits into from
May 9, 2024
Merged
Changes from 3 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
48 changes: 24 additions & 24 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -98514,20 +98514,20 @@ location.href = '#foo';</code></pre>
<p>To <dfn export>navigate</dfn> a <span>navigable</span> <var>navigable</var> to a
<span>URL</span> <var>url</var> using a <code>Document</code> <var
id="source-browsing-context">sourceDocument</var>, with an optional <span>POST resource</span>,
string, or null <dfn data-x="navigation-resource"><var>documentResource</var></dfn> (default
null), an optional <span data-x="concept-response">response</span>-or-null <dfn
string, or null <dfn for="navigate" data-x="navigation-resource"
export><var>documentResource</var></dfn> (default null), an optional <span for="navigate"
yoshisatoyanagisawa marked this conversation as resolved.
Show resolved Hide resolved
data-x="concept-response" export>response</span>-or-null <dfn
data-x="navigation-response"><var>response</var></dfn> (default null), an optional boolean <dfn
id="exceptions-enabled" export><var>exceptionsEnabled</var></dfn> (default false), an optional
<code>NavigationHistoryBehavior</code> <dfn
data-x="navigation-hh"><var>historyHandling</var></dfn> (default "<code
for="navigate" id="exceptions-enabled" export><var>exceptionsEnabled</var></dfn> (default false),
an optional <code>NavigationHistoryBehavior</code> <dfn for="navigate" data-x="navigation-hh"
export><var>historyHandling</var></dfn> (default "<code
data-x="NavigationHistoryBehavior-auto">auto</code>"), an optional <span>serialized
state</span>-or-null <dfn
data-x="navigation-navigation-api-state"><var>navigationAPIState</var></dfn> (default null), an
optional <span>entry list</span> or null <dfn
data-x="navigation-form-data-entry-list"><var>formDataEntryList</var></dfn> (default null), an
optional <span>referrer policy</span> <dfn
data-x="navigation-referrer-policy"><var>referrerPolicy</var></dfn> (default the empty string),
and an optional <span>user navigation involvement</span> <dfn
state</span>-or-null <dfn for="navigate" data-x="navigation-navigation-api-state"
export><var>navigationAPIState</var></dfn> (default null), an optional <span>entry list</span> or
null <dfn for="navigate" data-x="navigation-form-data-entry-list"
export><var>formDataEntryList</var></dfn> (default null), an optional <span>referrer
policy</span> <dfn data-x="navigation-referrer-policy"><var>referrerPolicy</var></dfn> (default
the empty string), and an optional <span>user navigation involvement</span> <dfn
data-x="navigation-user-involvement"><var>userInvolvement</var></dfn> (default "<code
data-x="uni-none">none</code>"):</p>

Expand Down Expand Up @@ -110727,18 +110727,18 @@ import "https://example.com/foo/../module2.mjs";</code></pre>
data-x="struct item">items</span>:</p>

<ul>
<li><p>a <dfn data-x="event handler value">value</dfn>, which is either null<span
w-nodev>,</span><span w-dev> or</span> a callback object<span w-nodev>, or an <span>internal raw
uncompiled handler</span></span>. The <code>EventHandler</code> callback function type describes
how this is exposed to scripts. <span w-nodev>Initially, an <span data-x="event handlers">event
handler</span>'s <span data-x="event handler value">value</span> must be set to
null.</span></p></li>

<li><p>a <dfn export for="event handler" data-x="event handler listener">listener</dfn>, which is
either null or an <span>event listener</span><span w-nodev> responsible for running <span>the
event handler processing algorithm</span></span>. <span w-nodev>Initially, an <span data-x="event
handlers">event handler</span>'s <span data-x="event handler listener">listener</span> must be
set to null.</span></p></li>
<li><p>a <dfn export for="event handler" data-x="event handler value">value</dfn>, which is
either null<span w-nodev>,</span><span w-dev> or</span> a callback object<span w-nodev>, or an
<span>internal raw uncompiled handler</span></span>. The <code>EventHandler</code> callback
function type describes how this is exposed to scripts. <span w-nodev>Initially, an <span
data-x="event handlers">event handler</span>'s <span data-x="event handler value">value</span>
must be set to null.</span></p></li>

<li><p>a <dfn export for="event handler" data-x="event handler listener">listener</dfn>, which
is either null or an <span>event listener</span><span w-nodev> responsible for running <span>the
event handler processing algorithm</span></span>. <span w-nodev>Initially, an <span
data-x="event handlers">event handler</span>'s <span data-x="event handler
listener">listener</span> must be set to null.</span></p></li>
</ul>

</div>
Expand Down
Loading