1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

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
parent 3eff6024b1
commit ea451cea6a

View file

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