Bookmarks - HTML export - Write CRLF on Windows systems and LF on others.

This commit is contained in:
janekptacijarabaci 2017-08-15 16:17:58 +02:00 committed by Roy Tam
commit 17a44dcd1d

View file

@ -1047,7 +1047,12 @@ BookmarkExporter.prototype = {
},
_writeLine: function (aText) {
this._write(aText + "\n");
if (Services.sysinfo.getProperty("name") == "Windows_NT") {
// Write CRLF line endings on Windows
this._write(aText + "\r\n");
} else {
this._write(aText + "\n");
}
},
_writeHeader: function () {