ট্যাগ লাগানো প্রশ্নগুলো দেখানো হচ্ছে। সমস্ত প্রশ্ন দেখান
  • সংরক্ষণ করা হয়েছে

Remove ad blocker

Hi. I play free sweepstakes and continually get messages that I am using an ad blocker. Need some help where to find the ad blocker so I can disable or remove it. Thanks … (আরও পড়ুন)

Hi. I play free sweepstakes and continually get messages that I am using an ad blocker. Need some help where to find the ad blocker so I can disable or remove it. Thanks

Asked by John Odgers 7 মাসসমূহ আগে

Last reply by Paul 7 মাসসমূহ আগে

  • সংরক্ষণ করা হয়েছে

Webassembly.compile() doesn't support SharedArrayBuffer in 138

Hello, as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a S… (আরও পড়ুন)

Hello,

as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a SharedArrayBuffer, is this intended or it will be fixed in the future? Follows a simple test case. Kind reagards.


--- index.html --- <title>Example</title> <script> let instance = undefined; async function loadWasm() { try { const response = await fetch('./sum.wasm'); const buffer = await response.arrayBuffer(); const sharedBuffer = new SharedArrayBuffer(buffer.byteLength); const tmpView = new Uint8Array(sharedBuffer); tmpView.set(new Uint8Array(buffer)); const module = await WebAssembly.compile(sharedBuffer); instance = await WebAssembly.instantiate(module); } catch (error) { alert(`failed to compile in wasm: ${error.message}`); } } loadWasm(); function testWasm() { if (instance) alert(`sum 1 + 2 = ${instance.exports.add(1, 2)}`); else alert('invalid instance, failed to compile'); } </script> <button onclick="testWasm()">Press to run wasm function (sum)</button> --- ---

--- sum.wat --- (to convert into .wasm using: wat2wasm sum.wat -o sum.wasm) (module (func $add (param $lhs i32) (param $rhs i32) (result i32) local.get $lhs local.get $rhs i32.add) (export "add" (func $add)) ) --- ---

Asked by Fra 8 মাসসমূহ আগে

Last reply by TyDraniu 8 মাসসমূহ আগে

  • সংরক্ষণ করা হয়েছে

javascript

Hi How can i enable javascript in firefox anndroid on samsung tablet? Regards

Asked by acadie53 8 মাসসমূহ আগে

Last reply by TyDraniu 8 মাসসমূহ আগে