summaryrefslogtreecommitdiffstats
path: root/dom/file/tests/test_fileapi_other.html
blob: 6c01415be8ba32121f4587ca342e810de979e899 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for FileReader API</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <script type="text/javascript" src="common_fileReader.js"></script>
</head>

<body>
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();
SimpleTest.requestLongerTimeout(3);

test_setup()
.then(data => {
  return runOtherTests(data);
})
.then(SimpleTest.finish);

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