summaryrefslogtreecommitdiffstats
path: root/dom/file/tests/test_fileapi_slice_memFile_1.html
blob: 56d63d15ba587ca43d4389db6c8de813fb5696b3 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for File API + Slice (in memory)</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="common_blob.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>

<body>

<p id="display">
  <canvas id=canvas width=1100 height=1100 hidden moz-opaque></canvas>
</p>

<script type="text/javascript">

SimpleTest.waitForExplicitFinish();
SimpleTest.requestLongerTimeout(4);

createCanvasURL()
.then(data => {
  let cx = $("canvas").getContext('2d');
  return Promise.all([toBlobPromise(cx.canvas),
                      Promise.resolve(data)]);
})

.then(args => {
  let [memFile, data] = args;
  return testSlice(memFile, data.length, "image/png", data, "memFile", RANGE_1);
})

.then(SimpleTest.finish);

</script>
</body>
</html>