ladybird/Userland/Libraries/LibWeb/HTML/Scripting/Fetching.idl
2024-05-27 17:34:59 +02:00

13 lines
391 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"
};