mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-07 08:39:22 +00:00
LibWeb: Implement HTMLImageElement.referrerPolicy
This commit is contained in:
parent
f82c727071
commit
1aa58b6d8c
Notes:
sideshowbarker
2024-07-17 06:40:35 +09:00
Author: https://github.com/jamierocks
Commit: 1aa58b6d8c
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/23
1 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
#import <Fetch/Request.idl>
|
||||||
#import <HTML/HTMLElement.idl>
|
#import <HTML/HTMLElement.idl>
|
||||||
#import <HTML/Scripting/Fetching.idl>
|
#import <HTML/Scripting/Fetching.idl>
|
||||||
|
|
||||||
|
@ -20,7 +21,7 @@ interface HTMLImageElement : HTMLElement {
|
||||||
readonly attribute unsigned long naturalHeight;
|
readonly attribute unsigned long naturalHeight;
|
||||||
readonly attribute boolean complete;
|
readonly attribute boolean complete;
|
||||||
readonly attribute USVString currentSrc;
|
readonly attribute USVString currentSrc;
|
||||||
[FIXME, CEReactions] attribute DOMString referrerPolicy;
|
[CEReactions, Reflect=referrerpolicy, Enumerated=ReferrerPolicy] attribute DOMString referrerPolicy;
|
||||||
[FIXME, CEReactions] attribute DOMString decoding;
|
[FIXME, CEReactions] attribute DOMString decoding;
|
||||||
[CEReactions, Enumerated=LazyLoadingAttribute, Reflect] attribute DOMString loading;
|
[CEReactions, Enumerated=LazyLoadingAttribute, Reflect] attribute DOMString loading;
|
||||||
[CEReactions, Enumerated=FetchPriorityAttribute, Reflect=fetchpriority] attribute DOMString fetchPriority;
|
[CEReactions, Enumerated=FetchPriorityAttribute, Reflect=fetchpriority] attribute DOMString fetchPriority;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue