summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/test_toBlob_zero_dimension.html
blob: 227757e68203776f584db96a0529f9dc48ec0b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE HTML>
<title>Canvas test: toBlob</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
<body>
<canvas id="c" width="100" height="0"></canvas>
<script>

function testblob(blob) {
  is(blob, null, "Null blob expected");
}

function test1(canvas)
{
  canvas.toBlob(function(blob) {
    testblob(blob);
    test2(canvas);
  }, "image/png");
}

function test2(canvas)
{
  canvas.width = 0;
  canvas.height = 100;
  canvas.toBlob(function(blob) {
    testblob(blob);
    SimpleTest.finish();
  }, "image/png");
}

SimpleTest.waitForExplicitFinish();

addLoadEvent(function () {

var canvas = document.getElementById('c');
var ctx = canvas.getContext('2d');
test1(canvas);

});
</script>