* Add progress element, patch from Silvio Clecio (bug ID 0034975)

This commit is contained in:
michael 2019-02-02 12:07:50 +00:00
parent 9d14376259
commit f1851f5d83

View File

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