mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-13 16:49:22 +02:00
* HTMLStyleElement
This commit is contained in:
parent
d6c9909688
commit
d3155c2941
@ -490,6 +490,7 @@ TEventListenerEvent = class external name 'EventListener_Event' (TJSObject)
|
||||
property previousElementSibling : TJSElement read FpreviousElementSibling;
|
||||
end;
|
||||
|
||||
|
||||
TJSProcessingInstruction = class external name 'ProcessingInstruction' (TJSCharacterData);
|
||||
|
||||
{ TJSRange }
|
||||
@ -3715,9 +3716,23 @@ TEventListenerEvent = class external name 'EventListener_Event' (TJSObject)
|
||||
TJSHTMLAudioElement = Class external name 'HTMLAudioElement' (TJSHTMLMediaElement)
|
||||
|
||||
end;
|
||||
|
||||
TJSHTMLVideoElement = Class external name 'HTMLVideoElement' (TJSHTMLMediaElement)
|
||||
end;
|
||||
|
||||
{ TJSHTMLStyleElement }
|
||||
|
||||
TJSHTMLStyleElement = class external name 'HTMLStyleElement' (TJSHTMLElement)
|
||||
private
|
||||
FSheet: TJSStyleSheet; external name 'sheet';
|
||||
public
|
||||
media : string;
|
||||
type_ : string; external name 'style';
|
||||
disabled : boolean;
|
||||
property sheet : TJSStyleSheet read FSheet;
|
||||
end;
|
||||
|
||||
|
||||
TJSFormDataEntryValue = String;
|
||||
TJSFormDataEntryValueArray = Array of TJSFormDataEntryValue;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user