Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Internet Explorer has stopped working" when selecting F12 Developer tools for a specific site

Internet explorer 11 (latest) crashes with the message "Internet Explorer has stopped working" when opening developer tools and and I have my site open. Chrome, Edge doesn't give the problem.

All the functionality in my site works correctly.

This is only with my site (intranet site)

enter image description here

When I debug it I get

Unhandled exception at 0x5B514C32 (mshtml.dll) in iexplore.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x06EC2FFC).

How can I troubleshoot what in my site causes this behavior?

I have tried resetting Internet Explorer and disabling all add-ins but because the issue is not to do with other sites I can only think the issue is to do someone specific in the html/ javascript in my site.

like image 381
greay Avatar asked May 16 '16 08:05

greay


People also ask

How do I enable F12 Developer Tools in Internet Explorer?

Launch IE. Enter WebGUI URL in IE address bar and login. 2. Once you are ready to re-create the problem, click Tools -> F12 Developer Tools to turn on Developer Tools.

How do I turn off F12 in Internet Explorer?

In the left pane, click/tap on to expand User Configuration, Administrative Templates, Windows Components, Internet Explorer, and Toolbars. 3. In the right pane, double click/tap on Turn off Developer Tools.

Can I still use Internet Explorer after June 2022?

On June 15, 2022, the Internet Explorer 11 desktop application is no longer be supported on certain versions of Windows 10*. Customers are encouraged to move to Microsoft Edge, which provides support for legacy and modern websites and apps.


1 Answers

In my case I had a CSS (font-awesome) file included twice on the layout.cshtml file causing IE to crash every time I press F12.

Removing the duplicate fixed it:

<link rel="stylesheet" type="text/css" href="~/Content/themes/base/css/font-awesome.min.css" />
like image 72
Noobie3001 Avatar answered Sep 19 '22 11:09

Noobie3001