summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/test_getFileId.html
blob: 2ae4e290ba5aa3b988f3087555118a4b0b78ac98 (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
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
  <title>File Handle Test</title>

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

  <script type="text/javascript">
  function* testSteps()
  {
    let id = getFileId(null);
    ok(id == -1, "Correct id");

    id = getFileId(getRandomBlob(100));
    ok(id == -1, "Correct id");

    finishTest();
    yield undefined;
  }
  </script>
  <script type="text/javascript" src="file.js"></script>
  <script type="text/javascript" src="helpers.js"></script>

</head>

<body onload="runTest();"></body>

</html>