1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00
ladybird/Userland/Libraries/LibWeb/HTML/Scripting/Fetching.idl
2024-06-05 05:42:47 +01:00

21 lines
603 B
Text

// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attribute
[InvalidValueDefault=anonymous]
enum CORSSettingsAttribute {
"anonymous",
"use-credentials"
};
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#lazy-loading-attribute
[MissingValueDefault=eager, InvalidValueDefault=eager]
enum LazyLoadingAttribute {
"lazy",
"eager"
};
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes
[MissingValueDefault=auto, InvalidValueDefault=auto]
enum FetchPriorityAttribute {
"high",
"low",
"auto"
};