* Added HTMLScriptElement

This commit is contained in:
michael 2018-05-16 07:18:29 +00:00
parent 0f5ce3c78c
commit 19c70fdcad

View File

@ -2441,6 +2441,19 @@ Type
property sandbox : string read FSandbox;
end;
TJSHTMLScriptElement = Class external name 'HTMLScriptElement' (TJSHTMLElement)
Public
type_ : String;
src : String;
charset : string;
async : boolean;
defer : boolean;
text : string;
noModule : boolean;
end;
TJSXMLHttpRequestEventTarget = class external name 'XMLHttpRequestEventTarget' (TJSEventTarget)
end;