У меня странное поведение в консоли Firefox, этот код работает:
var mywindow = window.open('', 'PRINT', 'height=400,width=600');
mywindow.document.write('<html><head><title>' + document.title + '</title>');
mywindow.document.write('</head><body >');
mywindow.document.write('<h1>' + "test" + '</h1>');
mywindow.document.write("<p>Ceci est un test</p>");
mywindow.document.write('</body></html>');
но не в моем Firefox WebExtensions. Почему?