You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -572,8 +582,8 @@ async function instantiateArrayBuffer(binaryFile, imports) {
572
582
573
583
#if ASSERTIONS
574
584
// Warn on some common problems.
575
-
if(isFileURI(wasmBinaryFile)){
576
-
err(`warning: Loading from a file URI (${wasmBinaryFile}) is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing`);
585
+
if(isFileURI(binaryFile)){
586
+
err(`warning: Loading from a file URI (${binaryFile}) is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing`);
Copy file name to clipboardExpand all lines: test/other/codesize/test_codesize_minimal_O0.expected.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -598,8 +598,8 @@ async function instantiateArrayBuffer(binaryFile, imports) {
598
598
err(`failed to asynchronously prepare wasm: ${reason}`);
599
599
600
600
// Warn on some common problems.
601
-
if(isFileURI(wasmBinaryFile)){
602
-
err(`warning: Loading from a file URI (${wasmBinaryFile}) is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing`);
601
+
if(isFileURI(binaryFile)){
602
+
err(`warning: Loading from a file URI (${binaryFile}) is not supported in most browsers. See https://emscripten.org/docs/getting_started/FAQ.html#how-do-i-run-a-local-webserver-for-testing-why-does-my-program-stall-in-downloading-or-preparing`);
0 commit comments