I've had code on my website for some time now that when a certain option is selected from the select control on a form it calls the window.print() method on the page. It pops up the print preview dialog, and when either print or cancel is clicked, the Aw Snap error ends up being displayed in the page. In testing sometimes it will work the first time you try it, but generates the error upon subsequent selections. Here is an example:
<select id="testselect" onchange="window.print();">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</select>
This example worked fine when I was on chrome 78.xxx, but upon updating to the latest version 79.0.3945.88, I get the Aw Snap error.
I'm guessing that this is a chrome bug, but any ideas for a work around would be greatly appreciated.