From d8a4cb18f4fb2f671477cb317216f0db0e5b28be Mon Sep 17 00:00:00 2001 From: Patrick Meenan Date: Fri, 11 Nov 2022 14:24:12 -0500 Subject: [PATCH] Incorporate changes for priority-hints These changes when combined with similar changes to HTML in https://github.com/whatwg/html/pull/8470 obsolete the existing Priority Hints specification https://wicg.github.io/priority-hints/ --- fetch.bs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/fetch.bs b/fetch.bs index 1fdafecd6..7fe91436b 100644 --- a/fetch.bs +++ b/fetch.bs @@ -4145,9 +4145,10 @@ the request. request's internal priority to an implementation-defined object. -

The implementation-defined object could encompass stream weight and - dependency for HTTP/2, and equivalent information used to prioritize dispatch and processing - of HTTP/1 fetches. +

The internal priority implementation-defined object + could encompass stream weight and dependency for HTTP/2, priorities used in + HTTP extensible priorities, and equivalent + information used to prioritize dispatch and processing of HTTP/1 fetches.

  • If request is a subresource request, then: @@ -7084,9 +7085,9 @@ object), initially null. See issue #1254 for defining "full". -

    request . priority +
    request . priority
    Returns the priority of the request, e.g., "high", - "low" or "auto". + "low", or "auto".
    request . clone()

    Returns a clone of request.