2022-10-12 18:54:28 +03:00
|
|
|
<!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">
|
2022-10-19 09:06:42 +03:00
|
|
|
<link rel="stylesheet" href="common/emscripten.css"/>
|
|
|
|
<link rel="stylesheet" href="common/testing.css"/>
|
2022-10-12 18:54:28 +03:00
|
|
|
<title>sqlite3 tester #1 (UI thread)</title>
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>sqlite3 WASM/JS tester #1 (UI thread)</h1>
|
2022-10-21 09:58:27 +03:00
|
|
|
<div>See <a href='tester1-worker.html' target='tester1-worker.html'>tester1-worker.html</a>
|
|
|
|
for the Worker-thread variant.</div>
|
|
|
|
<div class='input-wrapper'>
|
|
|
|
<input type='checkbox' id='cb-log-reverse' checked>
|
|
|
|
<label for='cb-log-reverse'>Reverse log order?</label>
|
|
|
|
</div>
|
2022-10-13 11:03:31 +03:00
|
|
|
<div id='test-output'></div>
|
2022-10-19 07:44:58 +03:00
|
|
|
<script src="jswasm/sqlite3.js"></script>
|
2022-10-12 18:54:28 +03:00
|
|
|
<script src="tester1.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|