image/test/crashtests/1355898-1.html
author Alexandru Marc <amarc@mozila.com>
Tue, 22 Jul 2025 14:47:07 +0300 (15 hours ago)
changeset 797628 73304b4f70e7a0cf43e700c4badfade0c7d85a5e
parent 353045 d09c1172a183133f2df462325fe939c44980e9d3
permissions -rw-r--r--
Revert "Bug 1977393: Cancel non-completed downloads when the Download Service is killed r=android-reviewers,giorga" for causing Android build bustages @ AbstractFetchDownloadServiceTest This reverts commit a487aac3c6ad3cbb8bb3bfe1eb2d893cce61f9c8.
<!doctype html>
<html>
  <head>
    <script>
// Test that texImage2D on an animated image doesn't assert.

var gl;

function start() {
  canvas = document.getElementById("glcanvas");
  gl = null;

  try {
    gl = canvas.getContext("webgl") || canvas.getContext("experimental-webgl");
  }
  catch(e) {
  }

  if (!gl) {
    return;
  }

  var texture = gl.createTexture();
  var image = new Image();
  image.onload = function() { handleTextureLoaded(image, texture); }
  image.src = "1249576-1.png"; // an animated png
}

function handleTextureLoaded(image, texture) {
  gl.bindTexture(gl.TEXTURE_2D, texture);
  gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, image);
  gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
  gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR_MIPMAP_NEAREST);
  gl.generateMipmap(gl.TEXTURE_2D);
  gl.bindTexture(gl.TEXTURE_2D, null);
}
    </script>
  </head>

  <body onload="start()">
    <canvas id="glcanvas" width="640" height="480">
      Your browser doesn't appear to support the <code>&lt;canvas&gt;</code> element.
    </canvas>
  </body>
</html>