Files
ladybird/Libraries/LibWeb/DOM/HTMLImageElement.idl
Andreas Kling ea451cea6a LibWeb: Add HTMLImageElement.src and HTMLImageElement.alt
These are reflecting attributes! :^)
2020-07-24 13:12:14 +02:00

7 lines
125 B
Plaintext

interface HTMLImageElement : HTMLElement {
[Reflect] attribute DOMString src;
[Reflect] attribute DOMString alt;
}