rtl: clean up

This commit is contained in:
mattias 2019-01-27 22:01:27 +00:00
parent 01b3be4a07
commit 731dcd8eb2

View File

@ -328,10 +328,9 @@ Type
protocol : string; protocol : string;
search : string; search : string;
username : string; username : string;
procedure assign(aURL : String); procedure assign(aURL : String); overload;
procedure reload(aForce : Boolean); procedure reload(aForce : Boolean);
procedure replace(aURL : String); procedure replace(aURL : String);
function toString : String;
property origin : string read FOrigin; property origin : string read FOrigin;
end; end;
@ -513,7 +512,6 @@ Type
procedure setStartAfter(aStartNode : TJSNode); procedure setStartAfter(aStartNode : TJSNode);
procedure setStartBefore(aStartNode : TJSNode); procedure setStartBefore(aStartNode : TJSNode);
procedure surroundContents(aNode : TJSNode); procedure surroundContents(aNode : TJSNode);
function toString : string;
property collapsed : boolean read FCollapsed; property collapsed : boolean read FCollapsed;
property commonAncestorContainer : TJSNode read FcommonAncestorContainer ; property commonAncestorContainer : TJSNode read FcommonAncestorContainer ;
property endContainer : TJSNode read FendContainer; property endContainer : TJSNode read FendContainer;
@ -607,7 +605,6 @@ Type
procedure deleteFromDocument; procedure deleteFromDocument;
function containsNode(aNode : TJSNode; aPartlyContained : Boolean) : Boolean; function containsNode(aNode : TJSNode; aPartlyContained : Boolean) : Boolean;
procedure setBaseAndExtent(aAnchorNode : TJSNode; aAnchorOffset : NativeInt; aFocusNode : TJSNode; aFocusOffset : NativeInt); procedure setBaseAndExtent(aAnchorNode : TJSNode; aAnchorOffset : NativeInt; aFocusNode : TJSNode; aFocusOffset : NativeInt);
function toString : String;
property anchorNode : TJSNode read FAnchorNode; property anchorNode : TJSNode read FAnchorNode;
property anchorOffset : NativeInt read FAnchorOffset; property anchorOffset : NativeInt read FAnchorOffset;
property focusNode : TJSNode read FFocusNode; property focusNode : TJSNode read FFocusNode;