зеркало из https://github.com/mozilla/pjs.git
Bug 553938 - add crashtest. a=NPOTB
This commit is contained in:
Родитель
0b83ac72b1
Коммит
90a08110a9
|
@ -0,0 +1,20 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||||
|
<title>ImageData Crash Test</title>
|
||||||
|
</head>
|
||||||
|
<body onload="crash();">
|
||||||
|
<canvas id="c" width="10" height="10"></canvas>
|
||||||
|
<script>
|
||||||
|
function crash() {
|
||||||
|
var canvas = document.getElementById('c');
|
||||||
|
var ctx = canvas.getContext('2d');
|
||||||
|
var imgData = {data: new Array(10*10*4), width: 10, height: 10};
|
||||||
|
|
||||||
|
imgData[0] = 0;
|
||||||
|
ctx.putImageData(imgData, 0, 0);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -1,2 +1,3 @@
|
||||||
load 360293-1.html
|
load 360293-1.html
|
||||||
load 421715-1.html
|
load 421715-1.html
|
||||||
|
load 553938-1.html
|
||||||
|
|
Загрузка…
Ссылка в новой задаче