diff options
author | Andreas Kling <kling@serenityos.org> | 2022-10-03 14:54:27 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-10-03 17:22:08 +0200 |
commit | 0455af4441d64ab0ec5e9f6cabaa94f5de8ac02e (patch) | |
tree | a260576c7c6580480619acd14d0eafd59e9d6fd5 /Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl | |
parent | 9749eda09fde78c3cd54cecb90191cb2556eae8f (diff) | |
download | serenity-0455af4441d64ab0ec5e9f6cabaa94f5de8ac02e.zip |
LibWeb: Implement HTMLImageElement.complete
This was fairly straightforward, although a small part had to be ad-hoc
since we don't yet load images through Fetch.
With this, we can now see annotation labels on deskto.ps :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl index 5b759c9509..339c90fb13 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl @@ -18,4 +18,6 @@ interface HTMLImageElement : HTMLElement { readonly attribute unsigned long naturalWidth; readonly attribute unsigned long naturalHeight; + readonly attribute boolean complete; + }; |