File: test-opfs-vfs.html

package info (click to toggle)
sqlcipher 4.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 120,100 kB
  • sloc: ansic: 285,202; tcl: 19,833; javascript: 12,886; java: 8,151; sh: 4,409; yacc: 1,644; makefile: 1,578; cpp: 440; cs: 307; sql: 45
file content (26 lines) | stat: -rw-r--r-- 910 bytes parent folder | download | duplicates (17)
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
<!doctype html>
<html lang="en-us">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
    <link rel="stylesheet" href="common/emscripten.css"/>
    <link rel="stylesheet" href="common/testing.css"/>
    <title>Async-behind-Sync experiment</title>
  </head>
  <body>
    <header id='titlebar'><span>Async-behind-Sync sqlite3_vfs</span></header>
    <div>This performs a sanity test of the "opfs" sqlite3_vfs.
      <strong>See the dev console for all output.</strong>
    </div>
    <div>
      <a href='?delete'>Use this link</a> to delete the persistent OPFS-side db (if any).
    </div>
    <div id='test-output'></div>
    <script>
      new Worker(
          "test-opfs-vfs.js?sqlite3.dir=jswasm&"+self.location.search.substr(1)
      );
    </script>
  </body>
</html>