diff --git a/fetch.bs b/fetch.bs index 5598cb1d5..daafe5d45 100644 --- a/fetch.bs +++ b/fetch.bs @@ -1150,6 +1150,12 @@ Unless stated otherwise, it is unset.
This flag is for exclusive use by HTML's navigate algorithm. [[!HTML]] +
A request has an associated +history-navigation flag. +Unless stated otherwise, it is unset. + +
This flag is for exclusive use by HTML's navigate algorithm. [[!HTML]] +
A request has an associated @@ -4976,6 +4982,7 @@ interface Request { readonly attribute DOMString integrity; readonly attribute boolean keepalive; readonly attribute boolean isReloadNavigation; + readonly attribute boolean isHistoryNavigation; readonly attribute AbortSignal signal; [NewObject] Request clone(); @@ -5136,6 +5143,10 @@ initially a new {{AbortSignal}} object.
request . isReloadNavigation
request . isHistoryNavigation
+ request . signal
If any of init's members are present, then: @@ -5254,6 +5266,8 @@ constructor must run these steps:
Unset request's reload-navigation flag. +
Unset request's history-navigation flag. +
Set request's referrer to
"client
"
@@ -5534,6 +5548,10 @@ is set, and false otherwise.
invoked, must return true if the context object's request's
reload-navigation flag is set, and false otherwise.
+
The isHistoryNavigation
attribute's getter, when
+invoked, must return true if the context object's request's
+history-navigation flag is set, and false otherwise.
+
The signal
attribute's getter must return the
associated signal.