6d97c1a844
FossilOrigin-Name: 100a596800eca61477d9880092465d594c22be3707f2a11aaf6eb9e234fc6f2d
43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
<!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>sqlite3 tester #1:
|
|
//#if target=es6-module
|
|
ES6 Module in UI thread
|
|
//#else
|
|
UI thread
|
|
//#endif
|
|
</title>
|
|
<style>
|
|
body {
|
|
font-family: monospace;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 id='color-target'></h1>
|
|
<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'>
|
|
<label for='cb-log-reverse'>Reverse log order?</label>
|
|
</div>
|
|
<div id='test-output'></div>
|
|
<script>(function(){
|
|
document.querySelector('h1').innerHTML =
|
|
document.querySelector('title').innerHTML;
|
|
})();</script>
|
|
//#if target=es6-module
|
|
<script src="tester1.mjs" type="module"></script>
|
|
//#else
|
|
<script src="jswasm/sqlite3.js"></script>
|
|
<script src="tester1.js"></script>
|
|
//#endif
|
|
</body>
|
|
</html>
|