Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Chrome 134
Windows
Desktop
15 days ago
Test name Executions per second
from blob 12362.1 Ops/sec
from native 47125.6 Ops/sec
Tests:
  • from blob

    AخA
     
    (async () => {
      const blob = await (await fetch('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png')).blob();
      const img = new Image();
      img.src = URL.createObjectURL(blob);
      return img;
    })();
  • from native

     
    const img = new Image();
    img.src = 'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png';