As ain has pointed out, onmouseenter does not bubble, but as MSDN says,
Unlike the onmouseover event, the onmouseenter event does not bubble. In other words, the onmouseenter event does not fire when the user moves the mouse pointer over elements contained by the object, whereas onmouseover does fire.
So you can use onmouseover:
The event occurs when the user moves the mouse pointer into the object, and it does not repeat unless the user moves the mouse pointer out of the object and then back into it.
procedure MyEvent;
var
Doc: OleVariant;
begin
Doc := Form1.WebBrowser1.Document;
Form1.Label1.Caption := Doc.parentWindow.event.srcElement.outerHTML;
end;
procedure TForm1.Button1Click(Sender: TObject);
var
D3: IHTMLDocument3;
begin
if Supports(WebBrowser1.Document, IHTMLDocument3, D3) then
D3.attachEvent('onmouseover', TEventObject.Create(MyEvent) as IDispatch);
end;