diff --git a/source b/source index eebe3e57f49..d2bc525e972 100644 --- a/source +++ b/source @@ -33670,8 +33670,8 @@ interface HTMLIFrameElement : HTMLElement {
To navigate an iframe
or frame
given an element
element, a URL url, a referrer policy
- referrerPolicy, and an optional string-or-null srcdocString (default
- null):
Let historyHandling be " Navigate element's content
navigable to url using element's node document, with
historyHandling set to historyHandling, referrerPolicy set to referrerPolicy, and documentResource set to srcdocString.HTMLIFrameElement : HTMLElement {
Each Document
has an iframe load in progress flag and a mute
@@ -101407,8 +101408,11 @@ location.href = '#foo';
policy referrerPolicy (default
the empty string), an optional user navigation involvement userInvolvement (default "none
"), and an optional Element
sourceElement (default null):
Element
sourceElement (default null), and an
+ optional boolean initialInsertion (default
+ false):
Let cspNavigationType be "form-submission
" if
@@ -101584,8 +101588,8 @@ location.href = '#foo';
source given navigable's active window to
navigate to a javascript:
URL given navigable,
url, historyHandling, sourceSnapshotParams,
- initiatorOriginSnapshot, userInvolvement, and
- cspNavigationType.
Return.
Assert: historyHandling is "
url, initiatorOrigin, and userInvolvement.
If newDocument is null, then return.
+If newDocument is null:
+ +If initialInsertion is true and targetNavigable's active document's is initial
+ about:blank
is true, then run the iframe load event steps
+ given targetNavigable's container.
Return.
In this case, some JavaScript code was executed, but no new
Document
was created, so we will not perform a navigation.
Navigate an iframe
or frame
given
- element, url, and the empty string.
The frame
element potentially delays the load event.