Troubleshooting website display or functionality issues in Edge on Windows 11
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
After first registration of services worker then killing and reopening browser - page causes tab to not responding.
Example of page: https://fdp.uat.merchantportal.firstdata.eu/fdpMerchantUI/#/
Chrome works fine, edge too, but only at first visit or after refresh
Troubleshooting website display or functionality issues in Edge on Windows 11
I am experiencing the same issue with Microsoft Edge after recent updates.
Environment details:
I have tried clearing cache, restarting the browser, and even using InPrivate mode, but the issue persists. It looks like the service worker is blocking navigation until it is terminated.
I am posting this here to confirm that the problem is reproducible and not isolated. Hopefully, this additional information helps the Edge team investigate and fix the bug.
Hi,
The tab freeze happens because the service worker takes control after the first registration and intercepts navigation requests incorrectly. When the browser is reopened, the page is loaded under the service worker’s control, and if its fetch handler or activation logic doesn’t return a valid response or gets stuck in a loop the browser waits indefinitely, causing the tab to hang.
The first visit works because the page loads without the service worker controlling it. After refresh or relaunch, the SW is active, and any broken logic in fetch or activate blocks the page.
Adjust the service worker so it doesn’t intercept navigations blindly, add timeouts and error handling, and clear old caches before retesting. I Hope this helps!
It seems that you are experiencing issues with Microsoft Edge where pages using service workers become unresponsive after the initial registration and subsequent browser restarts. This could be related to known issues with service workers in Edge, especially if the service worker is not handling state correctly after being restarted.
To troubleshoot this issue, you might consider the following steps:
These steps may help mitigate the issue you're facing with service workers in Microsoft Edge.
References: