2023-11-04 21:48:01 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attribute
|
2024-03-21 15:34:01 -03:00
|
|
|
[InvalidValueDefault=anonymous]
|
2023-11-04 21:48:01 -03:00
|
|
|
enum CORSSettingsAttribute {
|
|
|
|
|
"anonymous",
|
|
|
|
|
"use-credentials"
|
|
|
|
|
};
|
2024-05-26 14:58:02 -03: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 05:45:05 -03:00
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes
|
|
|
|
|
[MissingValueDefault=auto, InvalidValueDefault=auto]
|
|
|
|
|
enum FetchPriorityAttribute {
|
|
|
|
|
"high",
|
|
|
|
|
"low",
|
|
|
|
|
"auto"
|
|
|
|
|
};
|