mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
11 lines
276 B
HTML
11 lines
276 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
<canvas id="crashtest" width="50000" height="50000" />
|
||
|
<script>
|
||
|
document.getElementById("crashtest").mozGetAsFile("foo.png", "image/png");
|
||
|
document.getElementById("crashtest").mozGetAsFile("foo.jpeg", "image/jpeg");
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|