HTMLMediaElement: crossOrigin property
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2016.
TheHTMLMediaElement.crossOrigin property is the CORS setting for this media element. SeeCORS settings attributes for details.
In this article
Value
A string of a keyword specifying the CORS mode to use when fetching the resource. Possible values are:
anonymousor the empty string ("")Requests sent by the
HTMLMediaElementwill use thecorsmode and thesame-origincredentials mode. This means that CORS is enabled and credentials are sentif the resource is fetched from the same origin from which the document was loaded.use-credentialsRequests sent by the
HTMLMediaElementwill use thecorsmode and theincludecredentials mode. All resources requests by the element will use CORS, regardless of what domain the fetch is from.
If thecrossOrigin property is specified with any other value, it is the same as specifying as theanonymous.
If thecrossOrigin property is not specified, the resource is fetched without CORS (theno-corsmode and thesame-origincredentials mode).
Specifications
| Specification |
|---|
| HTML> # dom-media-crossorigin> |