multipart/x-mixed-replace
javascript:
Welcome to the dragon's maw. Navigation, session history, and the traversal through that session history are some of the most complex parts of this standard.
The
PopStateEvent
basic
concept
may
not
seem
so
difficult:
The user is looking at a navigable that is presenting its active document . They navigate it to another URL .
The
browser
fetches
the
given
URL
from
the
network,
using
it
to
populate
a
new
session
history
entry
with
a
newly-
created
Document
.
The browser updates the navigable 's active session history entry to the newly-populated one, and thus updates the active document that it is showing to the user.
At some point later, the user presses the browser back button to go back to the previous session history entry .
The browser looks at the URL stored in that session history entry , and uses it to re-fetch and populate that entry's document .
The browser again updates the navigable 's active session history entry .
You can see some of the intertwined complexity peeking through here, in how traversal can cause a navigation (i.e., a network fetch to a stored URL), and how a navigation necessarily needs to interface with the session history list to ensure that when it finishes the user is looking at the right thing. But the real problems come in with the various edge cases and interacting web platform features:
Nested
navigables
(e.g.,
iframe
s)
can
also
navigate
and
traverse,
but
those
navigations
need
to
be
linearized
into
a
single
session
history
list
since
the
user
only
has
a
single
back/forward
interface
for
the
entire
traversable
navigable
(e.g.,
browser
tab).
Since the user can traverse back more than a single step in the session history (e.g., by holding down their back button), they can end up traversing multiple navigables at the same time when nested navigables are involved. This needs to be synchronized across all of the involved navigables, which might involve multiple event loops or even agent clusters .
During
navigation,
servers
can
respond
with
204
or
205
status
codes
or
with
`
Content-Disposition:
attachment
`
headers,
which
cause
navigation
to
abort
and
the
navigable
to
stay
on
its
original
active
document
.
(This
is
much
worse
if
it
happens
during
a
traversal-initiated
navigation!)
Various
other
HTTP
headers,
such
as
`
Location
`,
`
Refresh
`,
`
X-Frame-Options
`,
and
those
for
Content
Security
Policy,
contribute
to
either
the
fetching
process
,
or
the
Document
-creation
process
,
or
both.
The
`
Cross-Origin-Opener-Policy
`
header
even
contributes
to
the
browsing
context
selection
and
creation
process!
Some navigations (namely fragment navigations and single-page app navigations ) are synchronous, meaning that JavaScript code expects to observe the navigation's results instantly. This then needs to be synchronized with the view of the session history that all other navigables in the tree see, which can be subject to race conditions and necessitate resolving conflicting views of the session history.
The
platform
has
accumulated
various
exciting
navigation-related
features
that
need
special-casing,
such
as
javascript:
URLs,
srcdoc
iframe
s,
and
the
beforeunload
event.
In what follows, we have attempted to guide the reader through these complexities by appropriately cordoning them off into labeled sections and algorithms, and giving appropriate words of introduction where possible. Nevertheless, if you wish to truly understand navigation and session history, the usual advice will be invaluable.
A session history entry is a struct with the following items :
step
,
a
non-negative
integer
or
"
HashChangeEvent
pending
interface
",
initially
"
pending
".
URL , a URL
document state , a document state .
serialized state , which is serialized state or null, initially null.
scroll
restoration
mode
,
a
scroll
restoration
mode
,
initially
"
auto
".
scroll position data , which is scroll position data for the document 's restorable scrollable regions .
persisted user state , which is implementation-defined , initially null
For example, some user agents might want to persist the values of form controls.
User
agents
that
persist
the
value
of
form
controls
are
encouraged
to
also
persist
their
directionality
(the
value
of
the
element's
dir
attribute).
This
prevents
values
from
being
displayed
incorrectly
after
a
history
traversal
when
the
user
had
originally
entered
the
values
with
an
explicit,
non-default
directionality.
To get a session history entry 's document , return its document state 's document .
Serialized state is a serialization (via StructuredSerializeForStorage ) of an object representing a user interface state. We sometimes informally refer to "state objects", which are the objects representing user interface state supplied by the author, or alternately the objects created by deserializing (via StructuredDeserialize ) serialized state.
Pages can add serialized state to the session history. These are then deserialized and returned to the script when the user (or script) goes back in the history, thus enabling authors to use the "navigation" metaphor even in one-page applications.
Serialized
state
is
intended
to
be
used
for
two
main
purposes:
first,
storing
a
preparsed
description
of
the
state
in
the
URL
so
that
in
the
simple
case
an
author
doesn't
have
to
do
the
parsing
(though
one
would
still
need
the
parsing
for
handling
URLs
passed
around
by
users,
so
it's
only
a
minor
optimization).
Second,
so
that
the
author
can
store
state
that
one
wouldn't
store
in
the
URL
because
it
only
applies
to
the
current
Document
instance
and
it
would
have
to
be
reconstructed
if
a
new
Document
were
opened.
An
example
of
the
latter
would
be
something
like
keeping
track
of
the
precise
coordinate
from
which
a
popup
div
was
made
to
animate,
so
that
if
the
user
goes
back,
it
can
be
made
to
animate
to
the
same
location.
Or
alternatively,
it
could
be
used
to
keep
a
pointer
into
a
cache
of
data
that
would
be
fetched
from
the
server
based
on
the
information
in
the
URL
,
so
that
when
going
back
and
forward,
the
information
doesn't
have
to
be
fetched
again.
A scroll restoration mode indicates whether the user agent should restore the persisted scroll position (if any) when traversing to an entry . A scroll restoration mode is one of the following:
auto
"
manual
"
Document
state
holds
state
inside
a
session
history
entry
regarding
how
to
present
and,
if
necessary,
recreate,
a
Document
.
It
has:
A
document
,
a
Document
or
null,
initially
null.
When
a
history
entry
is
active
,
it
has
a
Document
in
its
document
state
.
However,
when
a
Document
is
not
fully
active
,
it's
possible
for
it
to
be
destroyed
to
free
resources.
In
such
cases,
this
document
item
will
be
nulled
out.
The
URL
and
other
data
in
the
session
history
entry
and
document
state
is
then
used
to
bring
a
new
Document
into
being
to
take
the
place
of
the
original,
in
the
case
where
the
user
agent
finds
itself
having
to
traverse
to
the
entry.
If
the
Document
is
not
destroyed
,
then
during
history
traversal
,
it
can
be
reactivated
.
The
cache
in
which
browsers
store
such
Document
s
is
often
called
a
back-forward
cache
,
or
bfcache
(or
perhaps
"blazingly
fast"
cache).
A
history
policy
container
,
a
policy
container
or
"
PageTransitionEvent
client
interface
",
initially
"
client
".
A
request
referrer
,
which
is
"
no-referrer
",
"
client
",
or
a
URL
,
initially
"
client
".
A request referrer policy , which is a referrer policy , initially the default referrer policy .
The request referrer policy is distinct from the history policy container 's referrer policy . The former is used for fetches of this document, whereas the latter controls fetches by this document.
An initiator origin , which is an origin or null, initially null.
An origin , which is an origin or null, initially null.
This
is
the
origin
that
we
set
"
about:
"-schemed
Document
s'
origin
to.
We
store
it
here
because
it
is
also
used
when
restoring
these
Document
s
during
traversal,
since
they
are
reconstructed
locally
without
visiting
the
network.
It
is
also
used
to
compare
the
origin
before
and
after
the
session
history
entry
is
repopulated
.
If
the
origins
change,
the
navigable
target
name
is
cleared.
7.11.11
Loading
Nested
histories
,
a
list
of
nested
histories
,
initially
an
empty
list
.
A resource , a string, POST resource or null, initially null.
A
string
is
treated
as
HTML.
It's
used
to
store
the
source
of
an
iframe
srcdoc
document
.
A reload pending boolean, initially false.
An ever populated boolean, initially false.
A navigable target name string, initially the empty string.
User
agents
may
destroy
the
documents
of
document
states
with
non-null
documents
,
as
long
as
the
Document
is
not
fully
active
.
Apart from that restriction, this standard does not specify when user agents should destroy the document stored in a document state , versus keeping it cached.
A POST resource has:
A request body , a byte sequence or failure.
This is only ever accessed in parallel , so it doesn't need to be stored in memory. However, it must return the same byte sequence each time. If this isn't possible due to resources changing on disk, or if resources can no longer be accessed, then this must be set to failure.
A
request
content-type
,
which
is
`
application/x-www-form-urlencoded
`,
`
multipart/form-data
`,
or
`
text/plain
`.
A nested history has:
An id , a unique internal value .
This is used to associate the nested history with a navigable .
Entries , a list of session history entries .
This will later contain ways to identify a nested navigable across reloads.
Several
contiguous
entries
in
a
session
history
can
share
the
same
document
state
.
This
can
occur
when
the
initial
entry
is
reached
via
normal
navigation
,
and
the
following
entry
is
added
via
history.pushState()
.
Or
it
can
occur
via
navigation
to
a
fragment
.
All entries that share the same document state (and that are therefore merely different states of one particular document) are contiguous by construction.
A
Document
has
a
latest
entry
,
a
session
history
entry
or
null.
This
is
the
entry
that
was
most
recently
represented
by
a
given
Document
.
A
single
Document
can
represent
many
session
history
entries
over
time,
as
many
contiguous
session
history
entries
can
share
the
same
document
state
as
explained
above.
To maintain a single source of truth, all modifications to a traversable navigable 's session history entries need to be synchronized. This is especially important due to how session history is influenced by all of the descendant navigables , and thus by multiple event loops . To accomplish this, we use the session history traversal parallel queue structure.
A session history traversal parallel queue is very similar to a parallel queue . It has an algorithm set , an ordered set .
The items in a session history traversal parallel queue 's algorithm set are either algorithm steps, or synchronous navigation steps , which are a particular brand of algorithm steps involving a target navigable (a navigable ).
To append session history traversal steps to a traversable navigable traversable given algorithm steps steps , append steps to traversable 's session history traversal queue 's algorithm set .
To append session history synchronous navigation steps to a traversable navigable traversable given algorithm steps steps and a navigable targetNavigable , append steps as synchronous navigation steps targeting target navigable targetNavigable to traversable 's session history traversal queue 's algorithm set .
To start a new session history traversal parallel queue :
Let sessionHistoryTraversalQueue be a new session history traversal parallel queue .
Run the following steps in parallel :
While true:
If sessionHistoryTraversalQueue 's algorithm set is empty, then continue .
Let steps be the result of dequeuing from sessionHistoryTraversalQueue 's algorithm set .
Run steps .
Return sessionHistoryTraversalQueue .
This
section
contains
a
miscellaneous
grab-bag
of
operations
that
we
perform
throughout
the
web
standard
when
manipulating
session
history.
The
best
way
to
get
a
sense
of
what
they
do
is
to
look
at
their
call
sites.
To get session history entries for a navigable , navigable :
Let traversable be navigable 's traversable navigable .
Assert : this is running within traversable 's session history traversal queue .
If navigable is traversable , return traversable 's session history entries .
Let docStates be an empty ordered set of document states .
For each entry of traversable 's session history entries , append entry 's document state to docStates .
For each docState of docStates :
For each nestedHistory of docState 's nested histories :
Assert : this step is not reached.
To clear the forward session history of a traversable navigable navigable :
Assert : this is running within navigable 's session history traversal queue .
Let step be the navigable 's current session history step .
Let entryLists be the ordered set « navigable 's session history entries ».
For each entryList of entryLists :
Remove every session history entry from entryList that has a step greater than step .
For each entry of entryList :
For each nestedHistory of entry 's document state 's nested histories , append nestedHistory 's entries list to entryLists .
To get all used history steps that are part of traversable navigable traversable :
Assert : this is running within traversable 's session history traversal queue .
Let steps be an empty ordered set of non-negative integers.
Let entryLists be the ordered set « traversable 's session history entries ».
For each entryList of entryLists :
For each entry of entryList :
For each nestedHistory of entry 's document state 's nested histories , append nestedHistory 's entries list to entryLists .
Return steps , sorted .
To apply pending history changes to a traversable navigable traversable with optional boolean checkForUserCancelation (default false):
Let targetStep be traversable 's current session history step .
Apply the history step targetStep to traversable with checkForUserCancelation set to checkForUserCancelation .
Certain
actions
cause
the
browsing
context
a
navigable
to
navigate
to
a
new
resource.
A
user
agent
may
provide
various
ways
for
the
user
to
explicitly
cause
a
browsing
context
to
navigate,
in
addition
to
those
defined
in
this
specification.
For
example,
following
a
hyperlink
,
form
submission
,
and
the
window.open()
and
location.assign()
methods
can
all
cause
a
browsing
context
navigation.
Although
in
this
standard
the
word
"navigation"
refers
specifically
to
navigate.
the
navigate
algorithm,
this
doesn't
always
line
up
with
web
developer
or
user
perceptions.
For
example:
The
URL
and
history
update
steps
are
often
used
during
so-called
"single-page
app
navigations"
or
"same-document
navigations",
but
that
might
they
do
not
be
trigger
the
only
information
necessary
navigate
algorithm.
Reloads
and
traversals
are
sometimes
talked
about
as
a
type
of
navigation,
since
all
three
will
often
attempt
to
identify
it.
For
example,
populate
the
history
entry's
document
and
thus
could
perform
navigational
fetches.
See,
e.g.,
the
APIs
exposed
Navigation
Timing
.
But
they
have
their
own
entry
point
algorithms,
separate
from
the
navigate
algorithm.
[NAVIGATIONTIMING]
Although
fragment
navigations
are
always
done
through
the
navigate
algorithm,
a
form
submission
user
might
perceive
them
as
more
like
jumping
around
a
single
page,
than
as
a
true
navigation.
Before
we
can
jump
into
the
navigation
algorithm
itself,
we
need
to
establish
several
important
structures
that
uses
HTTP
POST
would
also
have
it
uses.
The
source
snapshot
params
struct
is
used
to
capture
data
from
a
Document
initiating
a
navigation.
It
is
snapshotted
at
the
HTTP
method
beginning
of
a
navigation
and
payload.
Similarly,
used
throughout
the
navigation's
lifetime.
It
has
the
following
items
:
To
snapshot
source
snapshot
params
given
a
Document
document
sourceDocument
,
return
a
new
source
snapshot
params
needs
to
know
with
The target snapshot params struct is used to capture data from a navigable being navigated. Like source snapshot params , it is snapshotted at the beginning of a navigation and used throughout the navigation's lifetime. It has the following items :
To
snapshot
target
snapshot
params
given
a
navigable
targetNavigable
,
return
a
new
target
snapshot
params
with
sandboxing
flags
set
to
use.
the
result
of
determining
the
creation
sandboxing
flags
given
targetNavigable
's
active
browsing
context
and
targetNavigable
's
container
.
Much
of
the
navigation
process
is
concerned
with
determining
how
to
create
a
new
Document
,
which
ultimately
happens
in
the
create
and
initialize
a
Document
object
algorithm.
The
parameters
to
this
that
algorithm
are
tracked
via
a
navigation
params
struct
,
which
has
the
following
items
:
Document
Document
Document
Document
Document
NavigationTimingType
used
for
creating
the
navigation
timing
entry
for
the
new
Document
Document
,
once
it
has
been
created
Once a navigation params struct is created, this standard does not mutate any of its items . They are only passed onward to other algorithms.
A navigation ID is a UUID string generated during navigation. It is used to interface with the WebDriver BiDi specification as well as to track the ongoing navigation . [WEBDRIVERBIDI]
After
Document
creation,
the
relevant
traversable
navigable
's
session
history
gets
updated.
A
history
handling
behavior
is
used
to
track
the
desired
type
of
session
history
update
throughout
the
navigation
process.
It
is
one
of
the
following:
default
push
"
replace
"
To
navigate
a
browsing
context
navigable
browsingContext
navigable
to
a
resource
URL
resource
url
using
a
Document
sourceDocument
,
with
an
optional
POST
resource
,
string,
or
null
documentResource
(default
null),
an
optional
response
-or-null
response
(default
null),
an
optional
boolean
exceptionsEnabled
(default
false),
an
optional
history
handling
behavior
historyHandling
(default
"
"),
an
optional
default
push
policy
container
-or-null
historyPolicyContainer
(default
null),
an
optional
string
navigationType
cspNavigationType
(default
"
other
"),
and
an
optional
navigation
id
referrer
policy
navigationId
referrerPolicy
(default
null),
and
an
optional
processResponseEndOfBody
,
which
is
an
algorithm
receiving
a
response
(default
an
algorithm
that
does
nothing):
the
empty
string):
If
resource
is
a
URL
,
then
set
Let
resource
sourceSnapshotParams
to
a
new
request
whose
URL
be
the
result
of
snapshotting
source
snapshot
params
is
given
resource
sourceDocument
.
If
resource
is
a
request
and
Let
historyHandling
initiatorOriginSnapshot
is
"
reload
",
then
set
be
resource
sourceDocument
's
reload-navigation
flag
origin
.
If
the
source
browsing
context
sourceDocument
's
node
navigable
is
not
allowed
by
sandboxing
to
navigate
browsingContext
navigable
given
and
sourceSnapshotParams
,
then:
If
exceptionsEnabled
is
given
and
is
true,
then
throw
a
"
SecurityError
"
DOMException
.
Otherwise,
the
user
agent
may
instead
offer
to
open
resource
in
a
new
top-level
browsing
context
or
in
the
top-level
browsing
context
of
the
source
browsing
context
,
at
the
user's
option,
in
which
case
the
user
agent
must
navigate
that
designated
top-level
browsing
context
to
resource
as
if
the
user
had
requested
it
independently.
Doing
so,
however,
can
be
dangerous,
as
it
means
that
the
user
is
overriding
the
author's
explicit
request
to
sandbox
the
content.
Return.
If
Let
navigationId
is
null:
be
the
result
of
generating
a
random
UUID
.
[WEBCRYPTO]
historyHandling
is
"
reload
If
the
surrounding
agent
",
and
is
equal
to
browsingContext
navigable
's
active
document
's
relevant
agent
,
then
continue
these
steps.
Otherwise,
queue
a
global
task
on
the
navigation
id
and
traversal
task
source
is
not
null,
let
given
navigationId
navigable
be
's
active
window
to
continue
these
steps.
We
do
this
because
we
are
about
to
look
at
a
lot
of
properties
of
browsingContext
navigable
's
active
document
's
navigation
id
,
which
are
in
theory
only
accessible
over
in
the
appropriate
event
loop
.
Otherwise
let
navigation
id
(But,
we
do
not
want
to
unconditionally
queue
a
task,
since
—
for
example
—
same-event-loop
fragment
navigations
need
to
take
effect
synchronously.)
Another
implementation
strategy
would
be
to
replicate
the
result
of
generating
relevant
information
across
event
loops,
or
into
a
random
UUID
.
[UUID]
canonical
"browser
process",
so
that
it
can
be
consulted
without
queueing
a
task.
This
could
give
different
results
than
what
we
specify
here
in
edge
cases,
where
the
relevant
properties
have
changed
over
in
the
target
event
loop
but
not
yet
been
replicated.
Further
testing
is
needed
to
determine
which
of
these
strategies
best
matches
browser
behavior,
in
such
racy
edge
cases.
If
browsingContext
navigable
's
active
document
's
unload
counter
is
greater
than
0,
then
invoke
WebDriver
BiDi
navigation
failed
with
a
WebDriver
BiDi
navigation
status
whose
id
is
navigationId
,
status
is
"
canceled
",
and
url
is
resource
's
url
,
,
and
return.
Let
If
incumbentNavigationOrigin
navigable
be
the
origin
of
the
incumbent
settings
object
,
or
if
no
script
was
involved,
the
origin
's
parent
of
the
node
document
is
non-null,
then
set
navigable
's
is
delaying
load
events
of
the
element
that
initiated
the
navigation
.
to
true.
Let
initiatorPolicyContainer
targetBrowsingContext
be
a
clone
of
the
source
browsing
context
navigable
's
active
document
's
policy
container
browsing
context
.
If
resource
is
a
request
,
then
set
Let
resource
targetSnapshotParams
's
policy
container
be
the
result
of
snapshotting
target
snapshot
params
to
given
initiatorPolicyContainer
navigable
.
Cancel
any
preexisting
but
not
yet
mature
Invoke
WebDriver
BiDi
navigation
started
attempt
to
navigate
with
browsingContext
targetBrowsingContext
,
including
canceling
any
instances
of
the
fetch
algorithm
started
by
those
attempts.
If
one
of
those
attempts
has
already
created
and
initialized
a
new
Document
object
,
abort
that
Document
also.
(Navigation
attempts
that
have
matured
WebDriver
BiDi
navigation
status
already
have
session
history
entries,
and
are
therefore
handled
during
the
update
the
session
history
with
the
new
page
whose
id
algorithm,
later.)
Let
is
unloadPromptResult
be
the
result
of
calling
prompt
to
unload
with
the
active
document
navigationId
,
url
of
is
browsingContext
.
If
this
instance
of
the
navigation
url
,
and
status
algorithm
gets
canceled
while
this
step
is
running,
the
prompt
to
unload
"
pending
".
algorithm
must
nonetheless
be
run
to
completion.
If
unloadPromptResult
navigable
's
ongoing
navigation
is
"
",
refuse
traversal
then
return
then:
Invoke
WebDriver
BiDi
navigation
failed
with
targetBrowsingContext
and
a
new
WebDriver
BiDi
navigation
status
whose
id
is
navigationId
and
,
status
is
"
canceled
".
",
and
url
is
url
.
Abort
Return.
Any
attempts
to
navigate
a
navigable
the
active
document
that
is
currently
traversing
of
are
ignored.
Set
browsingContext
navigable
's
ongoing
navigation
to
navigationId
.
This will have the effect of aborting other ongoing navigations of navigable , since at certain points during navigation changes to the ongoing navigation will cause further work to be abandoned.
If
browsingContext
url
's
scheme
is
a
child
browsing
context
,
then
put
it
in
the
delaying
load
"
javascript
events
mode
.
",
then:
The
user
agent
must
take
this
child
browsing
context
Queue
a
global
task
out
of
on
the
delaying
navigation
and
traversal
task
source
given
navigable
's
active
window
to
navigate
to
a
load
javascript:
events
mode
when
this
navigation
URL
algorithm
later
matures
given
navigable
,
url
,
historyHandling
,
initiatorOriginSnapshot
,
and
cspNavigationType
.
Return.
In
parallel
,
or
when
it
terminates
(whether
due
to
having
run
all
the
steps,
or
being
canceled,
or
being
aborted),
whichever
happens
first.
these
steps:
Let
sandboxFlags
unloadPromptCanceled
be
the
result
of
determining
the
creation
sandboxing
flags
checking
if
unloading
is
user-canceled
given
browsingContext
and
for
browsingContext
navigable
's
container
active
document
's
inclusive
descendant
navigables
.
Let
If
allowedToDownload
unloadPromptCanceled
be
the
result
of
running
the
allowed
to
download
algorithm
given
the
source
browsing
context
and
browsingContext
.
Let
is
true,
or
hasTransientActivation
navigable
be
true
if
the
source
browsing
context
's
active
window
has
transient
activation
ongoing
navigation
;
otherwise
false.
is
no
longer
navigationId
,
then:
Invoke
WebDriver
BiDi
navigation
started
failed
with
browsingContext
,
targetBrowsingContext
and
a
new
WebDriver
BiDi
navigation
status
whose
id
is
navigationId
,
url
is
resource
's
url
,
and
status
is
"
pending
canceled
".
",
and
url
is
url
.
Return,
and
continue
running
Abort
these
steps
in
parallel
.
steps.
This
is
Queue
a
global
task
on
the
step
that
attempts
to
obtain
navigation
and
traversal
task
source
given
resource
,
if
necessary.
Jump
navigable
's
active
window
to
the
first
appropriate
substep:
abort
navigable
's
active
document
.
Assert
:
If
browsingContext
url
is
not
a
top-level
browsing
context
about:blank
,
then
set
documentState
's
origin
to
documentState
's
initiator
origin
.
Let
Otherwise,
if
finalSandboxFlags
url
be
the
union
is
about:srcdoc
,
then
set
of
browsingContext
documentState
's
sandboxing
flags
origin
and
to
resource
navigable
's
forced
sandboxing
flag
set
parent
's
active
document
's
origin
.
Let
responseOrigin
historyEntry
be
the
result
of
determining
the
origin
a
new
session
history
entry
,
with
its
URL
given
browsingContext
,
set
to
resource
's
url
,
finalSandboxFlags
,
and
its
document
state
set
to
incumbentNavigationOrigin
documentState
.
Let
coop
navigationParams
be
a
new
cross-origin
opener
policy
.
null.
Let
If
coopEnforcementResult
response
be
a
new
cross-origin
opener
policy
enforcement
result
whose
needs
a
browsing
context
group
switch
is
false,
would
need
a
browsing
context
group
switch
due
to
report-only
is
false,
url
non-null:
Let
policyContainer
be
the
result
of
determining
navigation
params
policy
container
given
response
's
URL
,
null,
a
clone
of
the
resource
sourceDocument
's
url
policy
container
,
historyPolicyContainer
,
initiatorPolicyContainer
,
browsingContext
navigable
's
parent
browsing
context
's
active
container
document
's
policy
container
,
and
null.
Let
navigationParams
finalSandboxFlags
be
a
new
navigation
params
whose
id
is
navigationId
,
request
is
null,
response
is
resource
,
origin
is
responseOrigin
,
policy
container
is
policyContainer
,
final
sandboxing
flag
set
is
finalSandboxFlags
,
cross-origin
opener
policy
is
coop
,
COOP
enforcement
result
is
coopEnforcementResult
,
reserved
environment
is
null,
browsing
context
is
browsingContext
,
history
handling
the
union
is
historyHandling
,
process
response
end
of
body
is
processResponseEndOfBody
,
and
commit
early
hints
is
null.
Run
process
a
navigate
response
with
navigationType
,
allowedToDownload
,
hasTransientActivation
,
and
navigationParams
.
If
resource
targetSnapshotParams
is
a
request
whose
URL
's
scheme
is
"
javascript
"
Queue
a
global
task
on
the
DOM
manipulation
task
source
sandboxing
flags
given
and
browsingContext
policyContainer
's
active
window
CSP
list
to
run
these
steps:
's
CSP-derived
sandboxing
flags
.
Let
response
responseOrigin
be
the
result
of
executing
a
javascript:
URL
request
determining
the
origin
given
resource
,
response
's
URL
,
browsingContext
finalSandboxFlags
,
and
incumbentNavigationOrigin
.
documentState
's
initiator
origin
,
and
null.
Let
finalSandboxFlags
coop
be
the
union
of
browsingContext
's
sandboxing
flags
and
response
's
forced
sandboxing
flag
set
a
new
cross-origin
opener
policy
.
Let
coopEnforcementResult
be
a
new
cross-origin
opener
policy
enforcement
result
whose
needs
a
browsing
context
group
switch
is
false,
would
need
a
browsing
context
group
switch
due
to
report-only
is
false,
url
is
resource
response
's
URL
,
origin
is
browsingContext
's
active
document
's
origin
,
responseOrigin
,
cross-origin
opener
policy
is
browsingContext
's
active
document
's
cross-origin
opener
policy
,
coop
,
and
current
context
is
navigation
source
is
false.
Let
Set
navigationParams
be
to
a
new
navigation
params
whose
,
with
iframe
navigate
Run
process
a
navigate
fetch
given
navigationId
,
resource
,
Attempt
to
populate
the
source
browsing
context
,
browsingContext
,
navigationType
,
history
entry's
document
for
sandboxFlags
historyEntry
,
given
historyPolicyContainer
navigable
,
"
navigate
",
initiatorPolicyContainer
sourceSnapshotParams
,
allowedToDownload
targetSnapshotParams
,
hasTransientActivation
navigationId
,
incumbentNavigationOrigin
navigationParams
,
historyHandling
cspNavigationType
,
and
processResponseEndOfBody
.
Otherwise,
resource
is
a
request
whose
URL
's
scheme
is
neither
"
with
javascript
allowPOST
"
nor
a
fetch
scheme
set
to
true
and
completionSteps
set
to
the
following
step:
Run
process
a
navigate
URL
scheme
Append
session
history
traversal
steps
given
to
resource
navigable
's
URL
,
traversable
's
session
history
traversal
queue
to
finalize
a
cross-document
navigation
given
browsingContext
navigable
,
sandboxFlags
historyHandling
,
and
hasTransientActivation
historyEntry
.
Although
the
usual
cross-document
navigation
case
will
first
foray
into
populating
a
string
navigationType
,
session
history
entry
with
a
sandboxing
flag
set
Document
,
all
navigations
that
don't
get
aborted
will
ultimately
end
up
calling
into
one
of
the
below
algorithms.
sandboxFlags
,
two
policy
containers
To
finalize
a
boolean
allowedToDownload
,
cross-document
navigation
given
a
boolean
hasTransientActivation
,
an
origin
navigable
incumbentNavigationOrigin
navigable
,
a
history
handling
behavior
historyHandling
,
and
session
history
entry
processResponseEndOfBody
,
which
is
an
algorithm
accepting
a
response
:
historyEntry
:
Let
response
be
null.
Set
request
's
client
to
sourceBrowsingContext
's
active
document
's
relevant
settings
object
,
destination
to
"
document
",
mode
to
"
navigate
",
credentials
mode
to
"
include
",
use-URL-credentials
flag
,
redirect
mode
to
"
manual
",
and
replaces
client
id
to
Assert
:
this
is
running
on
browsingContext
navigable
's
active
document
's
relevant
settings
object
traversable
navigable's
's
id
session
history
traversal
queue
.
If
hasTransientActivation
is
true,
then
set
Set
request
navigable
's
user-activation
is
delaying
load
events
to
true.
false.
If
browsingContext
historyEntry
's
container
document
is
non-null:
null,
then
return.
This
means
that
attempting
to
populate
the
browsingContext
's
container
history
entry's
document
has
ended
up
not
creating
a
browsing
context
scope
origin
,
then
set
request
's
origin
to
that
browsing
context
scope
origin
.
document,
as
a
result
of
e.g.,
the
navigation
being
canceled
by
a
subsequent
navigation,
a
204
No
Content
response,
etc.
If all of the following are true:
Set
request
's
destination
to
browsingContext
navigable
's
container
parent
's
local
name
.
is
null;
Let
responseOrigin
be
null.
Let
currentContextIsSource
be
the
result
of
whether
browsingContext
historyEntry
's
active
document
is
same
origin
with
sourceBrowsingContext
's
active
document
.
Let
coopEnforcementResult
be
a
new
cross-origin
opener
policy
enforcement
result
whose
needs
a
browsing
context
group
switch
is
false,
would
need
a
not
an
auxiliary
browsing
context
group
switch
due
to
report-only
is
false,
url
whose
disowned
is
false;
and
browsingContext
historyEntry
's
active
document
's
url
,
origin
is
not
browsingContext
navigable
's
active
document
's
origin
,
cross-origin
opener
policy
is
then
set
browsingContext
historyEntry
's
active
document
state
's
cross-origin
opener
policy
,
and
current
context
is
navigation
source
navigable
target
name
is
currentContextIsSource
.
to
the
empty
string.
Let
finalSandboxFlags
entryToReplace
be
an
empty
sandboxing
flag
set
.
Let
responseCOOP
navigable
be
a
new
cross-origin
opener
policy
.
Let
's
active
session
history
entry
if
locationURL
historyHandling
be
is
"
replace
",
otherwise
null.
Let
currentURL
traversable
be
request
navigable
's
current
URL
traversable
navigable
.
Let
hasCrossOriginRedirects
be
false.
Let
commitEarlyHints
targetStep
be
null.
Let
fetchController
targetEntries
be
null.
While
true:
the
result
of
getting
session
history
entries
for
navigable
.
If
locationURL
entryToReplace
is
non-null,
null,
then:
If
locationURL
's
origin
is
not
Clear
the
same
forward
session
history
as
currentURL
's
origin
,
then
set
of
hasCrossOriginRedirects
to
true.
traversable
.
Set
currentURL
targetStep
to
locationURL
.
If
request
traversable
's
reserved
client
current
session
history
step
is
not
null
and
+
1.
Set
currentURL
historyEntry
's
origin
step
is
not
the
same
to
targetStep
.
Append
as
request
historyEntry
's
reserved
client
's
creation
URL
's
origin
,
then:
to
targetEntries
.
Otherwise:
Run
the
environment
discarding
steps
Replace
for
request
entryToReplace
's
reserved
client
.
with
historyEntry
in
targetEntries
.
Set
request
historyEntry
's
reserved
client
step
to
null.
entryToReplace
's
step
.
Set
commitEarlyHints
targetStep
to
null.
Preloaded
links
from
early
hint
headers
remain
in
the
preload
cache
after
a
same
origin
redirect,
but
get
discarded
when
the
redirect
is
cross-origin.
If
request
traversable
's
reserved
client
is
null,
then:
current
session
history
step
.
Let
Apply
the
history
step
topLevelCreationURL
targetStep
be
to
currentURL
traversable
.
javascript:
URL
special
case
javascript:
URLs
have
a
dedicated
label
on
the
issue
tracker
documenting
various
problems
with
their
specification.
Let
To
navigate
to
a
javascript:
URL
,
given
a
navigable
topLevelOrigin
be
null.
If
targetNavigable
,
a
URL
browsingContext
is
not
url
,
a
top-level
browsing
context
,
then:
history
handling
behavior
historyHandling
,
an
origin
initiatorOrigin
,
and
a
string
cspNavigationType
:
Let
parentEnvironment
be
Assert
:
browsingContext
historyHandling
's
container
is
"
replace
".
's
relevant
settings
object
.
Set
topLevelCreationURL
to
parentEnvironment
targetNavigable
's
top-level
creation
URL
ongoing
navigation
and
to
null.
If
topLevelOrigin
initiatorOrigin
to
is
not
same
origin-domain
with
parentEnvironment
targetNavigable
's
top-level
active
document
's
origin
.
,
then
return.
Set
Let
request
's
reserved
client
to
be
a
new
environment
request
whose
id
is
a
unique
opaque
string,
target
browsing
context
is
browsingContext
,
creation
URL
is
currentURL
,
top-level
creation
URL
is
topLevelCreationURL
,
and
top-level
origin
is
topLevelOrigin
url
.
The
created
environment's
active
service
worker
This
is
set
in
the
Handle
Fetch
a
synthetic
request
algorithm
during
solely
for
plumbing
into
the
fetch
if
next
step.
It
will
never
hit
the
request
URL
matches
a
service
worker
registration.
[SW]
network.
If
the
result
of
Should
should
navigation
request
of
type
be
blocked
by
Content
Security
Policy?
given
request
and
navigationType
cspNavigationType
is
"
Blocked
",
then
set
response
to
a
network
error
and
break
.
return.
[CSP]
If
fetchController
is
null,
then
set
Let
fetchController
newDocument
to
be
the
result
of
fetching
evaluating
a
javascript:
URL
given
request
targetNavigable
,
with
processEarlyHintsResponse
set
to
the
following
step
given
a
response
earlyResponse
:
url
,
and
initiatorOrigin
.
If
commitEarlyHints
newDocument
is
null,
then
set
commitEarlyHints
to
the
result
of
processing
early
hint
headers
given
earlyResponse
and
request
's
reserved
client
.
return.
In
this
case,
some
JavaScript
code
was
executed,
but
no
new
was
created,
so
we
will
not
perform
a
navigation.
Otherwise,
process
the
next
manual
redirect
Document
given
fetchController
.
Wait
for
the
task
on
the
networking
task
source
to
process
response
and
set
response
to
the
result.
Set
finalSandboxFlags
to
the
union
of
Let
browsingContext
entryToReplace
's
sandboxing
flags
and
be
response
targetNavigable
's
forced
sandboxing
flag
set
active
session
history
entry
.
Set
Let
responseOrigin
oldDocState
to
the
result
of
determining
the
origin
given
browsingContext
,
be
request
entryToReplace
's
URL
,
finalSandboxFlags
,
and
incumbentNavigationOrigin
.
document
state
.
If
Let
browsingContext
documentState
is
be
a
top-level
browsing
context
,
then:
new
document
state
with
If
Let
sandboxFlags
historyEntry
is
not
empty
and
be
a
new
session
history
entry
,
with
For
the
URL
,
we
do
not
use
url
,
i.e.
the
actual
javascript:
URL
that
the
navigate
algorithm
was
called
with.
This
results
means
javascript:
URLs
are
never
stored
in
a
network
error
as
one
cannot
simultaneously
provide
a
clean
slate
to
a
response
using
cross-origin
opener
policy
session
history,
and
sandbox
the
result
of
navigating
to
that
response.
so
can
never
be
traversed
to.
If
response
is
not
a
network
error
,
browsingContext
is
a
child
browsing
context
,
and
the
result
of
performing
a
cross-origin
resource
policy
check
Append
session
history
traversal
steps
with
to
browsingContext
targetNavigable
's
container
document
traversable
's
origin
,
browsingContext
's
container
document
session
history
traversal
queue
's
relevant
settings
object
,
to
finalize
a
cross-document
navigation
with
request
's
destination
,
targetNavigable
,
response
historyHandling
,
and
true
is
blocked
,
then
set
response
to
historyEntry
.
To
evaluate
a
network
error
javascript:
URL
given
a
navigable
targetNavigable
,
a
URL
url
,
and
break
.
an
origin
newDocumentOrigin
:
Let
urlString
be
the
cross-origin
resource
policy
check
against
result
of
running
the
parent
browsing
context
URL
serializer
rather
than
on
sourceBrowsingContext
url
.
This
is
because
we
care
about
Let
encodedScriptSource
be
the
same-originness
result
of
removing
the
embedded
content
against
leading
"
javascript:
"
from
urlString
.
Let
scriptSource
be
the
parent
context,
not
UTF-8
decoding
of
the
navigation
source.
percent-decoding
of
encodedScriptSource
.
Set
Let
locationURL
settings
to
be
response
targetNavigable
's
location
URL
active
document
given
currentURL
's
fragment
relevant
settings
object
.
If
Let
locationURL
baseURL
is
not
a
be
settings
's
API
base
URL
whose
scheme
is
an
HTTP(S)
scheme
,
then
break
.
Navigation
handles
redirects
manually
as
navigation
is
the
only
place
in
the
web
platform
that
cares
for
redirects
to
mailto:
URLs
and
such.
By
the
end
of
this
loop
we
will
be
in
one
of
these
scenarios:
Let
response
script
is
be
the
result
of
creating
a
network
error
classic
script
given
scriptSource
,
settings
,
baseURL
,
and
the
default
classic
script
fetch
options
.
Let
locationURL
evaluationStatus
is
failure,
because
be
the
result
of
an
unparseable
`
Location
`
header.
running
the
classic
script
script
.
Let
locationURL
result
is
null,
because
we
successfully
fetched
a
non-
network
error
HTTP(S)
response
with
no
`
Location
`
header.
be
null.
If
locationURL
evaluationStatus
is
a
URL
with
a
non-
HTTP(S)
scheme
.
If
normal
completion,
and
locationURL
evaluationStatus
.[[Value]]
is
failure,
a
String,
then
set
response
result
to
a
network
error
.
evaluationStatus
.[[Value]].
Otherwise,
if
return
null.
Let
locationURL
response
is
be
a
new
response
with
Content-Type
`,
`
javascript
text/html;charset=utf-8
The encoding to UTF-8 means that unpaired surrogates will not roundtrip, once the HTML parser decodes the response body.
Otherwise,
if
Let
locationURL
policyContainer
is
a
URL
,
then
process
a
navigate
URL
scheme
given
locationURL
,
browsingContext
,
sandboxFlags
,
and
be
hasTransientActivation
,
and
return.
targetNavigable
's
active
document
's
policy
container
.
Let
responsePolicyContainer
finalSandboxFlags
be
the
result
of
creating
a
policy
container
from
a
fetch
response
policyContainer
's
CSP
list
given
's
CSP-derived
sandboxing
flags
.
Let
response
coop
and
be
request
targetNavigable
's
reserved
client
active
document
's
cross-origin
opener
policy
.
Let
resultPolicyContainer
coopEnforcementResult
be
the
result
of
determining
navigation
params
a
new
cross-origin
opener
policy
container
enforcement
result
given
with
Let
navigationParams
be
a
new
navigation
params
whose
,
with
Document
to
be
null;
is
navigate
is
historyHandling
,
process
response
end
of
body
"
Run
process
a
navigate
response
Return
the
result
of
loading
an
HTML
document
with
navigationType
,
allowedToDownload
,
hasTransientActivation
,
and
given
navigationParams
.
To
process
a
navigate
response
,
to
a
fragment
given
a
string
navigable
navigationType
navigable
,
a
boolean
URL
allowedToDownload
url
,
a
boolean
history
handling
behavior
hasTransientActivation
historyHandling
,
and
a
navigation
params
ID
navigationParams
navigationId
:
Let
response
historyEntry
be
a
new
session
history
entry
,
with
Let
failure
entryToReplace
be
false.
If
response
is
a
network
error
,
then
set
failure
to
true.
Otherwise,
if
the
result
of
Should
navigation
response
to
navigation
request
of
type
in
target
be
blocked
by
Content
Security
Policy?
given
navigationParams
's
request
,
response
,
navigationParams
navigable
's
policy
container
active
session
history
entry
's
CSP
list
,
navigationType
,
and
if
browsingContext
historyHandling
is
"
Blocked
replace
",
then
set
failure
to
true.
[CSP]
otherwise
null.
Otherwise,
if
Let
navigationParams
history
's
reserved
environment
is
non-null
and
the
result
of
checking
a
navigation
response's
adherence
to
its
embedder
policy
given
response
,
browsingContext
,
and
be
navigationParams
navigable
's
policy
container
active
document
's
embedder
policy
is
false,
then
set
failure
to
true.
history
object
.
Otherwise,
if
the
result
of
checking
a
navigation
response's
adherence
to
`
X-Frame-Options
`
given
response
,
Let
browsingContext
,
and
scriptHistoryIndex
be
navigationParams
history
's
origin
is
false,
then
set
index
.
Let
failure
scriptHistoryLength
to
true.
be
history
's
length
.
If
failure
historyHandling
is
true,
"
push
",
then:
Call
Set
navigationParams
history
's
process
response
end
of
body
state
with
to
null.
Increment
response
scriptHistoryIndex
.
Display
the
inline
content
with
an
appropriate
error
shown
Set
scriptHistoryLength
to
the
user
given
browsingContext
.
scriptHistoryIndex
+
1.
Run
the
environment
discarding
steps
for
Set
navigationParams
navigable
's
reserved
environment
.
active
session
history
entry
to
historyEntry
.
Invoke
WebDriver
BiDi
navigation
failed
Update
document
for
history
step
application
with
given
browsingContext
navigable
's
active
document
,
historyEntry
,
true,
scriptHistoryIndex
,
and
scriptHistoryLength
.
This
algorithm
will
be
called
twice
as
a
new
WebDriver
BiDi
navigation
status
whose
id
is
result
of
a
single
fragment
navigation:
once
synchronously,
where
best-guess
values
navigationParams
scriptHistoryIndex
's
id
,
status
and
scriptHistoryLength
are
set,
history.state
is
"
nulled
out,
and
various
events
are
fired;
and
once
asynchronously,
where
the
final
values
for
index
and
length
are
set,
canceled
history.state
",
remains
untouched,
and
url
no
events
are
fired.
Scroll
to
the
fragment
is
given
response
navigable
's
URL
active
document
.
Return.
This
is
where
If
the
network
errors
defined
scrolling
fails
because
the
Document
is
new
and
propagated
by
Fetch
,
such
as
DNS
or
TLS
errors,
end
up
being
displayed
the
relevant
ID
has
not
yet
been
parsed,
then
the
second
asynchronous
call
to
users.
[FETCH]
update
document
for
history
step
application
will
take
care
of
scrolling.
If
Let
response
traversable
's
status
is
204
or
205,
then
call
be
navigationParams
navigable
's
process
response
end
of
body
with
response
,
and
return.
traversable
navigable
.
If
response
has
a
`
Content-Disposition
`
header
specifying
Append
the
attachment
disposition
type,
then:
following
session
history
synchronous
navigation
steps
involving
navigable
to
traversable
:
If
Finalize
a
same-document
navigation
given
allowedToDownload
is
true,
then
handle
traversable
,
response
as
a
download
.
navigable
,
historyEntry
,
and
entryToReplace
.
Invoke
WebDriver
BiDi
download
started
fragment
navigated
with
browsingContext
navigable
's
active
browsing
context
and
a
new
WebDriver
BiDi
navigation
status
whose
id
is
navigationParams
navigationId
,
url
is
resource
's
id
url
,
and
status
is
"
complete
",
".
To
finalize
a
same-document
navigation
given
a
traversable
navigable
traversable
,
a
navigable
targetNavigable
,
a
session
history
entry
targetEntry
,
and
url
session
history
entry
-or-null
entryToReplace
:
This is used by both fragment navigations and by the URL and history update steps , which are the only synchronous updates to session history. By virtue of being synchronous, those algorithms are performed outside of the top-level traversable 's session history traversal queue . This puts them out of sync with the top-level traversable 's current session history step , so this algorithm is used to resolve conflicts due to race conditions.
Assert
:
this
is
running
on
response
traversable
's
URL
session
history
traversal
queue
.
Return.
If
targetNavigable
's
active
session
history
entry
is
not
targetEntry
,
then
return.
Let
type
targetStep
be
null.
Let
targetEntries
be
the
computed
type
result
of
getting
session
history
entries
for
response
.
targetNavigable
.
If
the
user
agent
has
been
configured
to
process
resources
of
the
given
type
using
some
mechanism
other
than
rendering
the
content
in
a
browsing
context
,
then
skip
this
step.
Otherwise,
if
the
type
entryToReplace
is
one
of
the
following
types,
jump
to
the
appropriate
entry
in
the
following
list,
and
process
response
as
described
there:
null,
then:
Clear
the
HTML
document
forward
session
history
section
providing
of
navigationParams
traversable
.
Once
the
steps
have
completed,
return.
an
XML
MIME
type
that
is
not
an
explicitly
supported
XML
MIME
type
Set
navigationParams
targetStep
and
to
type
.
Once
the
steps
have
completed,
return.
a
JavaScript
MIME
type
a
JSON
MIME
type
that
is
not
an
explicitly
supported
JSON
MIME
type
"
text/css
traversable
's
current
session
history
step
+
1.
Set targetEntry 's step to targetStep .
"
Follow
the
steps
given
in
the
plain
text
file
Append
section
providing
navigationParams
targetEntry
and
to
type
targetEntries
.
Once
the
steps
have
completed,
return.
"
Otherwise:
Replace
section
providing
navigationParams
.
Once
the
steps
have
completed,
return.
A
supported
image,
video,
or
audio
type
Follow
the
steps
given
in
the
media
section
providing
entryToReplace
with
navigationParams
targetEntry
and
in
type
targetEntries
.
Once
the
steps
have
completed,
return.
"
application/pdf
"
"
text/pdf
"
If
the
user
agent's
PDF
viewer
supported
is
true,
then
either
follow
the
steps
given
in
the
plugin
Set
targetEntry
's
step
section
providing
to
navigationParams
entryToReplace
and
's
step
.
Set
type
,
or
display
the
inline
content
given
targetStep
to
browsingContext
.
Once
traversable
's
current
session
history
step
.
Apply
the
steps
have
completed,
return.
See
issue
#6003
history
step
for
discussion
on
picking
one
of
these
two
behaviors
targetStep
to
standardize.
Otherwise,
proceed
onward.
traversable
.
This
is
configured
to
use
an
external
application
to
render
the
content
(either
a
plugin
rendering
directly
in
browsingContext
,
or
a
separate
application),
or
one
done
even
for
which
the
user
agent
has
dedicated
processing
rules
(e.g.,
a
web
browser
with
a
built-in
Atom
feed
viewer
would
be
said
to
explicitly
support
the
"
application/atom+xml
replace
MIME
type),
or
one
for
which
the
user
agent
has
a
dedicated
handler.
"
navigations,
as
it
resolves
race
conditions
across
multiple
synchronous
navigations.
An
explicitly
supported
JSON
MIME
type
is
One
input
to
attempt
to
create
a
JSON
MIME
type
non-fetch
scheme
document
for
which
the
user
agent
is
configured
to
use
an
external
application
to
render
the
content
(either
non-fetch
scheme
navigation
params
struct
.
It
is
a
plugin
light
weight
version
of
navigation
params
rendering
directly
in
browsingContext
,
or
a
separate
application),
or
one
for
which
only
carries
parameters
relevant
to
the
user
agent
non-
fetch
scheme
navigation
case.
It
has
dedicated
processing
rules,
or
one
for
which
the
user
agent
has
a
dedicated
handler.
following
items
:
If,
given
type
,
the
new
resource
is
to
be
handled
by
displaying
some
sort
of
inline
content,
e.g.,
a
native
rendering
of
the
content
or
an
error
message
because
the
specified
type
is
not
supported,
then
display
the
inline
content
origin
given
browsingContext
,
and
then
return.
Otherwise,
the
document's
type
is
such
that
the
resource
will
not
affect
browsingContext
,
e.g.,
because
the
resource
is
to
be
handed
possibly
for
use
in
a
user-facing
prompt
to
confirm
the
invocation
of
an
external
application
or
because
it
is
an
unknown
type
software
package
This
differs
slightly
from
a
document
state
's
initiator
origin
in
that
will
be
processed
as
a
download
.
Hand-off
to
external
software
non-fetch
scheme
navigation
params
given
response
,
browsingContext
,
navigationParams
's
final
sandboxing
flag
set
,
and
hasTransientActivation
.
initiator
origin
follows
redirects
up
to
the
last
fetch
scheme
URL
in
a
redirect
chain
that
ends
in
a
non-
fetch
scheme
URL.
If
url
is
to
be
handled
using
a
mechanism
that
does
not
affect
browsingContext
navigable
,
e.g.,
because
url
's
scheme
is
handled
externally,
then
hand-off
then:
Hand-off
to
external
software
given
url
,
browsingContext
navigable
,
sandboxFlags
,
and
hasTransientActivation
,
and
initiatorOrigin
.
Otherwise,
Return
null.
Handle
url
is
to
be
handled
by
displaying
some
sort
of
inline
content,
e.g.,
an
error
message
because
the
specified
scheme
is
not
one
of
the
supported
protocols,
or
an
inline
prompt
to
allow
the
user
to
select
a
registered
handler
for
the
given
scheme.
Display
Return
the
result
of
displaying
the
inline
content
given
browsingContext
navigable
,
navigationId
,
and
navTimingType
.
In the case of a registered handler being used, navigate will be invoked with a new URL.
To
hand-off
to
external
software
given
a
URL
or
response
resource
,
a
browsing
context
navigable
browsingContext
navigable
,
a
sandboxing
flag
set
sandboxFlags
,
and
a
boolean
hasTransientActivation
,
and
an
origin
initiatorOrigin
user
agents
should:
Return
without
invoking
the
external
sofware
package
if
If
all
of
these
the
following
conditions
hold:
browsingContext
navigable
is
not
a
top-level
browsing
context
traversable
;
sandboxFlags has its sandboxed custom protocols navigation browsing context flag set; and
sandboxFlags
has
its
sandboxed
top-level
navigation
with
user
activation
browsing
context
flag
set,
or
hasTransientActivation
is
false.
false
then return without invoking the external software package.
Navigation
inside
an
iframe
toward
external
software
can
be
seen
by
users
as
a
new
popup
or
a
new
top-level
navigation.
That's
why
its
is
allowed
in
sandboxed
iframe
only
when
one
of
allow-popups
,
allow-top-navigation
,
allow-top-navigation-by-user-activation
,
or
allow-top-navigation-to-custom-protocols
is
specified.
Perform
the
appropriate
handoff
of
resource
while
attempting
to
mitigate
the
risk
that
this
is
an
attempt
to
exploit
the
target
software.
For
example,
user
agents
could
prompt
the
user
to
confirm
that
the
source
browsing
context
's
active
document
's
origin
initiatorOrigin
is
to
be
allowed
to
invoke
the
external
software
in
question.
In
particular,
if
hasTransientActivation
is
false,
then
the
user
agent
should
not
invoke
the
external
software
package
without
prior
user
confirmation.
For example, there could be a vulnerability in the target software's URL handler which a hostile page would attempt to exploit by tricking a user into clicking a link.
To
execute
A
couple
of
scenarios
can
intervene
early
in
the
navigation
process
and
put
the
whole
thing
to
a
javascript:
URL
request
,
given
halt.
This
can
be
especially
exciting
when
multiple
navigables
are
navigating
at
the
same
time,
due
to
a
request
session
history
traversal.
A
navigable
request
,
source
is
allowed
by
sandboxing
to
navigate
a
browsing
context
second
navigable
browsingContext
target
,
and
an
origin
given
a
source
snapshot
params
initiatorOrigin
:
sourceSnapshotParams
,
if
the
following
steps
return
true:
Let
If
response
source
be
a
response
whose
status
is
204
.
target
,
then
return
true.
If
both
source
is
an
ancestor
of
the
following
are
true:
target
,
then
return
true.
If target is an ancestor of source , then:
If
initiatorOrigin
target
is
same
origin-domain
not
a
top-level
traversable
,
then
return
true.
If
sourceSnapshotParams
's
has
transient
activation
with
is
true,
and
browsingContext
sourceSnapshotParams
's
active
document
sandboxing
flags
's
origin
.
sandboxed
top-level
navigation
with
user
activation
browsing
context
flag
is
set,
then
return
false.
The
result
of
Should
navigation
request
of
type
be
blocked
by
Content
Security
Policy?
given
If
request
sourceSnapshotParams
's
has
transient
activation
is
false,
and
navigationType
sourceSnapshotParams
is
"
Allowed
".
[CSP]
's
sandboxing
flags
's
sandboxed
top-level
navigation
without
user
activation
browsing
context
flag
is
set,
then
return
false.
then:
Return
true.
If target is a top-level traversable :
Let
If
urlString
source
be
the
result
of
running
is
the
URL
serializer
one
permitted
sandboxed
navigator
on
of
request
target
,
then
return
true.
If
sourceSnapshotParams
's
URL
.
sandboxing
flags
's
sandboxed
navigation
browsing
context
flag
is
set,
then
return
false.
Let
Return
true.
If
encodedScriptSource
sourceSnapshotParams
be
the
result
's
sandboxing
flags
's
sandboxed
navigation
browsing
context
flag
is
set,
then
return
false.
Return true.
To
check
if
unloading
is
user-canceled
for
list
of
removing
the
leading
"
javascript:
"
from
navigables
urlString
.
navigables
:
Let
scriptSource
documents
be
the
UTF-8
decoding
active
document
of
the
percent-decoding
each
item
of
in
encodedScriptSource
navigables
.
Append
browsingContext
's
active
document
's
URL
to
Let
request
unloadPromptShown
's
URL
list
.
be
false.
Let
settings
unloadPromptCanceled
be
browsingContext
's
active
document
's
relevant
settings
object
.
false.
Let
baseURL
totalTasks
be
the
size
of
settings
's
API
base
URL
.
documents
.
Let
script
completedTasks
be
the
result
0.
For
each
document
of
creating
documents
,
queue
a
classic
script
global
task
on
the
navigation
and
traversal
task
source
given
scriptSource
,
settings
,
document
's
relevant
global
object
to
run
the
steps:
Increase
the
baseURL
,
and
document
's
unload
counter
by
1.
Increase
the
default
classic
script
fetch
options
.
event
loop
's
termination
nesting
level
by
1.
Let
evaluationStatus
event
be
the
result
of
running
the
classic
script
creating
an
event
using
BeforeUnloadEvent
.
Initialize
script
.
event
's
type
attribute
to
beforeunload
and
its
cancelable
attribute
true.
Let
Dispatch
result
event
be
undefined
if
at
evaluationStatus
document
is
an
abrupt
completion
's
relevant
global
object
.
Decrease
the
event
loop
or
evaluationStatus
.[[Value]]
is
empty,
or
evaluationStatus
.[[Value]]
otherwise.
's
termination
nesting
level
by
1.
If
Type
(
all
of
the
following
are
true:
result
unloadPromptShown
)
is
String,
then
false;
document 's active sandboxing flag set does not have its sandboxed modals flag set;
response
document
to
a
response
's
relevant
global
object
whose
header
list
has
sticky
activation
;
event
's
canceled
flag
is
«
(`
set,
or
the
Content-Type
returnValue
`,
`
attribute
of
event
is
not
the
empty
string;
and
showing an unload prompt is unlikely to be annoying, deceptive, or pointless
then:
Set unloadPromptShown to true.
Invoke
WebDriver
BiDi
user
prompt
opened
with
document
's
relevant
global
object
,
"
text/html;charset=utf-8
beforeunload
`)
»,
",
and
whose
body
is
"".
Ask
the
result
of
UTF-8
encoding
user
to
confirm
that
they
wish
to
unload
the
document,
and
pause
result
.
while
waiting
for
the
user's
response.
The
encoding
message
shown
to
UTF-8
means
that
unpaired
surrogates
will
the
user
is
not
roundtrip,
once
customizable,
but
instead
determined
by
the
HTML
parser
decodes
user
agent.
In
particular,
the
response
body.
actual
value
of
the
returnValue
attribute
is
ignored.
If the user did not confirm the page navigation, set unloadPromptCanceled to true.
Invoke WebDriver BiDi user prompt closed with document 's relevant global object and true if unloadPromptCanceled is false or false otherwise.
Return
Decrease
the
response
document
's
unload
counter
by
1.
Increment completedTasks .
Wait
for
completedTasks
to
the
specific
issues
linked
above,
be
totalTasks
.
Return unloadPromptCanceled .
To
reload
a
dedicated
label
navigable
on
navigable
:
Set navigable 's active session history entry 's document state 's reload pending to true.
Let traversable be navigable 's traversable navigable .
Append
the
issue
tracker
documenting
various
problems
with
their
specification.
following
session
history
traversal
steps
to
traversable
:
Some
of
Apply
pending
history
changes
to
traversable
with
true.
It
is
intentional
that
the
sections
below,
resulting
call
to
which
apply
the
above
algorithm
defers
history
step
does
not
pass
sourceSnapshotParams
or
initiatorToCheck
.
Reloading
is
always
treated
as
if
it
were
done
by
navigable
itself,
even
in
certain
cases,
use
cases
like
parent.location.reload()
.
To
traverse
the
following
steps
to
create
and
initialize
history
by
a
Document
object
,
delta
given
a
type
traversable
navigable
type
traversable
,
content
type
an
integer
contentType
delta
,
and
navigation
params
an
optional
Document
navigationParams
sourceDocument
:
Let
browsingContext
sourceSnapshotParams
and
initiatorToCheck
be
null.
If sourceDocument is given, then:
Set
sourceSnapshotParams
to
the
result
of
the
obtaining
a
browsing
context
to
use
for
a
navigation
response
snapshotting
source
snapshot
params
given
navigationParams
's
browsing
context
,
navigationParams
's
final
sandboxing
flag
set
,
sourceDocument
.
Set
navigationParams
initiatorToCheck
's
cross-origin
opener
policy
,
and
to
navigationParams
sourceDocument
's
COOP
enforcement
result
node
navigable
.
Append the following session history traversal steps to traversable :
Let
permissionsPolicy
allSteps
be
the
result
of
creating
a
permissions
policy
from
a
response
getting
all
used
history
steps
given
for
browsingContext
,
traversable
.
Let
navigationParams
currentStepIndex
be
the
index
of
traversable
's
origin
current
session
history
step
within
allSteps
.
Let targetStepIndex be currentStepIndex plus delta .
If
allSteps
[
targetStepIndex
]
does
not
exist
,
and
then
abort
these
steps.
Apply
the
history
step
navigationParams
allSteps
's
response
.
[PERMISSIONSPOLICY]
[
targetStepIndex
]
to
traversable
,
with
checkForUserCancelation
set
to
true,
sourceSnapshotParams
set
to
sourceSnapshotParams
,
and
initiatorToCheck
set
to
initiatorToCheck
.
The
creating
a
permissions
policy
Apart
from
a
response
the
navigate
algorithm
makes
use
of
algorithm,
session
history
entries
can
be
pushed
or
replaced
via
one
more
mechanism,
the
passed
origin
URL
and
history
update
steps
.
If
The
most
well-known
callers
of
these
steps
are
the
document.domain
history.replaceState()
has
been
used
for
browsingContext
's
container
document
,
then
its
origin
cannot
be
same
origin-domain
and
history.pushState()
APIs,
but
various
other
parts
of
the
with
passed
origin,
because
standard
also
need
to
perform
updates
to
the
active
history
entry
,
and
they
use
these
steps
run
before
the
to
do
so.
The
URL
and
history
update
steps
,
given
a
Document
document
,
a
URL
newURL
,
an
optional
serialized
state
-or-null
serializedData
is
created,
so
it
cannot
itself
yet
have
used
document.domain
(default
null),
and
an
optional
history
handling
behavior
.
Note
that
this
means
that
Permissions
Policy
checks
are
less
permissive
compared
to
doing
a
same
origin
historyHandling
(default
"
replace
"),
are:
check
instead.
See
below
for
some
examples
of
this
in
action.
Let
creationURL
navigable
be
navigationParams
document
's
response
's
URL
node
navigable
.
If
Let
navigationParams
activeEntry
be
navigable
's
request
active
session
history
entry
.
Let newEntry be a new session history entry , with
If
browsingContext
document
's
is
still
on
its
initial
about:blank
Document
,
and
navigationParams
's
history
handling
is
true,
then
set
historyHandling
to
"
replace
",
and
browsingContext
's
active
document
's
origin
is
same
origin-domain
with
navigationParams
's
origin
,
then
do
nothing.
".
This
means
that
both
the
pushState()
on
an
initial
about:blank
Document
,
and
the
new
Document
that
is
about
to
be
created,
will
share
the
same
behaves
as
a
Window
replaceState()
object.
Otherwise:
call.
Let
oacHeader
entryToReplace
be
the
result
of
getting
a
structured
field
value
given
`
activeEntry
if
historyHandling
is
"
Origin-Agent-Cluster
replace
`
and
",
otherwise
null.
If
historyHandling
is
"
item
push
"
from
",
then:
Increment
response
document
's
header
list
history
object
's
index
.
Let
Set
requestsOAC
document
be
true
if
's
history
object
's
length
to
its
index
+
1.
These are temporary best-guess values for immediate synchronous access.
If
oacHeader
serializedData
is
not
null
null,
then
restore
the
history
object
state
given
document
and
oacHeader
newEntry
.
Set
document
[0]
's
URL
to
newURL
.
Since
this
is
the
boolean
neither
a
navigation
true;
otherwise
false.
nor
a
history
traversal
,
it
does
not
cause
a
hashchange
event
to
be
fired.
If
Set
navigationParams
document
's
reserved
environment
latest
entry
is
a
non-secure
context
,
then
set
to
requestsOAC
newEntry
.
Set
navigable
's
active
session
history
entry
to
false.
newEntry
.
Let
agent
traversable
be
the
result
of
obtaining
a
similar-origin
window
agent
given
navigationParams
navigable
's
origin
,
traversable
navigable
.
Append
the
following
session
history
synchronous
navigation
steps
involving
browsingContext
navigable
's
group
,
and
to
requestsOAC
.
traversable
:
Let
Finalize
a
same-document
navigation
given
realm
execution
context
be
traversable
,
navigable
,
newEntry
,
and
entryToReplace
.
Although
both
fragment
navigation
and
the
result
URL
and
history
update
steps
perform
synchronous
history
updates,
only
fragment
navigation
contains
a
synchronous
call
to
update
document
for
history
step
application
.
The
URL
and
history
update
steps
instead
perform
a
few
select
updates
inside
the
above
algorithm,
omitting
others.
This
is
somewhat
of
an
unfortunate
historical
accident,
and
generally
leads
to
web-developer
sadness
about
the
inconsistency.
For
example,
this
means
that
popstate
events
fire
for
fragment
navigations,
but
not
for
history.pushState()
calls.
As
explained
in
the
overview
,
both
navigation
and
traversal
involve
creating
a
new
realm
session
history
entry
given
agent
and
then
attempting
to
populate
its
document
member,
so
that
it
can
be
presented
inside
the
following
customizations:
navigable
.
This
involves
either:
using
an
already-given
response
;
using
the
srcdoc
resource
stored
in
the
session
history
entry
;
or
fetching
.
The
process
has
several
failure
modes,
which
can
either
result
in
doing
nothing
(leaving
the
navigable
on
its
currently-
active
Document
)
or
can
result
in
populating
the
session
history
entry
with
an
error
document
.
For
To
attempt
to
populate
the
global
object,
create
history
entry's
document
for
a
new
session
history
entry
entry
,
given
a
navigable
navigable
,
a
Window
NavigationTimingType
object.
navTimingType
,
a
source
snapshot
params
sourceSnapshotParams
,
a
target
snapshot
params
targetSnapshotParams
,
an
optional
navigation
ID
-or-null
navigationId
(default
null),
an
optional
navigation
params
-or-null
navigationParams
(default
null),
an
optional
string
cspNavigationType
(default
"
other
"),
an
optional
boolean
allowPOST
(default
false),
and
optional
algorithm
steps
completionSteps
(default
an
empty
algorithm):
For
the
global
Assert
:
this
binding,
use
is
running
in
parallel
.
Assert
:
if
browsingContext
navigationParams
is
non-null,
then
navigationParams
's
WindowProxy
response
object.
is
non-null.
Let
topLevelCreationURL
currentBrowsingContext
be
creationURL
.
navigable
's
active
browsing
context
.
Let
topLevelOrigin
documentResource
be
navigationParams
entry
's
origin
document
state
's
resource
.
If
browsingContext
navigationParams
is
not
a
top-level
browsing
context
,
null,
then:
Let
If
parentEnvironment
documentResource
be
is
a
string,
then
set
browsingContext
navigationParams
's
container
to
the
result
of
creating
navigation
params
from
a
srcdoc
resource
's
relevant
settings
object
.
given
entry
,
navigable
,
targetSnapshotParams
,
navigationId
,
and
navTimingType
.
Otherwise, if both of the following are true:
Set
topLevelCreationURL
to
parentEnvironment
entry
's
top-level
creation
URL
.
is
a
fetch
scheme
;
and
Set
topLevelOrigin
documentResource
to
is
null,
or
parentEnvironment
allowPOST
is
true
and
documentResource
's
top-level
origin
.
request
body
is
not
failure
Set
up
a
window
environment
settings
object
then
set
navigationParams
to
the
result
of
creating
navigation
params
by
fetching
with
given
creationURL
entry
,
realm
execution
context
navigable
,
navigationParams
's
reserved
environment
,
sourceSnapshotParams
,
topLevelCreationURL
targetSnapshotParams
,
cspNavigationType
,
navigationId
,
and
topLevelOrigin
navTimingType
.
This
Otherwise,
if
entry
's
URL
's
scheme
is
the
usual
case,
where
the
not
a
fetch
scheme
,
then
set
navigationParams
to
a
new
non-fetch
scheme
navigation
params
,
with
To
create
navigation
params
from
a
srcdoc
resource
given
a
session
history
entry
navigationParams
and
entry
,
a
Document
navigable
newDocument
.
When
a
user
agent
is
required
to
do
this,
it
must
queue
navigable
,
a
global
task
target
snapshot
params
on
the
networking
task
source
,
given
the
relevant
global
object
targetSnapshotParams
,
a
navigation
ID
of
the
-or-null
navigationId
,
and
a
Document
NavigationTimingType
object
of
the
current
entry
(not
the
new
one),
to
run
the
following
steps:
navTimingType
:
Let
sessionHistory
documentResource
be
navigationParams
entry
's
browsing
context
document
state
's
session
history
resource
.
Let
unloadTimingInfo
response
be
a
new
document
unload
timing
info
.
response
with
about:srcdoc
Content-Type
`,
`
text/html
`)
»
Let
previousDocument
responseOrigin
be
the
result
of
determining
the
origin
given
sessionHistory
response
's
current
URL
,
targetSnapshotParams
's
sandboxing
flags
,
null,
and
entry
's
document
state
's
origin
.
Let
previousDocument
coop
with
be
a
new
cross-origin
opener
policy
.
Let
unloadTimingInfo
coopEnforcementResult
and
be
a
new
cross-origin
opener
policy
enforcement
result
whose
needs
a
browsing
context
group
switch
is
false,
would
need
a
browsing
context
group
switch
due
to
report-only
is
false,
url
is
newDocument
response
's
relevant
global
object
.
If
this
instance
of
the
navigation
URL
,
origin
algorithm
is
canceled
while
this
step
is
running
the
unload
a
document
algorithm,
then
the
unload
a
document
responseOrigin
,
cross-origin
opener
policy
algorithm
must
be
allowed
to
run
to
completion,
but
this
instance
of
the
is
coop
,
and
current
context
is
navigation
source
algorithm
must
not
run
beyond
this
step.
(In
particular,
for
instance,
the
cancelation
of
this
algorithm
does
not
abort
any
event
dispatch
or
script
execution
occurring
as
part
of
unloading
the
document
or
its
descendants.)
is
false.
If
Let
newDocument
policyContainer
's
event
loop
be
the
result
of
determining
navigation
params
policy
container
is
not
given
previousDocument
response
's
event
loop
URL
,
then
the
user
agent
may
unload
previousDocument
entry
in
parallel
's
document
state
's
history
policy
container
,
In
that
case,
the
user
agent
should
set
null,
unloadTimingInfo
navigable
to
's
container
document
's
policy
container
,
and
null.
If
Return
a
new
navigation
params
,
with
This algorithm mutates entry .
Assert : this is running in parallel .
Let
oldDocument
documentResource
be
sessionHistory
entry
's
current
entry
document
state
's
document
resource
.
Let request be a new request , with
document
"
include
"
manual
"
navigate
"
If documentResource is a POST resource , then:
Set
request
's
method
to
`
POST
`.
Set
request
set
's
body
to
navigationParams
documentResource
's
history
handling
request
body
.
"
Set
`
Content-Type
"
`
to
documentResource
's
request
content-type
in
request
's
header
list
.
Let
If
newEntry
be
a
new
session
history
entry
's
document
state
whose
URL
's
reload
pending
is
true,
then
set
newDocument
request
's
URL
and
reload-navigation
flag
.
Otherwise,
if
entry
's
document
state
's
ever
populated
is
true,
then
set
newDocument
.
Some
browsers
copy
over
the
serialized
state
request
's
history-navigation
flag
.
If
sessionHistory
sourceSnapshotParams
's
current
entry
in
cases
where
its
URL
has
transient
activation
equals
is
true,
then
set
request
's
user-activation
that
of
to
true.
If
newDocument
,
but
this
is
inconsistent.
See
issue
#6213
navigable
's
container
for
more
discussion
on
this.
is
non-null:
If
the
newDocument
navigable
's
URL
requires
storing
the
policy
container
in
history
has
a
browsing
context
scope
origin
,
then
set
newEntry
request
's
policy
container
origin
to
that
browsing
context
scope
origin
.
Set
navigationParams
request
's
policy
destination
and
initiator
type
to
navigable
's
container
's
local
name
.
Insert
Let
newEntry
response
into
be
null.
Let
sessionHistory
responseOrigin
after
its
current
entry
.
be
null.
Traverse
the
history
to
Let
newEntry
fetchController
be
null.
Let coopEnforcementResult be a new cross-origin opener policy enforcement result , with
If
Let
newDocument
finalSandboxFlags
's
URL
requires
storing
the
policy
container
in
history
,
then
be
an
empty
sandboxing
flag
set
.
Let
newEntry
responsePolicyContainer
's
policy
container
to
be
null.
Let
navigationParams
responseCOOP
's
be
a
new
cross-origin
opener
policy
container
.
Append
Let
newEntry
locationURL
to
sessionHistory
.
be
null.
Traverse
the
history
to
Let
newEntry
.
currentURL
be
request
's
current
URL
.
The
navigation
algorithm
has
now
matured
.
Let
commitEarlyHints
be
null.
While true:
If
request
's
reserved
client
for
is
not
null
and
newDocument
.
To
try
to
scroll
to
currentURL
's
origin
is
not
the
fragment
for
a
Document
same
as
document
,
perform
the
following
steps
in
parallel
:
request
's
reserved
client
's
creation
URL
's
origin
,
then:
Wait
Run
the
environment
discarding
steps
for
an
implementation-defined
request
's
reserved
client
.
Set
request
's
reserved
client
amount
of
time.
(This
is
intended
to
allow
the
user
agent
null.
Set
commitEarlyHints
to
optimize
the
user
experience
null.
Preloaded
links
from
early
hint
headers
remain
in
the
face
of
performance
concerns.)
Queue
preload
cache
after
a
global
task
same
origin
on
redirect,
but
get
discarded
when
the
networking
task
source
given
redirect
is
cross-origin.
If
document
request
's
relevant
global
object
reserved
client
to
run
these
steps:
is
null,
then:
Let topLevelCreationURL be currentURL .
Let topLevelOrigin be null.
If
document
navigable
has
no
parser,
or
its
parser
has
stopped
parsing
,
or
the
user
agent
has
reason
to
believe
the
user
is
no
longer
interested
in
scrolling
to
the
fragment
not
a
top-level
traversable
,
then
abort
these
steps.
then:
Let parentEnvironment be navigable 's parent 's active document 's relevant settings object .
Set
topLevelCreationURL
to
the
fragment
given
in
document
parentEnvironment
's
top-level
creation
URL
.
If
this
does
not
find
an
indicated
part
of
the
document
,
then
try
Set
topLevelOrigin
to
scroll
parentEnvironment
's
top-level
origin
.
Set
request
's
reserved
client
to
the
fragment
a
new
environment
for
whose
id
is
a
unique
opaque
string,
target
browsing
context
is
document
.
7.11.2
Page
load
processing
model
for
HTML
files
navigable
's
active
browsing
context
,
creation
URL
When
an
HTML
document
is
to
be
loaded
,
given
navigation
params
currentURL
,
top-level
creation
URL
is
navigationParams
topLevelCreationURL
,
and
top-level
origin
is
topLevelOrigin
.
The
created
environment's
active
service
worker
is
set
in
the
user
agent
must
queue
a
task
Handle
Fetch
on
algorithm
during
the
networking
task
source
fetch
if
the
request
URL
matches
a
service
worker
registration.
[SW]
to:
Let
document
be
If
the
result
of
creating
and
initializing
a
Document
object
should
navigation
request
of
type
be
blocked
by
Content
Security
Policy?
given
request
and
cspNavigationType
is
"
",
then
set
response
to
a
network
error
and
break
.
[CSP]
html
",
"
text/html
Blocked
Set
navigationParams
.
response
to
null.
Create
an
HTML
parser
and
associate
it
with
the
If
document
.
Each
task
that
the
networking
task
source
places
on
the
task
queue
while
fetching
runs
must
fetchController
is
null,
then
fill
set
fetchController
to
the
parser's
input
byte
stream
result
of
fetching
request
,
with
the
fetched
bytes
processEarlyHintsResponse
set
to
processEarlyHintsResponse
,
processResponse
set
to
processResponse
,
and
cause
the
HTML
parser
useParallelQueue
set
to
perform
the
appropriate
processing
of
the
input
stream.
true.
The
first
task
that
Let
processEarlyHintsResponse
be
the
networking
task
source
following
algorithm
given
a
response
places
on
earlyResponse
:
If
commitEarlyHints
is
null,
then
set
commitEarlyHints
to
the
task
queue
while
fetching
runs
must
process
link
result
of
processing
early
hint
headers
given
document
,
earlyResponse
and
navigationParams
request
's
response
,
and
"
media
",
after
the
task
has
been
procesed
by
the
HTML
parser
reserved
client
.
Let processResponse be the following algorithm given a response fetchedResponse :
Set response to fetchedResponse .
Otherwise,
process
the
next
manual
redirect
converts
bytes
into
characters
for
use
in
the
tokenizer
.
fetchController
.
This
process
relies,
in
part,
on
character
encoding
information
found
will
result
in
calling
the
real
Content-Type
metadata
processResponse
of
the
resource;
we
supplied
above,
during
our
first
iteration
through
the
computed
type
is
not
used
for
this
purpose.
loop,
and
thus
setting
response
.
Navigation
handles
redirects
manually
as
navigation
is
the
networking
task
source
given
only
place
in
the
newly-created
web
platform
that
cares
for
redirects
to
URLs
and
such.
Document
mailto:
Wait
until
either
response
is
non-null,
or
navigable
's
relevant
global
object
ongoing
navigation
changes
to
run
no
longer
equal
navigationId
.
If
the
following
steps:
latter
condition
occurs,
then
abort
fetchController
,
and
return.
Otherwise, proceed onward.
Call
If
navigationParams
request
's
process
response
end
of
body
with
is
null,
then
set
navigationParams
entry
's
response
.
document
state
's
resource
to
null.
Fetch unsets the body for particular redirects.
Have
the
parser
process
Set
responsePolicyContainer
to
the
implied
EOF
character,
which
eventually
causes
result
of
creating
a
load
policy
container
from
a
fetch
response
given
response
and
request
's
reserved
client
.
After
creating
Set
finalSandboxFlags
to
the
Document
union
of
targetSnapshotParams
's
sandboxing
flags
and
responsePolicyContainer
's
CSP
list
's
CSP-derived
sandboxing
flags
.
Set
responseOrigin
to
the
session
history
with
result
of
determining
the
new
page
origin
given
navigationParams
response
and
the
newly-created
Document
's
URL
,
finalSandboxFlags
,
entry
's
document
state
.
's
initiator
origin
,
and
null.
If navigable is a top-level traversable , then:
When
faced
with
displaying
an
XML
file
inline,
provided
navigation
params
Set
navigationParams
responseCOOP
and
a
string
type
,
user
agents
must
follow
the
requirements
defined
in
XML
and
Namespaces
in
XML
,
XML
Media
Types
,
DOM
,
and
other
relevant
specifications
to
create
and
initialize
the
result
of
obtaining
a
Document
object
cross-origin
opener
policy
document
,
given
"
xml
",
type
,
response
and
navigationParams
.
They
must
also
create
a
corresponding
XML
parser
request
's
reserved
client
.
[XML]
[XMLNS]
[RFC7303]
[DOM]
The
first
task
that
Set
coopEnforcementResult
to
the
networking
task
source
places
on
result
of
enforcing
the
task
queue
while
fetching
runs
must
process
link
headers
response's
cross-origin
opener
policy
given
document
,
navigable
's
active
browsing
context
,
navigationParams
request
's
response
URL
,
responseOrigin
,
responseCOOP
,
coopEnforcementResult
and
request
's
referrer
.
If
sandboxFlags
is
not
empty
and
responseCOOP
's
value
is
not
"
media
unsafe-none
",
after
the
task
has
been
procesed
by
the
XML
parser
then
set
response
to
an
appropriate
network
error
and
break
.
At
the
time
of
writing,
the
XML
specification
community
had
not
actually
yet
specified
how
XML
and
the
DOM
interact.
The
actual
HTTP
headers
and
other
metadata,
not
the
headers
as
mutated
or
implied
by
the
algorithms
given
This
results
in
this
specification,
are
the
ones
that
must
be
used
when
determining
the
character
encoding
according
a
network
error
as
one
cannot
simultaneously
provide
a
clean
slate
to
a
response
using
cross-origin
opener
policy
and
sandbox
the
rules
given
in
the
above
specifications.
Once
the
character
encoding
is
established,
the
document's
character
encoding
must
be
set
result
of
navigating
to
that
character
encoding.
response.
Then,
with
document
,
the
user
agent
must
update
the
session
history
with
the
new
page
given
If
navigationParams
response
and
is
not
a
network
error
,
document
.
User
agents
may
do
this
before
the
complete
document
has
been
parsed
(thus
achieving
incremental
rendering
),
navigable
is
a
child
navigable
,
and
must
do
this
before
any
scripts
are
to
be
executed.
When
no
more
bytes
are
available,
the
user
agent
must
queue
result
of
performing
a
global
task
on
the
networking
task
source
cross-origin
resource
policy
check
given
with
document
navigable
's
relevant
global
object
container
document
to
call
's
origin
,
navigationParams
navigable
's
process
response
end
of
body
container
document
with
's
relevant
settings
object
,
navigationParams
request
's
destination
,
response
.
Once
parsing
,
and
true
is
complete,
the
user
agent
must
blocked
,
then
set
document
response
's
navigation
id
to
null.
a
network
error
and
break
.
For
HTML
documents
this
is
reset
when
parsing
Here
we're
running
the
cross-origin
resource
policy
check
against
the
parent
navigable
rather
than
navigable
itself.
This
is
complete,
after
firing
because
we
care
about
the
load
event.
Error
messages
from
same-originness
of
the
parse
process
(e.g.,
XML
namespace
well-formedness
errors)
may
be
reported
inline
by
mutating
embedded
content
against
the
Document
.
parent
context,
not
the
navigation
source.
When
a
plain
text
document
is
to
be
loaded,
provided
navigation
params
Set
navigationParams
locationURL
and
a
string
to
type
,
the
user
agent
must
queue
a
task
on
the
networking
task
source
response
's
location
URL
to:
given
currentURL
's
fragment
.
If locationURL is failure or null, then break .
Let
Assert
:
document
locationURL
be
the
result
of
creating
and
initializing
is
a
Document
object
given
"
html
",
type
,
and
navigationParams
.
URL
.
Set
document
entry
's
parser
cannot
change
the
mode
flag
serialized
state
to
true.
null.
Set
Let
document
oldDocState
be
entry
's
mode
to
"
no-quirks
".
document
state
.
Create
an
HTML
parser
and
associate
it
with
the
Set
entry
's
document
.
Act
as
if
the
tokenizer
had
emitted
a
start
tag
token
with
the
tag
name
"pre"
followed
by
a
single
U+000A
LINE
FEED
(LF)
character,
and
switch
the
HTML
parser
state
's
tokenizer
to
the
PLAINTEXT
a
new
document
state
.
Each
task
that
the
networking
task
source
places
on
the
task
queue
while
fetching
runs
must
then
fill
the
parser's
input
byte
stream
,
with
the
fetched
bytes
and
cause
the
HTML
parser
For
the
page
has
finished
parsing,
navigation
case,
only
entry
referenced
oldDocState
,
which
was
created
early
in
the
user
agent
must
navigate
algorithm
.
So
for
navigations,
this
is
functionally
just
an
update
to
entry
's
document
state
.
For
the
traversal
case,
it's
possible
adjacent
session
history
with
the
new
page
entries
given
also
reference
navigationParams
oldDocState
,
in
which
case
they
will
continue
doing
so
even
after
we've
updated
entry
and
the
newly-created
Document
.
's
document
state
.
User
agents
may
add
content
to
The
setup
is
given
by
the
following
Jake
diagram
:
| 0 | 1 | 2 | 3 |
---|---|---|---|---|
| /a | /a#foo | /a#bar | /b |
When
a
resource
with
Also
assume
that
the
type
multipart/x-mixed-replace
document
state
is
to
be
loaded
shared
by
the
entries
in
steps
0,
1,
and
2
has
a
browsing
context
null
document
,
the
user
agent
must
parse
the
resource
using
the
rules
for
multipart
types.
[RFC2046]
i.e.,
bfcache
This
algorithm
is
passed
navigation
params
,
but
it's
unclear
how
exactly
to
use
them.
not
in
play.
For
each
body
part
obtained
from
the
resource,
the
user
agent
must
run
process
a
navigate
response
using
the
new
body
part
and
Now
consider
the
same
browsing
context
,
with
history
handling
set
scenario
where
we
traverse
back
to
"
replace
"
if
a
previous
body
part
from
step
2,
but
this
time
when
fetching
/a
,
the
same
resource
resulted
in
a
creating
and
initializing
server
responds
with
a
`
`
header
pointing
to
Document
Location
/c
.
That
is,
locationURL
points
to
/c
object
,
and
otherwise
using
the
same
setup
as
the
navigate
attempt
that
caused
so
we
have
reached
this
section
to
be
invoked
in
step
instead
of
breaking
out
of
the
first
place.
loop.
For
In
this
case,
we
replace
the
purposes
document
state
of
algorithms
processing
these
body
parts
as
if
they
were
complete
stand-alone
resources,
the
user
agent
must
act
as
if
there
were
no
more
bytes
for
those
resources
whenever
session
history
entry
occupying
step
2,
but
we
do
not
replace
the
boundary
following
document
state
of
the
body
part
is
reached.
entries
occupying
steps
0
and
1.
The
resulting
Jake
diagram
looks
like
this:
| 0 | 1 | 2 | 3 |
---|---|---|---|---|
top
| /a | /a#foo | /c#bar | /b |
When
an
image,
video,
or
audio
resource
is
to
be
loaded,
provided
navigation
params
navigationParams
and
Note
that
we
perform
this
replacement
even
if
we
end
up
in
a
string
type
,
the
user
agent
should:
Let
document
be
redirect
chain
back
to
the
result
of
creating
and
initializing
a
original
URL,
for
example
if
Document
/c
object
given
"
itself
had
a
`
html
Location
",
type
,
and
navigationParams
.
Set
document
's
mode
`
header
pointing
to
"
.
Such
a
case
would
end
up
like
so:
no-quirks
".
Append
an
html
element
to
document
.
Append
/a
| 0 | 1 | 2 | 3 |
---|---|---|---|---|
top
| /a | /a#foo | /a#bar | /b |
If locationURL 's scheme is not an HTTP(S) scheme , then:
Append
an
element
Set
host
element
entry
for
the
media,
as
described
below,
's
document
state
's
resource
to
the
null.
element.
Break
.
Set
the
appropriate
attribute
of
the
element
host
element
,
as
described
below,
currentURL
to
the
address
of
the
image,
video,
or
audio
resource.
locationURL
.
Process
link
headers
given
document
,
Set
navigationParams
entry
's
response
,
and
"
media
".
URL
to
currentURL
.
The
element
host
element
to
create
for
the
media
is
the
element
given
in
the
table
below
in
By
the
second
cell
end
of
the
row
whose
first
cell
describes
the
media.
The
appropriate
attribute
to
set
is
the
one
given
by
the
third
cell
this
loop
we
will
be
in
that
same
row.
one
of
these
scenarios:
Type
locationURL
is
failure,
because
of
media
Element
for
the
media
Appropriate
attribute
Image
img
src
an
unparseable
`
Location
Video
video
`
header.
src
locationURL
is
null,
either
because
response
is
a
network
error
Audio
audio
or
because
we
successfully
fetched
a
non-
network
error
HTTP(S)
response
with
no
`
Location
src
`
header.
Then,
the
user
agent
must
act
as
if
it
had
stopped
parsing
.
After
creating
the
Document
locationURL
is
a
URL
object,
but
potentially
before
the
page
has
finished
fully
loading,
the
user
agent
must
update
the
session
history
with
the
new
page
a
non-
HTTP(S)
given
scheme
.
If
navigationParams
locationURL
and
the
newly-created
Document
is
a
URL
.
whose
scheme
is
not
a
fetch
scheme
,
then
return
a
new
non-fetch
scheme
navigation
params
,
with
At
this
point,
host
element
,
e.g.,
to
link
to
a
style
sheet,
to
provide
a
script,
to
give
the
document
a
title
request
's
current
URL
,
or
to
make
is
the
media
autoplay
.
When
no
more
bytes
are
available,
last
URL
in
the
user
agent
must
queue
redirect
chain
with
a
global
task
fetch
on
the
networking
task
source
scheme
given
the
newly-created
Document
before
redirecting
to
a
non-
fetch
scheme
URL
.
It
is
this
URL
's
relevant
global
object
origin
that
will
be
used
as
the
initiator
origin
for
navigations
to
call
navigationParams
's
process
response
end
of
body
non-
fetch
scheme
with
navigationParams
's
response
URLs
.
If any of the following are true:
response is a network error ;
When
locationURL
is
failure;
or
locationURL
is
a
resource
that
requires
an
external
resource
to
be
rendered
URL
whose
scheme
is
a
fetch
scheme
then return null.
We
allow
redirects
to
be
loaded,
provided
navigation
params
non-
fetch
scheme
URLs
,
but
redirects
to
fetch
scheme
URLs
that
aren't
HTTP(S)
are
treated
like
network
errors.
Assert
:
navigationParams
locationURL
is
null
and
a
string
type
,
the
user
agent
should:
response
is
not
a
network
error
.
Let
document
resultPolicyContainer
be
the
result
of
creating
and
initializing
a
Document
object
determining
navigation
params
policy
container
given
"
html
",
type
,
and
navigationParams
.
Set
document
response
's
mode
to
"
no-quirks
".
Mark
URL
,
document
entry
as
being
a
plugin
's
document
Append
an
html
state
element
to
's
history
policy
container
,
document
sourceSnapshotParams
's
source
policy
container
,
null,
and
responsePolicyContainer
.
Append
Return
a
new
navigation
params
,
with
An
element
of
the
has
a
browsing
context
scope
origin
if
its
Document
,
or
attributes
to
the
embed
element,
e.g.
to
link
to
a
style
sheet
or
to
give
the
document
's
node
navigable
is
a
title
top-level
traversable
.
If
the
or
if
all
of
its
Document
's
ancestor
navigables
all
have
active
sandboxing
flag
set
documents
whose
origins
are
the
same
origin
as
the
element's
node
document
's
origin
.
If
an
element
has
its
sandboxed
plugins
a
browsing
context
flag
set,
scope
origin
,
then
its
value
is
the
synthesized
embed
origin
element
will
fail
to
render
of
the
content
element's
node
document
.
This definition is broken and needs investigation to see what it was intended to express: see issue #4703 .
To
load
processing
model
for
inline
content
that
doesn't
have
a
DOM
document
given
navigation
params
When
the
user
agent
is
to
display
a
user
agent
page
inline,
provided
a
browsing
context
navigationParams
,
source
snapshot
params
browsingContext
sourceSnapshotParams
,
and
origin
initiatorOrigin
,
perform
the
user
agent
should:
following
steps.
They
return
a
Document
or
null.
Let
navigationParams
type
be
a
new
navigation
params
whose
request
the
computed
type
is
null,
of
navigationParams
's
response
is
null,
origin
is
.
If
the
user
agent
has
been
configured
to
process
resources
of
the
given
type
using
some
mechanism
other
than
rendering
the
content
in
a
new
opaque
origin
navigable
,
final
sandboxing
flag
set
then
skip
this
step.
Otherwise,
if
the
type
is
one
of
the
following
types:
text/css
Document
text/plain
text/vtt
"
multipart/x-mixed-replace
To
navigate
to
"
multipart/x-mixed-replace
document
,
given
application/pdf
"
text/pdf
"
Otherwise, proceed onward.
If
historyHandling
An
explicitly
supported
XML
MIME
type
is
not
"
an
XML
MIME
type
for
which
the
user
agent
is
configured
to
use
an
external
application
to
render
the
content,
or
for
which
the
user
agent
has
dedicated
processing
rules.
For
example,
a
web
browser
with
a
built-in
Atom
feed
viewer
would
be
said
to
explicitly
support
the
replace
application/atom+xml
",
then
remove
all
the
entries
in
browsingContext
's
session
history
MIME
type.
An
explicitly
supported
JSON
MIME
type
is
a
JSON
MIME
type
after
the
current
entry
.
(If
for
which
the
current
entry
user
agent
is
configured
to
use
an
external
application
to
render
the
last
entry
in
content,
or
for
which
the
session
history,
then
no
entries
are
removed.)
user
agent
has
dedicated
processing
rules.
This
doesn't
necessarily
have
to
affect
In
both
cases,
the
external
application
or
user
agent's
user
interface.
Remove
any
tasks
queued
by
agent
will
either
display
the
history
traversal
task
source
that
are
associated
with
any
Document
content
inline
objects
directly
in
browsingContext
navigationParams
's
top-level
browsing
context
's
document
family
navigable
,
or
hand
it
off
to
external
software
.
Both
happen
in
the
steps
below.
Traverse
Otherwise,
the
history
to
document's
type
is
such
that
the
new
entry,
with
historyHandling
resource
will
not
affect
navigationParams
set
's
navigable
,
e.g.,
because
the
resource
is
to
historyHandling
.
This
will
scroll
be
handed
to
the
fragment
given
in
what
an
external
application
or
because
it
is
now
the
document's
URL
an
unknown
type
that
will
be
processed
as
a
download
.
Invoke
WebDriver
BiDi
fragment
navigated
Hand-off
to
external
software
with
given
browsingContext
,
and
a
new
WebDriver
BiDi
navigation
status
whose
id
is
navigationParams
's
response
,
navigationId
,
url
is
navigationParams
's
navigable
,
resource
navigationParams
's
url
final
sandboxing
flag
set
,
sourceSnapshotParams
's
has
transient
activation
,
and
status
is
"
initiatorOrigin
.
Return null.
For
both
navigation
and
traversal,
once
we
have
an
idea
of
where
we
want
to
head
to
in
the
scrolling
fails
because
session
history,
much
of
the
relevant
ID
has
not
yet
been
parsed,
then
work
comes
about
in
applying
that
notion
to
the
original
navigation
traversable
navigable
algorithm
will
take
care
of
and
the
scrolling
instead,
as
relevant
Document
.
For
navigations,
this
work
generally
occurs
toward
the
last
few
steps
end
of
its
update
the
session
history
with
process;
for
traversals,
it
is
the
new
page
algorithm.
beginning.
When
Ensuring
a
traversable
ends
up
at
the
user
agent
right
session
history
step
is
required
to
scroll
to
particularly
complex,
as
it
can
involve
coordinating
across
multiple
navigable
descendants
of
the
fragment
traversable,
populating
them
in
parallel,
and
then
synchronizing
back
up
to
ensure
everyone
has
the
indicated
part
same
view
of
the
document
,
if
any,
result.
This
is
being
rendered
,
the
user
agent
must
either
change
the
scrolling
position
of
the
document
using
the
following
algorithm,
or
perform
some
other
action
such
that
further
complicated
by
the
indicated
part
existence
of
the
document
synchronous
same-document
navigations
being
mixed
together
with
cross-document
navigations,
and
how
web
pages
have
come
to
have
certain
relative
timing
expectations.
A
changing
navigable
continuation
state
is
brought
used
to
store
information
during
the
user's
attention.
If
there
is
no
indicated
part,
or
if
apply
the
indicated
part
is
not
being
rendered
,
then
history
step
algorithm,
allowing
parts
of
the
user
agent
must
do
nothing.
The
aforementioned
algorithm
to
continue
only
after
other
parts
have
finished.
It
is
as
follows:
a
struct
with:
Document
To
apply
the
document
history
step
non-negative
integer
step
to
a
traversable
navigable
for
the
traversable
,
with
optional
boolean
Document
checkForUserCancelation
(default
false),
optional
source
snapshot
params
-or-null
.
[CSSOMVIEW]
sourceSnapshotParams
(default
null),
and
optional
navigable
Otherwise:
initiatorToCheck
:
sourceSnapshotParams and initiatorToCheck are always either both given or both not given. They are usually not given, as most callers do not need the extra checks on the navigation initiator that they cause. (Possibly because the caller has already performed such checks themselves.)
Let
Assert
:
This
is
running
within
target
traversable
be
element
that
is
the
indicated
part
of
the
document
's
session
history
traversal
queue
.
Set
Let
targetStep
be
the
Document
's
target
element
result
of
getting
the
used
step
to
given
target
traversable
and
step
.
Run
the
ancestor
details
revealing
algorithm
on
If
target
.
initiatorToCheck
is
given,
then:
Run
the
ancestor
hidden-until-found
revealing
algorithm
on
Assert
:
target
.
sourceSnapshotParams
is
not
null.
Scroll
For
each
target
navigable
into
view
,
with
of
get
all
navigables
whose
current
session
history
entry
will
change
or
reload
:
if
behavior
initiatorToCheck
set
is
not
allowed
by
sandboxing
to
"auto",
navigate
block
navigable
set
to
"start",
and
given
inline
set
to
"nearest".
[CSSOMVIEW]
sourceSnapshotParams
,
then
return.
Run
the
focusing
steps
for
Let
target
,
with
navigablesCrossingDocuments
be
the
Document
's
viewport
result
of
getting
all
navigables
that
might
experience
a
cross-document
traversal
as
the
given
fallback
target
traversable
and
targetStep
.
Move
the
sequential
focus
navigation
starting
point
to
If
target
.
The
indicated
part
of
the
document
checkForUserCancelation
is
true,
and
the
one
that
the
fragment
,
if
any,
identifies.
The
semantics
of
the
fragment
in
terms
result
of
mapping
it
to
a
node
checking
if
unloading
is
defined
by
the
specification
that
defines
the
MIME
type
used
by
the
Document
(for
example,
the
processing
of
fragments
for
XML
MIME
types
user-canceled
given
navigablesCrossingDocuments
given
traversable
and
targetStep
is
the
responsibility
of
RFC7303).
[RFC7303]
true,
then
return.
Some
algorithms
check
if
unloading
is
also
a
target
element
for
each
Document
user-canceled
,
which
is
used
in
defining
as
a
prerequisite
to
modifying
the
:target
pseudo-class
and
is
updated
by
history
tree.
Those
algorithms
will
set
checkForUserCancelation
to
false
when
calling
this
algorithm
to
avoid
performing
the
above
algorithm.
It
is
initially
null.
check
twice.
It
might
not
be
followed
correct
to
determine
what
the
indicated
part
of
the
document
is.
block
on
beforeunload
results
here.
This
may
have
observable
consequences.
Let
fragment
changingNavigables
be
the
document's
URL
result
of
get
all
navigables
whose
current
session
history
entry
will
change
or
reload
's
fragment
.
given
traversable
and
targetStep
.
If
Let
fragment
nonchangingNavigablesThatStillNeedUpdates
is
the
empty
string,
then
be
the
indicated
part
result
of
the
document
getting
all
navigables
that
only
need
history
object
length/index
update
is
the
top
of
the
document;
return.
given
traversable
and
targetStep
.
If
find
a
potential
indicated
element
For
each
with
fragment
navigable
returns
non-null,
then
the
return
value
is
the
indicated
part
of
the
document
;
return.
changingNavigables
:
Let
fragmentBytes
targetEntry
be
the
result
of
percent-decoding
getting
the
target
history
entry
given
fragment
navigable
and
targetStep
.
Let
Set
decodedFragment
navigable
be
the
result
of
running
UTF-8
decode
without
BOM
's
current
session
history
entry
on
to
fragmentBytes
targetEntry
.
If
find
a
potential
indicated
element
with
Set
decodedFragment
navigable
returns
non-null,
then
the
return
value
is
the
indicated
part
of
the
document
's
ongoing
navigation
;
return.
to
"
traversal
".
If
Let
decodedFragment
totalChangeJobs
is
an
ASCII
case-insensitive
match
for
the
string
top
,
then
the
indicated
part
of
be
the
document
size
is
the
top
of
the
document;
return.
changingNavigables
.
There
is
no
indicated
part
of
the
document
.
To
find
a
potential
indicated
element
given
a
string
Let
fragment
,
run
these
steps:
completedChangeJobs
be
0.
If
there
is
an
element
in
the
document
tree
that
has
Let
changingNavigableContinuations
be
an
ID
empty
queue
equal
of
changing
navigable
continuation
states
.
This
queue
is
used
to
split
the
operations
on
fragment
,
then
return
changingNavigables
into
two
parts.
Specifically,
changingNavigableContinuations
holds
data
for
the
first
such
element
in
tree
order
second
part
.
If
there
is
an
For
each
navigable
of
changingNavigables
,
queue
a
global
task
element
in
on
the
document
tree
navigation
and
traversal
task
source
that
has
a
name
of
navigable
's
active
window
attribute
whose
value
is
equal
to
fragment
,
then
return
run
the
first
such
element
steps:
This
set
of
steps
are
split
into
two
parts
to
allow
synchronous
navigations
to
be
processed
before
documents
unload.
State
is
stored
in
tree
order
changingNavigableContinuations
for
the
second
part
.
Return
null.
7.11.10
History
traversal
Let
displayedEntry
be
navigable
's
active
session
history
entry
.
To
traverse
the
history
to
a
Let
targetEntry
be
navigable
's
current
session
history
entry
.
Let changingNavigableContinuation be a changing navigable continuation state with:
If
entry
displayedEntry
is
targetEntry
and
targetEntry
's
document
state
's
reload
pending
is
null,
false,
then:
Assert
:
Set
historyHandling
changingNavigableContinuation
is
"
's
update-only
to
true.
Enqueue changingNavigableContinuation on changingNavigableContinuations .
Abort these steps.
This case occurs due to a synchronous navigation which already updated the active session history entry .
Let
request
oldOrigin
be
a
new
request
whose
URL
is
entry
targetEntry
's
URL
document
state
's
origin
.
If
explicitHistoryNavigation
targetEntry
's
document
is
true,
then
set
null,
or
request
targetEntry
's
history-navigation
flag
.
Navigate
document
state
the
browsing
context
's
reload
pending
to
request
with
is
true,
then:
Let
navTimingType
set
to
be
"
"
entry
update
back_forward
and
with
if
targetEntry
's
document
is
null;
otherwise
"
".
historyPolicyContainer
reload
set
to
Let
entry
targetSnapshotParams
's
policy
container
.
The
navigation
must
be
done
using
the
same
source
browsing
context
result
of
snapshotting
target
snapshot
params
as
was
used
the
first
time
given
entry
navigable
.
Let
potentiallyTargetSpecificSourceSnapshotParams
was
created.
The
"
navigate
"
algorithm
reinvokes
this
"traverse"
algorithm
be
sourceSnapshotParams
.
If
potentiallyTargetSpecificSourceSnapshotParams
is
null,
then
set
it
to
complete
the
traversal,
at
which
point
result
of
snapshotting
source
snapshot
params
given
entry
navigable
's
active
document
is
non-null.
.
If
the
resource
was
obtained
using
a
non-idempotent
action,
for
example
a
POST
form
submission,
or
if
the
resource
In
this
case
there
is
no
longer
available,
for
example
because
the
computer
is
now
offline
and
clear
source
of
the
page
wasn't
cached,
navigating
to
it
again
might
not
be
possible.
In
traversal/reload.
We
treat
this
case,
the
navigation
will
result
situation
as
if
navigable
navigated
itself,
but
note
that
some
properties
of
targetEntry
's
original
initiator
are
preserved
in
a
different
page
than
previously;
for
example,
it
might
be
an
error
message
explaining
targetEntry
's
document
state
,
such
as
the
problem
or
offering
to
resubmit
initiator
origin
and
referrer
,
which
will
appropriately
influence
the
form.
navigation.
Return.
Save
persisted
Set
targetEntry
's
document
state
's
reload
pending
to
the
current
entry
.
false.
Let
newDocument
allowPOST
be
entry
targetEntry
's
document
state
's
reload
pending
.
Assert
:
In
parallel
,
attempt
to
populate
the
history
entry's
document
for
newDocument
targetEntry
,
given
navigable
,
potentiallyTargetSpecificSourceSnapshotParams
,
targetSnapshotParams
,
with
allowPOST
set
to
allowPOST
's
is
initial
about:blank
and
completionSteps
is
false,
i.e.,
we
never
traverse
back
set
to
queue
a
global
task
on
the
initial
about:blank
navigation
and
traversal
task
source
Document
given
navigable
's
active
window
to
run
afterDocumentPopulated
.
Otherwise, run afterDocumentPopulated immediately .
In both cases, let afterDocumentPopulated be the following steps:
If
newDocument
targetEntry
is
different
than
the
current
entry
's
document
,
or
is
null,
then
set
historyHandling
changingNavigableContinuation
is
"
entry
update
"
or
"
reload
's
update-only
",
then:
to
true.
This means we tried to populate the document, but were unable to do so, e.g. because of the server returning a 204.
If
newDocument
targetEntry
's
suspended
timer
handles
document
's
origin
is
not
empty
:
oldOrigin
,
then
set
targetEntry
's
serialized
state
to
null.
This clears history state when the origin changed vs a previous load of targetEntry without a redirect occuring. This can happen due to a change in CSP sandbox headers.
If all of the following are true:
Assert
:
newDocument
navigable
's
suspension
time
parent
is
not
zero.
null;
Let
suspendDuration
targetEntry
be
the
current
high
resolution
time
's
document
minus
newDocument
's
suspension
time
.
browsing
context
is
not
an
auxiliary
browsing
context
whose
disowned
is
false;
and
Let
activeTimers
be
newDocument
targetEntry
's
relevant
global
object
document
's
map
of
active
timers
.
For
each
origin
is
not
handle
oldOrigin
in
then
set
newDocument
targetEntry
's
suspended
timer
handles
,
if
document
state
's
navigable
target
name
to
the
empty
string.
Enqueue
activeTimers
changingNavigableContinuation
[
on
handle
]
exists
,
then
increase
changingNavigableContinuations
.
The rest of this job runs later in this algorithm.
Let
activeTimers
navigablesThatMustWaitBeforeHandlingSyncNavigation
[
be
an
empty
set
.
While
handle
completedChangeJobs
]
by
does
not
equal
suspendDuration
.
totalChangeJobs
:
Remove
any
tasks
queued
by
the
If
traversable
's
running
nested
apply
history
traversal
task
source
that
are
associated
with
any
Document
step
is
false,
then:
Set
Let
changingNavigableContinuation
be
the
active
document
result
of
the
browsing
context
dequeuing
to
from
newDocument
changingNavigableContinuations
.
If
entry
changingNavigableContinuation
's
browsing
context
name
is
not
null,
then:
nothing,
then
continue
.
Set
the
browsing
context's
name
to
Let
entry
displayedDocument
be
changingNavigableContinuation
's
browsing
context
name
displayed
document
.
Let
entriesToUpdate
targetEntry
be
all
entries
in
the
session
history
whose
document
's
origin
is
same
origin
as
the
new
active
document
's
origin
and
that
are
contiguous
with
changingNavigableContinuation
's
target
entry
.
.
For
each
Let
entryToUpdate
navigable
of
be
entriesToUpdate
,
set
changingNavigableContinuation
's
navigable
.
Set
entryToUpdate
navigable
's
browsing
context
name
ongoing
navigation
to
null.
This allows new navigations of navigable to start, whereas during the traversal they were blocked.
If
Let
(
newDocument
scriptHistoryLength
,
scriptHistoryIndex
has
any
form
controls
whose
autofill
field
name
is
"
off
",
invoke
)
be
the
reset
algorithm
of
each
result
of
those
elements.
getting
the
history
object
length
and
index
given
traversable
and
targetStep
.
These values might have changed since they were last calculated.
If
Append
newDocument
navigable
's
current
document
readiness
"
complete
",
then
queue
to
navigablesThatMustWaitBeforeHandlingSyncNavigation
.
Once a navigable has reached this point in traversal, additionally queued synchronous navigation steps are likely to be intended to occur after this traversal rather than before it, so they no longer jump the queue. More details can be found here .
Queue
a
global
task
on
the
DOM
manipulation
navigation
and
traversal
task
source
given
newDocument
navigable
's
relevant
global
object
active
window
to
run
the
following
steps:
If
newDocument
changingNavigableContinuation
's
page
showing
update-only
flag
is
true,
then
abort
these
steps.
false,
then:
Update
the
visibility
state
Unload
of
newDocument
displayedDocument
to
"
hidden
".
given
targetEntry
's
document
.
Fire
a
page
transition
event
named
pageshow
at
For
each
newDocument
childNavigable
of
displayedDocument
's
relevant
descendant
navigables
,
queue
a
global
object
task
with
true.
Set
on
the
navigation
and
traversal
task
source
given
newDocument
childNavigable
's
URL
active
window
to
unload
entry
childNavigable
's
URL
active
document
.
Let
hashChanged
be
false,
and
let
Activate
history
entry
oldURL
targetEntry
and
for
newURL
be
null.
navigable
.
If
entry
targetEntry
's
URL
's
fragment
document
is
not
identical
equal
to
displayedDocument
,
then
queue
a
global
task
on
the
current
entry
's
URL
's
fragment
,
navigation
and
traversal
task
source
given
entry
targetEntry
's
document
equals
's
relevant
global
object
to
perform
the
current
entry
following
step.
Otherwise,
continue
onward
to
perform
the
following
step
within
the
currently-queued
task.
Update
document
for
history
step
application
given
targetEntry
's
document
,
then
set
hashChanged
to
true,
set
targetEntry
,
oldURL
changingNavigableContinuation
to
the
current
entry
's
URL
update-only
,
and
set
newURL
to
scriptHistoryLength
,
and
entry
's
URL
.
scriptHistoryIndex
.
If
Increment
historyHandling
completedChangeJobs
.
Let
totalNonchangingJobs
is
"
replace
",
then
remove
be
the
entry
immediately
before
size
of
entry
in
nonchangingNavigablesThatStillNeedUpdates
.
This
step
onwards
deliberately
waits
for
all
the
session
previous
operations
to
complete,
as
they
include
processing
synchronous
navigations
which
will
also
post
tasks
to
update
history
.
length
and
index.
If
Let
entry
completedNonchangingJobs
's
persisted
user
state
is
null,
and
its
URL
's
fragment
is
non-null,
then
scroll
to
the
fragment
.
be
0.
Set
Let
(
scriptHistoryLength
,
scriptHistoryIndex
)
be
the
current
entry
result
of
getting
the
history
object
length
and
index
to
given
entry
traversable
and
targetStep
.
Let
For
each
targetRealm
navigable
be
of
nonchangingNavigablesThatStillNeedUpdates
,
queue
a
global
task
on
the
current
realm
.
navigation
and
traversal
task
source
given
navigable
's
active
window
to
run
the
steps:
Let
state
document
be
null.
navigable
's
active
document
.
If
Set
entry
document
's
serialized
state
is
not
null,
then
set
state
to
StructuredDeserialize
history
object
(
entry
's
serialized
state
,
index
to
targetRealm
).
If
this
throws
an
exception,
catch
it
and
ignore
the
exception.
scriptHistoryIndex
.
Set
newDocument
document
's
History
history
object
object's
state
's
length
to
state
scriptHistoryLength
.
Let
Increment
stateChanged
be
true
if
completedNonchangingJobs
.
Wait
for
newDocument
completedNonchangingJobs
has
a
latest
entry
,
and
that
entry
is
not
to
equal
entry
;
otherwise
let
it
be
false.
totalNonchangingJobs
.
Set
newDocument
traversable
's
latest
entry
current
session
history
step
to
entry
targetStep
.
If
stateChanged
is
true,
then
fire
an
event
named
popstate
To
activate
history
entry
session
history
entry
at
newDocument
entry
's
relevant
global
object
,
using
PopStateEvent
,
with
the
state
for
navigable
attribute
initialized
to
state
.
navigable
:
Restore
Save
persisted
state
from
to
the
navigable
's
active
session
history
entry
.
.
If
Let
hashChanged
newDocument
is
true,
then
queue
a
global
task
on
the
DOM
manipulation
task
source
given
be
newDocument
entry
's
relevant
global
object
to
fire
an
event
named
document
.
at
Assert
:
newDocument
's
relevant
global
object
,
using
is
initial
about:blank
HashChangeEvent
,
with
is
false,
i.e.,
we
never
traverse
back
to
the
initial
about:blank
oldURL
Document
attribute
initialized
to
because
it
always
gets
replaced
when
we
navigate
away
from
it.
Set
oldURL
navigable
and
the
newURL
's
active
session
history
entry
attribute
initialized
to
newURL
entry
.
Make active newDocument .
To
save
persisted
state
get
the
used
step
to
given
a
session
history
entry
traversable
navigable
entry
:
traversable
,
and
a
non-negative
integer
step
,
perform
the
following
steps.
They
return
a
non-negative
integer.
Set
the
scroll
position
data
of
Let
entry
steps
to
contain
be
the
scroll
positions
for
all
result
of
entry
's
document
getting
all
used
history
steps
's
restorable
scrollable
regions
.
within
traversable
.
Optionally,
update
Return
the
greatest
item
in
entry
steps
's
persisted
user
state
to
reflect
any
state
that
the
user
agent
wishes
is
less
than
or
equal
to
step
.
This
caters
for
situations
where
there's
no
session
history
entry
with
step
step
,
due
to
persist,
such
as
the
values
removal
of
form
fields.
a
navigable
.
To
restore
persisted
state
get
the
history
object
length
and
index
from
given
a
session
history
entry
traversable
navigable
entry
:
traversable
,
and
a
non-negative
integer
step
,
perform
the
following
steps.
They
return
a
tuple
of
two
non-negative
integers.
If
Let
entry
steps
's
scroll
restoration
mode
is
"
auto
be
the
result
of
getting
all
used
history
steps
within
traversable
.
Let
entry
scriptHistoryLength
's
scroll
position
data
to
restore
be
the
scroll
positions
size
of
entry
steps
.
Assert
:
steps
's
document
contains
's
restorable
scrollable
regions
.
step
.
The
user
agent
not
restoring
scroll
positions
does
not
imply
It
is
assumed
that
scroll
positions
will
be
left
at
any
particular
value
(e.g.,
(0,0)).
The
actual
scroll
position
depends
on
the
navigation
type
and
step
has
been
adjusted
by
getting
the
user
agent's
particular
caching
strategy.
So
web
applications
cannot
assume
any
particular
scroll
position
but
rather
are
urged
to
set
it
to
what
they
want
it
to
be.
used
step
.
Optionally,
update
other
aspects
Let
scriptHistoryIndex
be
the
index
of
entry
step
's
document
in
sessionSteps
.
Return ( scriptHistoryLength , scriptHistoryIndex ).
To
get
all
navigables
whose
current
session
history
entry
will
change
or
reload
given
a
traversable
navigable
traversable
,
and
its
rendering,
for
instance
values
of
form
fields,
that
a
non-negative
integer
targetStep
,
perform
the
user
agent
had
previously
recorded
in
following
steps.
They
return
a
list
of
navigables
.
Let
entry
results
's
persisted
user
state
be
an
empty
list
.
Let navigablesToCheck be « traversable ».
This
can
even
include
updating
list
is
extended
in
the
loop
below.
dir
For
each
attribute
navigable
of
textarea
elements
or
input
navigablesToCheck
:
Let targetEntry be the result of getting the target history entry given navigable and targetStep .
If
targetEntry
is
in
either
the
Text
not
navigable
's
current
session
history
entry
state
or
the
Search
state,
if
the
persisted
targetEntry
's
document
state
includes
the
directionality
of
user
input
in
such
controls.
Restoring
the
value
of
form
controls
as
part
of
this
process
does
not
fire
any
input
or
change
's
reload
pending
events,
but
can
trigger
the
formStateRestoreCallback
of
form-associated
custom
elements
.
The
restorable
scrollable
regions
of
a
Document
is
true,
then
append
document
navigable
are
to
results
.
If
targetEntry
's
document
is
navigable
's
viewport
document
,
and
all
of
document
targetEntry
's
scrollable
regions
excepting
any
document
state
's
reload
pending
is
false,
then
extend
navigablesToCheck
with
the
child
browsing
contexts
navigables
of
document
navigable
.
Child
browsing
context
Adding
child
navigables
scroll
restoration
is
handled
to
navigablesToCheck
means
those
navigables
will
also
be
checked
by
this
loop.
Child
navigables
are
only
checked
if
the
history
entry
for
those
browsing
contexts'
Document
navigable
's
active
document
s.
will
not
change
as
part
of
this
traversal.
PopStateEvent
Support
in
all
current
engines.
Firefox
4+
Safari
6+
Chrome
4+
Opera
12.1+
Edge
79+
Edge
(Legacy)
12+
Internet
Explorer
10+
Firefox
Android
?
Safari
iOS
?
Chrome
Android
?
WebView
Android
?
Samsung
Internet
?
Opera
Android
12.1+
[Exposed=Window]
interface {
constructor(DOMString type, optional eventInitDict = {});
readonly attribute any ;
};
dictionary {
any state = null;
};
Return
event
results
.
state
Returns
To
get
all
navigables
that
only
need
history
object
length/index
update
given
a
copy
of
traversable
navigable
traversable
,
and
a
non-negative
integer
targetStep
,
perform
the
information
that
was
provided
to
pushState()
following
steps.
They
return
a
list
or
replaceState()
of
navigables
.
Other
navigables
.
The
state
attribute
must
return
the
value
it
was
initialized
to.
It
represents
the
context
information
for
might
not
be
impacted
by
the
event,
or
null,
traversal.
For
example,
if
the
state
represented
response
is
a
204,
the
initial
state
of
currently
active
document
will
remain.
Additionally,
going
'back'
after
a
204
will
change
the
Document
current
session
history
entry
,
but
the
active
session
history
entry
.
will
already
be
correct.
HashChangeEvent
Support
in
all
current
engines.
Firefox
3.6+
Safari
5+
Chrome
8+
Opera
10.6+
Edge
79+
Edge
(Legacy)
12+
Internet
Explorer
8+
Firefox
Android
?
Safari
iOS
5+
Chrome
Android
?
WebView
Android
?
Samsung
Internet
?
Opera
Android
11+
[Exposed=Window]
interface {
constructor(DOMString type, optional eventInitDict = {});
readonly attribute USVString ;
readonly attribute USVString ;
};
dictionary {
USVString oldURL = "";
USVString newURL = "";
};
Let
event
.
oldURL
✔
MDN
results
be
an
empty
list
.
HashChangeEvent/oldURL
Support
Let
navigablesToCheck
be
«
traversable
».
This
list
is
extended
in
all
current
engines.
Firefox
6+
Safari
5.1+
Chrome
8+
Opera
12.1+
Edge
79+
Edge
(Legacy)
12+
Internet
Explorer
No
Firefox
Android
?
Safari
iOS
?
Chrome
Android
?
WebView
Android
?
Samsung
Internet
?
Opera
Android
12.1+
the
loop
below.
For each navigable of navigablesToCheck :
Returns
Let
targetEntry
be
the
URL
result
of
getting
the
session
target
history
entry
that
was
previously
current.
given
event
navigable
and
targetStep
.
newURL
If targetEntry is navigable 's current session history entry and targetEntry 's document state 's reload pending is false, then:
HashChangeEvent/newURL
Append
Support
in
all
current
engines.
Firefox
6+
Safari
5.1+
Chrome
8+
Opera
12.1+
Edge
79+
Edge
(Legacy)
12+
Internet
Explorer
No
Firefox
Android
?
Safari
iOS
?
Chrome
Android
?
WebView
Android
?
Samsung
Internet
?
Opera
Android
12.1+
navigable
to
results
.
Returns
Extend
navigablesToCheck
with
navigable
's
child
navigables
.
Adding
child
navigables
to
navigablesToCheck
means
those
navigables
will
also
be
checked
by
this
loop.
child
navigables
are
only
checked
if
the
URL
navigable
's
active
document
will
not
change
as
part
of
this
traversal.
Return results .
To
get
the
session
target
history
entry
that
is
now
current.
The
oldURL
attribute
must
return
the
value
it
was
initialized
to.
It
represents
context
information
for
the
event,
specifically
the
URL
of
given
a
navigable
navigable
,
and
a
non-negative
integer
step
,
perform
the
following
steps.
They
return
a
session
history
entry
that
was
traversed
from.
.
Let
entries
be
the
URL
result
of
the
getting
session
history
entry
that
was
traversed
to.
7.11.10.4
The
PageTransitionEvent
interface
entries
✔
MDN
for
navigable
.
PageTransitionEvent
Return
the
item
Support
in
all
current
engines.
Firefox
1.5+
Safari
5+
Chrome
4+
Opera
?
Edge
79+
Edge
(Legacy)
12+
Internet
Explorer
11
Firefox
Android
?
Safari
iOS
4+
Chrome
Android
?
WebView
Android
37+
Samsung
Internet
?
Opera
Android
?
[Exposed=Window]
interface {
constructor(DOMString type, optional eventInitDict = {});
readonly attribute boolean ;
};
dictionary {
boolean persisted = false;
};
event
.
persisted
entries
that
has
the
greatest
step
✔
MDN
less
than
or
equal
to
step
.
PageTransitionEvent/persisted
To
see
why
getting
the
target
history
entry
returns
the
entry
with
the
greatest
step
less
than
or
equal
to
the
input
step,
consider
the
following
Jake
diagram
:
0 | 1 | 2 | 3 | |
---|---|---|---|---|
top
| /t | /t#foo | ||
frames[0]
| /i-0-a | /i-0-b |
For
the
pageshow
event,
returns
false
if
input
step
1,
the
page
is
newly
being
loaded
(and
target
history
entry
for
the
load
top
event
will
fire).
Otherwise,
returns
true.
For
navigable
is
the
pagehide
/t
event,
returns
false
if
the
page
entry,
whose
step
is
going
away
for
the
last
time.
Otherwise,
returns
true,
meaning
that
0,
while
the
page
might
be
reused
if
target
history
entry
for
the
user
navigates
back
to
this
page
(if
frames[0]
navigable
is
the
Document
/i-0-b
entry,
whose
step
is
1:
| 0 | 1 | 2 | 3 |
---|---|---|---|---|
top
| /t | /t#foo | ||
frames[0]
| /i-0-a | /i-0-b |
Similarly,
given
the
input
step
3
we
get
the
top
entry
whose
step
is
3,
and
the
frames[0]
entry
whose
step
is
1:
| 0 | 1 | 2 | 3 |
---|---|---|---|---|
| /t | /t#foo | ||
| /i-0-a | /i-0-b |
To
fire
get
all
navigables
that
might
experience
a
page
transition
event
cross-document
traversal
named
eventName
at
a
Window
window
with
given
a
boolean
persisted
,
fire
an
event
traversable
navigable
named
eventName
at
window
traversable
,
using
PageTransitionEvent
,
with
the
persisted
attribute
initialized
to
and
a
non-negative
integer
persisted
targetStep
,
perform
the
cancelable
attribute
initialized
to
true,
the
bubbles
following
steps.
They
return
a
list
attribute
initialized
to
true,
and
of
navigables
.
From
legacy
target
override
flag
traversable
set.
The
values
for
cancelable
and
bubbles
's
session
history
traversal
queue
don't
make
any
sense,
since
canceling
's
perspective,
these
documents
are
candidates
for
going
cross-document
during
the
event
does
nothing
and
it's
traversal
described
by
targetStep
.
They
will
not
possible
to
bubble
past
experience
a
cross-document
traversal
if
the
Window
object.
They
are
set
to
true
status
code
for
historical
reasons.
7.11.11
Loading
documents
A
Document
has
a
completely
loaded
time
(a
time
or
null),
which
their
target
document
is
initially
null.
HTTP
204
No
Content.
A
Document
is
considered
completely
loaded
Note
that
if
its
completely
loaded
time
a
given
navigable
is
non-null.
To
completely
finish
loading
might
experience
a
Document
cross-document
traversal,
this
algorithm
will
return
navigable
document
:
but
not
its
child
navigables
.
Those
would
end
up
unloaded
,
not
traversed.
Assert
:
document
's
browsing
context
is
non-null.
Set
Let
document
results
's
completely
loaded
time
to
the
current
time.
be
an
empty
list
.
Let
container
navigablesToCheck
be
«
document
traversable
's
browsing
context
's
container
.
».
This
will
be
null
in
the
case
where
document
list
is
the
initial
about:blank
Document
extended
in
a
frame
or
iframe
,
since
at
the
point
of
browsing
context
creation
which
calls
this
algorithm,
the
container
relationship
has
not
yet
been
established.
(That
happens
in
a
subsequent
step
of
create
a
new
nested
browsing
context
.)
loop
below.
The
consequence
of
this
is
that
the
following
steps
do
nothing,
i.e.,
we
do
not
fire
an
asynchronous
load
event
on
the
container
element
for
such
cases.
Instead,
a
synchronous
load
For
each
event
is
fired
in
a
special
initial-insertion
case
in
the
shared
attribute
processing
steps
for
iframe
and
frame
elements
.
navigable
of
navigablesToCheck
:
If
Let
container
targetEntry
is
an
iframe
element,
then
queue
an
element
task
on
be
the
DOM
manipulation
task
source
result
of
getting
the
target
history
entry
given
container
navigable
to
run
the
iframe
load
event
steps
given
and
container
targetStep
.
Otherwise,
if
If
container
targetEntry
is
non-null,
then
queue
an
element
task
's
document
on
the
DOM
manipulation
task
source
is
not
navigable
's
document
given
or
container
targetEntry
to
fire
an
event
's
document
state
named
load
's
reload
pending
is
true,
then
append
at
container
navigable
to
results
.
Although
navigable
's
active
history
entry
A
can
change
synchronously,
the
new
entry
will
always
have
the
same
Document
,
so
accessing
navigable
's
document
has
a
salvageable
state,
which
must
initially
be
true,
and
a
page
showing
flag,
which
must
initially
be
false.
The
page
showing
flag
is
used
to
ensure
that
scripts
receive
pageshow
and
pagehide
events
in
a
consistent
manner
(e.g.
that
they
never
receive
two
pagehide
events
in
a
row
without
an
intervening
pageshow
,
or
vice
versa).
reliable.
A
Document
has
a
DOMHighResTimeStamp
Otherwise,
extend
suspension
time
,
initially
0.
navigablesToCheck
with
navigable
's
child
navigables
.
Adding
child
navigables
has
a
list
to
navigablesToCheck
means
those
navigables
will
also
be
checked
by
this
loop.
Child
navigables
are
only
checked
if
the
navigable
's
active
document
will
not
change
as
part
of
suspended
timer
handles
,
initially
empty.
this
traversal.
Return results .
To
prompt
to
unload
,
update
document
for
history
step
application
given
a
Document
object
document
and
optionally
,
a
session
history
entry
recursiveFlag
entry
,
run
these
steps:
a
boolean
doNotReactivate
,
and
integers
scriptHistoryLength
and
scriptHistoryIndex
:
Increase
the
event
loop
's
termination
nesting
level
by
1.
Increase
the
Let
documentIsNew
be
true
if
document
's
unload
counter
latest
entry
by
1.
is
null;
otherwise
false.
Let
event
documentsEntryChanged
be
the
result
of
creating
an
event
using
BeforeUnloadEvent
true
if
document
's
latest
entry
.
is
not
entry
;
otherwise
false.
Initialize
Set
event
document
's
type
attribute
to
beforeunload
history
object
and
its
cancelable
's
index
attribute
true.
to
scriptHistoryIndex
.
Dispatch
event
at
Set
document
's
relevant
global
history
object
.
Decrease
the
event
loop
's
termination
nesting
level
length
by
1.
Let
to
result
be
"
no-prompt
".
scriptHistoryLength
.
If
all
of
the
following
are
true:
documentsEntryChanged
is
true,
then:
Let
oldURL
be
document
's
active
sandboxing
flag
set
does
not
have
its
sandboxed
modals
flag
latest
entry
set
's
URL
.
Set
document
's
relevant
global
object
has
sticky
activation
latest
entry
to
entry
.
Restore
the
history
object
state
given
event
document
and
entry
.
If
documentIsNew
's
canceled
flag
is
set,
or
the
false,
then
fire
an
event
named
returnValue
popstate
attribute
of
at
event
document
is
not
the
empty
string
then
the
user
agent
may
ask
the
user
to
confirm
that
they
wish
to
unload
the
document.
The
message
shown
to
the
user
is
not
customizable,
but
instead
determined
by
the
user
agent.
In
particular,
the
actual
value
of
's
relevant
global
object
,
using
PopStateEvent
,
with
the
attribute
returnValue
state
is
ignored.
The
user
agent
is
encouraged
initialized
to
avoid
asking
the
user
for
confirmation
if
it
judges
that
doing
so
would
be
annoying,
deceptive,
or
pointless.
If
the
user
agent
asks
the
user
for
confirmation,
it
must:
Invoke
WebDriver
BiDi
user
prompt
opened
with
document
's
relevant
global
history
object
,
"
beforeunload
",
and
"".
's
state
.
Pause
Restore
persisted
state
while
waiting
for
the
user's
response.
given
entry
.
If
the
user
confirmed
the
page
navigation,
then
set
result
documentIsNew
is
false,
and
oldURL
's
fragment
is
not
equal
to
"
confirm
";
otherwise
to
"
refuse
".
Invoke
WebDriver
BiDi
user
prompt
closed
entry
's
URL
with
's
fragment
,
then
queue
a
global
task
on
the
DOM
manipulation
task
source
given
document
's
relevant
global
object
and
true
if
result
is
"
confirm
to
fire
an
event
named
hashchange
"
or
false
otherwise.
If
the
at
recursiveFlag
document
is
not
set,
then:
's
relevant
global
object
,
using
HashChangeEvent
,
with
the
Let
oldURL
attribute
initialized
to
the
serialization
of
descendants
oldURL
be
and
the
list
of
newURL
attribute
initialized
to
the
descendant
browsing
contexts
serialization
of
document
.
entry
's
URL
.
For
each
If
browsingContext
documentIsNew
in
descendants
:
is
true,
then:
Let
internalResult
be
the
result
of
calling
prompt
Try
to
unload
scroll
to
the
fragment
for
browsingContext
's
active
document
with
the
recursiveFlag
set.
.
If
internalResult
is
"
refuse
",
then
return
At
this
point
scripts
may
run
for
the
newly-created
document
internalResult
document
.
Otherwise,
if
internalResult
documentsEntryChanged
is
"
confirm
",
set
false
and
result
doNotReactivate
to
is
false,
then
reactivate
internalResult
document
.
Decrease
the
documentsEntryChanged
can
be
false
for
one
of
two
reasons:
either
we
are
restoring
from
bfcache
,
or
we
are
asynchronously
finishing
up
a
synchronous
navigation
which
already
synchronously
set
document
's
unload
counter
by
1.
Return
latest
entry
.
The
result
.
doNotReactivate
argument
distinguishes
between
these
two
cases.
To
unload
restore
the
history
object
state
a
given
Document
document
,
given
an
optional
recursiveFlag
,
a
document
unload
timing
info
-or-null
unloadTimingInfo
(default
null),
and
an
optional
global
object
session
history
entry
newGlobal
entry
:
Increase
the
event
loop
Let
targetRealm
be
document
's
termination
nesting
level
by
one.
relevant
realm
.
Increase
Let
document
state
's
unload
counter
by
1.
be
null.
If
the
user
agent
does
not
intend
to
keep
document
alive
in
a
session
history
entry
(such
that
it
can
be
reused
later
on
history
traversal
),
set
document
's
salvageable
serialized
state
is
not
null,
then
set
state
to
false.
If
StructuredDeserialize
(
document
entry
's
page
showing
flag
is
true:
serialized
state
,
targetRealm
).
If
this
throws
an
exception,
catch
it
and
ignore
the
exception.
Set
document
's
page
showing
history
object
's
state
flag
to
false.
state
.
Fire
To
make
active
a
page
transition
event
named
pagehide
Document
at
document
:
Let
window
be
document
's
relevant
global
object
with
.
Set
document
's
salvageable
browsing
context
's
's
[[Window]]
state.
WindowProxy
Update
the
visibility
state
of
newDocument
internal
slot
value
to
"
hidden
".
window
.
If
unloadTimingInfo
is
not
null,
then
set
Set
unloadTimingInfo
document
's
unload
event
start
time
visibility
state
to
the
current
high
resolution
time
given
newGlobal
,
coarsened
given
document
's
relevant
settings
object
node
navigable
's
cross-origin
isolated
capability
traversable
navigable
's
system
visibility
state
.
If
Set
document
window
's
salvageable
state
is
false,
then
fire
an
event
relevant
settings
object
named
's
execution
ready
flag
.
To
reactivate
a
unload
Document
at
document
's
relevant
global
object
,
with
:
This
algorithm
updates
legacy
target
override
flag
document
set.
after
it
has
come
out
of
bfcache
,
i.e.,
after
it
has
been
made
fully
active
again.
If
For
each
unloadTimingInfo
formControl
is
not
null,
then
set
of
form
controls
in
unloadTimingInfo
document
's
unload
event
end
time
with
an
autofill
field
name
to
of
"
off
",
invoke
the
current
high
resolution
time
reset
algorithm
given
for
newGlobal
,
coarsened
given
formControl
.
If
document
's
relevant
settings
object
suspended
timer
handles
's
cross-origin
isolated
capability
.
is
not
empty
:
Set
Assert
:
document
's
suspension
time
to
is
not
zero.
Let
suspendDuration
be
the
current
high
resolution
time
given
minus
document
's
relevant
global
object
suspension
time
.
Set
Let
activeTimers
be
document
's
suspended
timer
handles
to
the
result
of
getting
the
keys
relevant
global
object
for
the
's
map
of
active
timers
.
Run
any
unloading
document
cleanup
steps
for
For
each
handle
in
document
that
are
defined
by
this
specification
and
other
applicable
specifications
.
If
the
's
suspended
timer
handles
,
if
recursiveFlag
activeTimers
is
not
set,
then:
Let
[
descendants
handle
be
the
list
of
the
descendant
browsing
contexts
of
]
exists
,
then
increase
document
activeTimers
[
handle
]
by
suspendDuration
.
For
each
If
browsingContext
document
in
's
current
document
readiness
is
"
complete
",
and
descendants
:
document
's
page
showing
flag
is
false,
then:
Unload
the
active
document
of
browsingContext
with
the
Set
recursiveFlag
document
set.
's
page
showing
flag
to
true.
If
the
salvageable
state
of
the
active
document
of
browsingContext
is
false,
then
set
Update
the
salvageable
visibility
state
of
document
to
false
also.
"
visible
".
If
document
's
salvageable
Fire
a
page
transition
event
named
at
document
's
state
is
false,
then
discard
pageshow
document
.
Decrease
unload
counter
relevant
global
object
by
1.
with
true.
This
specification
defines
To
try
to
scroll
to
the
following
unloading
document
cleanup
steps
.
Other
specifications
can
define
more.
Given
fragment
for
a
Document
document
:
,
perform
the
following
steps
in
parallel
:
Let
window
be
document
's
relevant
global
object
.
Wait
for
an
implementation-defined
amount
of
time.
(This
is
intended
to
allow
the
user
agent
to
optimize
the
user
experience
in
the
face
of
performance
concerns.)
For
each
WebSocket
object
webSocket
whose
relevant
Queue
a
global
object
is
window
,
make
disappear
task
webSocket
.
If
this
affected
any
WebSocket
on
the
navigation
and
traversal
task
source
objects,
then
set
given
document
's
salvageable
relevant
global
object
state
to
false.
run
these
steps:
If
document
's
salvageable
state
has
no
parser,
or
its
parser
has
stopped
parsing
,
or
the
user
agent
has
reason
to
believe
the
user
is
false,
then:
no
longer
interested
in
scrolling
to
the
fragment
,
then
abort
these
steps.
For
each
EventSource
object
eventSource
whose
relevant
global
object
is
equal
Scroll
to
window
,
forcibly
close
the
fragment
given
eventSource
document
.
Clear
If
window
document
's
map
of
active
timers
.
7.11.12.1
The
BeforeUnloadEvent
interface
✔
MDN
BeforeUnloadEvent
Support
in
all
current
engines.
Firefox
1.5+
Safari
7+
Chrome
30+
Opera
?
Edge
79+
Edge
(Legacy)
12+
Internet
Explorer
4+
Firefox
Android
?
Safari
iOS
?
Chrome
Android
?
WebView
Android
37+
Samsung
Internet
3.0+
Opera
Android
?
[Exposed=Window]
interface {
attribute DOMString ;
};
There
are
no
BeforeUnloadEvent
-specific
initialization
methods.
The
BeforeUnloadEvent
indicated
part
interface
is
a
legacy
interface
which
allows
prompting
to
unload
still
null,
then
try
to
be
controlled
not
only
by
canceling
the
event,
but
by
setting
the
returnValue
attribute
scroll
to
a
value
besides
the
empty
string.
Authors
should
use
the
preventDefault()
method,
or
other
means
of
canceling
events,
instead
of
using
returnValue
fragment
.
The
returnValue
attribute
controls
the
process
of
prompting
to
unload
.
When
the
event
is
created,
the
attribute
must
be
set
to
the
empty
string.
On
getting,
it
must
return
the
last
value
it
was
set
to.
On
setting,
the
attribute
must
be
set
to
the
new
value.
This
attribute
is
a
DOMString
only
for
historical
reasons.
Any
value
besides
the
empty
string
will
be
treated
as
a
request
to
ask
the
user
for
confirmation.
document
.
To
abort
scroll
to
the
fragment
given
a
Document
document
:
Abort
the
active
documents
of
every
child
browsing
context
.
If
this
results
in
any
of
those
Document
objects
having
their
salvageable
state
set
to
false,
then
set
document
's
salvageable
state
to
false
also.
Cancel
any
instances
of
the
fetch
algorithm
in
the
context
of
document
,
discarding
any
tasks
queued
for
them,
and
discarding
any
further
data
received
from
the
network
for
them.
If
this
resulted
in
any
instances
of
the
fetch
algorithm
being
canceled
or
any
queued
tasks
indicated
part
or
any
network
data
getting
discarded,
is
null,
then
set
document
's
salvageable
target
element
state
to
false.
null.
If
Otherwise,
if
document
's
navigation
id
indicated
part
is
non-null,
top
of
the
document
,
then:
Invoke
WebDriver
BiDi
navigation
aborted
with
document
's
browsing
context
,
and
new
WebDriver
BiDi
navigation
status
whose
whose
id
is
Set
document
's
navigation
id
,
status
target
element
is
"
to
null.
",
and
url
Scroll
to
the
beginning
of
the
document
is
for
document
's
URL
.
.
[CSSOMVIEW]
Set
document
's
navigation
id
to
null.
Return.
If
document
has
an
active
parser
,
then:
Otherwise:
Set
Assert
:
document
's
active
parser
was
aborted
indicated
part
to
true.
is
an
element.
Abort
that
parser
Let
target
be
document
's
indicated
part
.
Set
document
's
salvageable
target
element
state
to
false.
User
agents
may
allow
users
to
explicitly
invoke
the
stop
document
loading
for
a
Document
target
.
To
stop
document
loading
given
a
Document
Run
the
ancestor
details
revealing
algorithm
object
on
document
,
run
these
steps:
target
.
Let
browsingContext
be
Run
the
on
document
's
browsing
context
.
target
.
If
Scroll
browsingContext
target
's
active
document
is
not
into
view
,
with
document
,
then
return.
If
there
is
an
existing
attempt
behavior
set
to
navigate
"auto",
browsingContext
block
set
to
"start",
and
document
inline
's
unload
counter
set
to
"nearest".
[CSSOMVIEW]
is
0,
then
cancel
that
navigation
.
Abort
Run
the
focusing
steps
for
document
.
7.11.14
The
`
target
,
with
the
X-Frame-Options
Document
`
header
's
viewport
✔
MDN
as
the
fallback
target
.
Headers/X-Frame-Options
Move
the
sequential
focus
navigation
starting
point
Support
in
all
current
engines.
Firefox
4+
Safari
4+
Chrome
4+
Opera
10.5+
Edge
79+
Edge
(Legacy)
12+
Internet
Explorer
8+
Firefox
Android
Yes
Safari
iOS
Yes
Chrome
Android
Yes
WebView
Android
?
Samsung
Internet
?
Opera
Android
?
to
target
.
The
`
X-Frame-Options
`
HTTP
response
header
is
a
legacy
way
of
controlling
whether
and
how
a
A
Document
may
be
loaded
inside
's
indicated
part
is
the
one
that
its
URL
's
fragment
identifies,
or
null
if
the
fragment
does
not
identify
anything.
The
semantics
of
the
fragment
in
terms
of
mapping
it
to
a
child
browsing
context
.
It
node
is
obsoleted
defined
by
the
specification
that
defines
the
MIME
type
used
by
the
frame-ancestors
Document
CSP
directive,
which
provides
more
granular
control
over
the
same
situations.
It
was
originally
defined
in
HTTP
Header
Field
X-Frame-Options
,
but
(for
example,
the
definition
and
processing
model
here
supersedes
that
document.
[CSP]
of
fragments
[RFC7034]
for
XML
MIME
types
In
particular,
HTTP
Header
Field
X-Frame-Options
specified
an
`
ALLOW-FROM
`
variant
of
the
header,
but
that
is
not
to
be
implemented.
Per
the
below
processing
model,
if
both
a
CSP
frame-ancestors
responsibility
of
RFC7303).
[RFC7303]
directive
and
an
`
There
is
also
a
target
element
for
each
,
which
is
used
in
defining
the
X-Frame-Options
Document
`
header
are
same
response
,
then
`
X-Frame-Options
:target
`
pseudo-class
and
is
ignored.
updated
by
the
above
algorithm.
It
is
initially
null.
For
web
developers
and
conformance
checkers,
its
value
ABNF
is:
X-Frame-Options
=
"DENY"
/
"SAMEORIGIN"
To
check
a
navigation
response's
adherence
to
`
X-Frame-Options
`
,
given
navigationParams
navigationParams
,
a
browsing
context
browsingContext
,
and
an
origin
HTML
document
destinationOrigin
:
document
,
the
following
processing
model
must
be
followed
to
determine
its
indicated
part
:
If
browsingContext
is
not
a
child
browsing
context
,
then
return
true.
For
each
Let
policy
fragment
of
be
navigationParams
document
's
policy
container
URL
's
CSP
list
:
fragment
.
If
policy
fragment
's
disposition
is
not
"
enforce
",
the
empty
string,
then
continue
.
return
the
special
value
top
of
the
document
.
If
Let
policy
potentialIndicatedElement
's
directive
set
contains
be
the
result
of
finding
a
frame-ancestors
potential
indicated
element
given
document
and
fragment
.
If
potentialIndicatedElement
is
not
null,
then
return
true.
potentialIndicatedElement
.
Let
rawXFrameOptions
fragmentBytes
be
the
result
of
getting,
decoding,
and
splitting
`
X-Frame-Options
percent-decoding
`
from
navigationParams
's
response
's
header
list
.
fragment
.
Let
xFrameOptions
decodedFragment
be
a
new
set
.
the
result
of
running
UTF-8
decode
without
BOM
on
fragmentBytes
.
For
each
Set
value
potentialIndicatedElement
to
the
result
of
rawXFrameOptions
,
append
finding
a
potential
indicated
element
given
value
,
converted
to
ASCII
lowercase
,
to
document
and
xFrameOptions
decodedFragment
.
If
xFrameOptions
potentialIndicatedElement
's
size
is
greater
than
1,
and
not
null,
then
return
xFrameOptions
potentialIndicatedElement
.
If
decodedFragment
contains
is
an
ASCII
case-insensitive
any
of
"
deny
",
"
allowall
",
or
"
match
for
the
string
,
then
return
sameorigin
",
top
false.
The
intention
here
is
to
block
any
attempts
at
applying
`
X-Frame-Options
`
which
were
trying
to
do
something
valid,
but
appear
confused.
This
is
the
only
impact
top
of
the
legacy
`
ALLOWALL
document
.
Return null.
To
find
a
potential
indicated
element
given
a
Document
`
value
on
the
processing
model.
document
and
a
string
fragment
,
run
these
steps:
If
there
is
an
element
in
the
document
tree
whose
root
is
xFrameOptions
document
's
size
and
that
has
an
ID
is
greater
than
1,
equal
to
fragment
,
then
return
true.
This
means
it
contains
multiple
invalid
values,
which
we
treat
the
same
way
as
if
the
header
was
omitted
entirely.
first
such
element
in
tree
order
.
If
there
is
an
a
element
in
the
document
tree
whose
root
is
xFrameOptions
document
[0]
is
"
deny
that
has
a
name
",
attribute
whose
value
is
equal
to
fragment
,
then
return
false.
the
first
such
element
in
tree
order
.
If
Return
null.
To
save
persisted
state
to
a
session
history
entry
xFrameOptions
[0]
is
"
sameorigin
",
then:
entry
:
Let
Set
the
scroll
position
data
of
containerDocument
entry
be
to
contain
the
scroll
positions
for
all
of
browsingContext
entry
's
container
document
's
restorable
scrollable
regions
.
Optionally,
update
containerDocument
entry
is
not
null:
's
persisted
user
state
to
reflect
any
state
that
the
user
agent
wishes
to
persist,
such
as
the
values
of
form
fields.
To restore persisted state from a session history entry entry :
If
containerDocument
entry
's
origin
scroll
restoration
mode
is
not
same
origin
"
auto
",
then
the
user
agent
may
use
with
destinationOrigin
,
then
return
false.
Let
containerBC
be
containerDocument
entry
's
browsing
context
.
Set
containerDocument
scroll
position
data
to
restore
the
scroll
positions
of
containerBC
entry
's
container
document
,
if
containerBC
is
non-null;
otherwise,
null.
Return
true.
's
restorable
scrollable
regions
.
If
we've
reached
this
point
then
we
have
a
lone
invalid
value
(which
could
potentially
The
user
agent
not
restoring
scroll
positions
does
not
imply
that
scroll
positions
will
be
one
left
at
any
particular
value
(e.g.,
(0,0)).
The
actual
scroll
position
depends
on
the
legacy
`
ALLOWALL
`
or
`
ALLOW-FROM
`
forms).
These
are
treated
as
if
navigation
type
and
the
header
were
omitted
entirely.
user
agent's
particular
caching
strategy.
So
web
applications
cannot
assume
any
particular
scroll
position
but
rather
are
urged
to
set
it
to
what
they
want
it
to
be.
The
following
table
illustrates
the
processing
Optionally,
update
other
aspects
of
various
values
entry
's
document
and
its
rendering,
for
instance
values
of
form
fields,
that
the
header,
including
non-conformant
ones:
user
agent
had
previously
recorded
in
entry
's
persisted
user
state
.
This
can
even
include
updating
the
X-Frame-Options
dir
`
Valid
Result
`
DENY
`
✅
embedding
disallowed
`
SAMEORIGIN
`
✅
same-origin
embedding
allowed
`
INVALID
`
❌
embedding
allowed
`
ALLOWALL
`
❌
embedding
allowed
`
ALLOW-FROM=https://example.com/
`
❌
embedding
allowed
(from
anywhere)
The
following
table
illustrates
how
various
non-conformant
cases
involving
multiple
values
are
processed:
`
attribute
of
X-Frame-Options
textarea
`
Result
`
SAMEORIGIN,
SAMEORIGIN
`
same-origin
embedding
allowed
`
SAMEORIGIN,
DENY
`
embedding
disallowed
`
SAMEORIGIN,
`
embedding
disallowed
`
SAMEORIGIN,
ALLOWALL
`
embedding
disallowed
elements
or
`
SAMEORIGIN,
INVALID
`
embedding
disallowed
input
`
ALLOWALL,
INVALID
`
embedding
disallowed
elements
whose
`
ALLOWALL,
`
embedding
disallowed
type
`
INVALID,
INVALID
`
embedding
allowed
The
same
results
are
obtained
whether
the
values
are
delivered
in
a
single
header
whose
value
attribute
is
comma-delimited,
in
either
the
Text
state
or
the
Search
state,
if
the
persisted
state
includes
the
directionality
of
user
input
in
multiple
headers.
such
controls.
Restoring
the
value
of
form
controls
as
part
of
this
process
does
not
fire
any
Refresh
input
`
header
or
change
events,
but
can
trigger
the
The
`
of
form-associated
custom
elements
.Refresh
formStateRestoreCallback
The
restorable
scrollable
regions
`
HTTP
response
header
is
the
HTTP-equivalent
to
of
a
meta
Document
element
with
an
document
are
document
's
viewport
,
and
all
of
document
's
scrollable
regions
excepting
any
navigable
containers
.
http-equiv
Child
navigable
attribute
in
the
Refresh
scroll
restoration
is
handled
as
part
of
state
.
It
takes
restoration
for
the
same
value
session
history
entry
and
works
largely
the
same.
Its
processing
model
is
detailed
in
create
and
initialize
a
for
those
navigables
'
Document
object
.
s.