ladybird/Libraries/LibWeb/HTML/HTMLScriptElement.idl
Luke e2e6b03a45 LibWeb: Add support for reflected boolean values
Also throw in some missing reflected DOMString values
2020-11-09 09:51:22 +01:00

9 lines
262 B
Text

interface HTMLScriptElement : HTMLElement {
[Reflect] attribute DOMString src;
[Reflect] attribute DOMString type;
[Reflect=nomodule] attribute boolean noModule;
[Reflect] attribute boolean defer;
[Reflect] attribute DOMString integrity;
}