This new issue is related to this question. I use the following Javascript code to download the content of a textarea on the browser in a text file.
var pom = document.createElement('a');
pom.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(logs));
pom.setAttribute('download', log_file_name);
pom.style.display = 'none';
document.body.appendChild(pom);
pom.click();
document.body.removeChild(pom);
This works fine for small files, but fails when file size exceeds about 1MB or so, with error message "Failed.Network error". Of course, I don't have any network problem because Firefox and Safari work just fine. Clicking "More info" takes me to this page, which has useless information for me. I Google'd the error message and found some info that I tried with no luck. I even reinstalled Chrome, tried Chrome Canary. Nothing worked.
Anyone knows a trick to get Chrome to work as well?