19 lines
474 B
HTML
19 lines
474 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head><title>WASM Test</title></head>
|
|
<body>
|
|
<h1>WASM Test Page</h1>
|
|
<div id="output">Loading...</div>
|
|
<script type="module">
|
|
try {
|
|
const mod = await WebAssembly.compileStreaming(
|
|
fetch('/doc-wasm/pkg/doc_wasm_bg.wasm')
|
|
);
|
|
document.getElementById('output').textContent = 'WASM compiled OK! Size: ' + mod.byteLength + ' bytes';
|
|
} catch(e) {
|
|
document.getElementById('output').textContent = 'ERROR: ' + e.message;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|