mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
LibWeb: Add IDL enum for lazy loading attribute
This commit is contained in:
parent
f989ebe180
commit
c484625631
Notes:
sideshowbarker
2024-07-17 10:08:28 +09:00
Author: https://github.com/jamierocks Commit: https://github.com/SerenityOS/serenity/commit/c484625631 Pull-request: https://github.com/SerenityOS/serenity/pull/24425 Reviewed-by: https://github.com/tcl3
1 changed files with 7 additions and 0 deletions
|
@ -4,3 +4,10 @@ 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"
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue