LibWeb: Add HTMLImageElement.src and HTMLImageElement.alt

These are reflecting attributes! :^)
This commit is contained in:
Andreas Kling 2020-07-24 13:11:04 +02:00
commit ea451cea6a
Notes: sideshowbarker 2024-07-19 04:38:46 +09:00

View file

@ -1,3 +1,6 @@
interface HTMLImageElement : HTMLElement { interface HTMLImageElement : HTMLElement {
[Reflect] attribute DOMString src;
[Reflect] attribute DOMString alt;
} }