diff --git a/fetch.bs b/fetch.bs index 63c0b6f62..db79f521c 100644 --- a/fetch.bs +++ b/fetch.bs @@ -772,18 +772,20 @@ the empty string,

A request has an associated destination, which is the empty string, +"audio", "document", "embed", "font", "image", "manifest", -"media", "object", "report", "script", "serviceworker", "sharedworker", "style", +"track", +"video", "worker", or "xslt". Unless stated otherwise it is the empty string. @@ -830,7 +832,7 @@ the empty string, HTML's <embed> "audio" - "media" + "audio" media-src HTML's <audio> @@ -869,12 +871,12 @@ the empty string, HTML's <link rel=stylesheet>, CSS' @import "track" - "media" + "track" media-src HTML's <track> "video" - "media" + "video" media-src HTML's <video> element @@ -1106,10 +1108,10 @@ Unless stated otherwise, it is "basic".


A subresource request is a request -whose destination is "font", -"image", "manifest", "media", -"script", "style", "xslt", or the empty -string. +whose destination is "audio", "font", +"image", "manifest", "script", +"style", "track", "video", +"xslt", or the empty string.

A potential-navigation-or-subresource request is a request whose @@ -4627,7 +4629,7 @@ dictionary RequestInit { }; enum RequestType { "", "audio", "font", "image", "script", "style", "track", "video" }; -enum RequestDestination { "", "document", "embed", "font", "image", "manifest", "media", "object", "report", "script", "serviceworker", "sharedworker", "style", "worker", "xslt" }; +enum RequestDestination { "", "audio", "document", "embed", "font", "image", "manifest", "object", "report", "script", "serviceworker", "sharedworker", "style", "track", "video", "worker", "xslt" }; enum RequestMode { "navigate", "same-origin", "no-cors", "cors" }; enum RequestCredentials { "omit", "same-origin", "include" }; enum RequestCache { "default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached" };