Browse Source

* Added HTMLScriptElement

michael 7 years ago
parent
commit
19c70fdcad
1 changed files with 13 additions and 0 deletions
  1. 13 0
      packages/rtl/web.pas

+ 13 - 0
packages/rtl/web.pas

@@ -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;