summaryrefslogtreecommitdiffstats
path: root/dom/fs/test/mochitest/test_writableFileStream.html
blob: 3d39349ef5e4a00a302a412f9d9e512fb8193ba1 (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
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
  <title>File System Test</title>

  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>

  <script type="text/javascript" src="head.js"></script>
  <script type="text/javascript">
    add_task(async function init() {
      const testSet = "dom/fs/test/common/test_writableFileStream.js";

      const testCases = await require_module(testSet);

      Object.values(testCases).forEach(testItem => {
        // We can't shrink storage size in a mochitest.
        if (testItem.name != "quotaTest") {
          add_task(testItem);
        }
      });
    });
  </script>
</head>

<body></body>

</html>