mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
LibWeb: Implement HTMLIFrameElement.loading
This commit is contained in:
committed by
Andreas Kling
parent
9ee061ea14
commit
600daea544
Notes:
sideshowbarker
2024-07-18 05:01:22 +09:00
Author: https://github.com/jamierocks Commit: https://github.com/SerenityOS/serenity/commit/600daea544 Pull-request: https://github.com/SerenityOS/serenity/pull/24425 Reviewed-by: https://github.com/tcl3
@@ -1,4 +1,5 @@
|
||||
#import <HTML/HTMLElement.idl>
|
||||
#import <HTML/Scripting/Fetching.idl>
|
||||
#import <DOM/Document.idl>
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/iframe-embed-object.html#htmliframeelement
|
||||
@@ -16,7 +17,7 @@ interface HTMLIFrameElement : HTMLElement {
|
||||
[CEReactions, Reflect] attribute DOMString width;
|
||||
[CEReactions, Reflect] attribute DOMString height;
|
||||
[FIXME, CEReactions] attribute DOMString referrerPolicy;
|
||||
[FIXME, CEReactions] attribute DOMString loading;
|
||||
[CEReactions, Enumerated=LazyLoadingAttribute, Reflect] attribute DOMString loading;
|
||||
readonly attribute Document? contentDocument;
|
||||
readonly attribute WindowProxy? contentWindow;
|
||||
Document? getSVGDocument();
|
||||
|
||||
Reference in New Issue
Block a user