2023-11-05 01:48:01 +01:00
|
|
|
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attribute
|
2024-03-21 18:34:01 +00:00
|
|
|
[InvalidValueDefault=anonymous]
|
2023-11-05 01:48:01 +01:00
|
|
|
enum CORSSettingsAttribute {
|
|
|
|
"anonymous",
|
|
|
|
"use-credentials"
|
|
|
|
};
|
2024-05-26 18:58:02 +01:00
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#lazy-loading-attribute
|
|
|
|
[MissingValueDefault=eager, InvalidValueDefault=eager]
|
|
|
|
enum LazyLoadingAttribute {
|
|
|
|
"lazy",
|
|
|
|
"eager"
|
|
|
|
};
|
2024-05-27 09:45:05 +01:00
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes
|
|
|
|
[MissingValueDefault=auto, InvalidValueDefault=auto]
|
|
|
|
enum FetchPriorityAttribute {
|
|
|
|
"high",
|
|
|
|
"low",
|
|
|
|
"auto"
|
|
|
|
};
|