mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
LibWeb: Add IDL enum for lazy loading attribute
This commit is contained in:
parent
f989ebe180
commit
c484625631
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…
Add table
Reference in a new issue