Bug in Chrome with javascript open existing page in new window and then copy text

In my version of Chrome “Version 128.0.6613.85 (Official Build) (64-bit)” I can get it to crash to desktop every time I open an existing page using JavaScript and modify it using “document.write.” I have submitted the issue to Google Chrome via About. Just wondering if its repeatable or can be solved another way.

Create a blankpage.html, say with just the html/head/body tags in, but seems it can be anything. Then from another page run this JavaScript:

var myWin = open("blankpage.html"); 
myWin.document.open();
myWin.document.write("<html><body>Hello</body></html>");
myWin.document.close(); 

Now in the new window that opens, highlight the ‘Hello’ text and do a copy (CTRL+C) on it.
This results in my Chrome Browser crashing to desktop every time. Seems to work ok in Edge.