mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 16:27:44 +02:00
* Add progress element, patch from Silvio Clecio (bug ID 0034975)
This commit is contained in:
parent
9d14376259
commit
f1851f5d83
@ -2376,6 +2376,17 @@ Type
|
||||
Function toDataURL(aMimeType : String; aQuality : Double) : String; overload;
|
||||
end;
|
||||
|
||||
TJSHTMLProgressElement = class external name 'HTMLProgressElement' (TJSHTMLElement)
|
||||
private
|
||||
Fposition: Double; external name 'position';
|
||||
Flabels: TJSNodeList; external name 'labels';
|
||||
public
|
||||
max: Double;
|
||||
value: Double;
|
||||
property position: Double read Fposition;
|
||||
property labels: TJSNodeList read Flabels;
|
||||
end;
|
||||
|
||||
// Opaque objects
|
||||
TJSCanvasGradient = class external name 'CanvasGradient' (TJSObject)
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user