Skip to content

Commit bd95d10

Browse files
authored
Re-enable test_preload_file_with_manual_data_download_pthreads under firefox. NFC (#19088)
1 parent c144dfe commit bd95d10

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/manual_download_data.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
Module['downloadedData'] = data;
190190
var jsDownload = download('manual_download_data.js').then(function(data) {
191191
console.log('downloaded js file');
192-
Module['mainScriptUrlOrBlob'] = new Blob([data]);
192+
Module['mainScriptUrlOrBlob'] = new Blob([data], { type: 'application/javascript' });
193193
addScriptToDom(data);
194194
});
195195
});

test/test_browser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,6 @@ def make_main_two_files(path1, path2, nonexistingpath):
422422
'pthreads': (['-pthread', '-sPROXY_TO_PTHREAD', '-sEXIT_RUNTIME'],),
423423
})
424424
@requires_threads
425-
@no_firefox('https://github.com/emscripten-core/emscripten/issues/19080')
426425
def test_preload_file_with_manual_data_download(self, args):
427426
src = test_file('manual_download_data.cpp')
428427

0 commit comments

Comments
 (0)