Abschließend nochmal einen Dank an dich Günther,
das war die fehlende Info.
Hier mein aktualisierter Code, falls es nochmal jemand benötigt. Damit klappt es.
Delphi-Quellcode:
unit Browser;
interface
uses
Winapi.Windows,
Winapi.Messages, System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics,
Vcl.Controls,
Vcl.Forms,
Vcl.Dialogs,
Vcl.OleCtrls, SHDocVw, Common.Classes.Browser.EmulationAdjuster;
type
TForm9 =
class(TForm)
WebBrowser1: TWebBrowser;
procedure FormShow(Sender: TObject);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form9: TForm9;
implementation
{$R *.dfm}
procedure TForm9.FormShow(Sender: TObject);
begin
TBrowserEmulationAdjuster.SetBrowserEmulationDWORD(TBrowserEmulationAdjuster.IE11_Quirks);
WebBrowser1.Navigate('
http://www.heise.de');
end;
end.