diff --git a/spec/index.html b/spec/index.html index 10cf325..28c18e0 100644 --- a/spec/index.html +++ b/spec/index.html @@ -447,6 +447,7 @@
l
checked
- Layer on/off status
referrerpolicy
- Referrer policy for fetches initiated by the element
+ crossorigin
- A CORS settings attribute, specifies how the element handles crossorigin requests.
Tag omission in text/html:
Neither tag is omissible
Allowed ARIA role attribute values:
@@ -462,7 +463,8 @@ 4.1.2 The l
readonly attribute boolean disabled;
attribute boolean hidden;
readonly attribute LegendLink[] legendLinks;
- attribute DOMString referrerpolicy;
+ attribute DOMString referrerPolicy;
+ attribute DOMString? crossOrigin;
};
interface LegendLink {
@@ -629,7 +631,7 @@ 4.2.1 Authoring
This map can be created with the following markup:
<map zoom="11" lat="48.85591" lon="2.3469543" width="640" height="300">
- <layer label="Open Street Map" src="https://example.com/mapml/osm/" checked></layer>
+ <layer label="OpenStreetMap" src="https://example.com/mapml/osm/" checked crossorigin></layer>
</map>
@@ -652,8 +654,8 @@ 4.2.1 Authoring
}
</style>
<map zoom="15" lat="45.398043" lon="-75.70683" width="640" height="300" projection="CBMTILE">
- <layer label="Canada Base Map" src="https://example.com/mapml/cbmt/" checked></layer>
- <layer label="CanVec+ 031G" src="https://example.com/mapml/canvec/50k/features/" class="transparency"></layer>
+ <layer label="Canada Base Map" src="https://example.com/mapml/cbmt/" checked crossorigin></layer>
+ <layer label="CanVec+ 031G" src="https://example.com/mapml/canvec/50k/features/" crossorigin class="transparency"></layer>
</map>