TadvWebbrowser gives a memoryleak as often as i read an url.

Hi Support,

With TadvWebbrowser (version 1.3.3.0) I get a memoryleak as often as i read an url.
13-20 Bytes: Tstringbuilder x 6, TJsonString x 6)
(Edge webview2loader_x86, version 0.9.515.0 dd 2020-12-18)

I suspect my Code below causes the problem or is there a problem in the component?
How to solve it. (I made it because i want to get the title / Content ot the html page).

procedure TFormPIndex.AdvWebBrowser1NavigateComplete(Sender: TObject;
var Params: TAdvCustomWebBrowserNavigateCompleteParams);
begin
if IsLinkWeb(Params.Url) then
WebBrowserUrlCmbBox.Text:=Params.Url;
if IsLinkWeb(Params.Url) then
begin
AdvWebBrowser1.ExecuteJavascript('function GetHTML(){return document.title;} GetHTML();',
procedure(const AValue: string)
begin
Var_AdvWebBrowser1Title:= Avalue.DeQuotedString('"');
end
);
Userinfo(format('Download Titel:%s (%s)',[Var_AdvWebBrowser1Title,WebBrowserUrlCmbBox.Text]));
WebBrowserJSGetInnerHtml(AdvWebBrowser1);
if TabIsBrowser then Memo1.Lines.text:=TIdURI.URLDecode(Memo1.Lines.text)
end;
end;

Hi,

We have tried this here but could not reproduce the issue by calling only the ExecuteJavaScript. Can you provide us with a full sample demonstrating this?