mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-23 09:48:45 +00:00
Fixes #6325 The JavaScript on the HTML Spec site that caused the crash is: window.location.hash.substr(1) Of course, window.location.hash can be the empty string. The spec allows for calling substr(1) on an empty string, but our partial implementation wasn't handling it properly.