29 lines
963 B
HTML
29 lines
963 B
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>Async-behind-Sync experiment</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<header id='titlebar'><span>Async-behind-Sync Experiment</span></header>
|
||
|
<div>This is an experiment in wrapping the
|
||
|
asynchronous OPFS APIs behind a fully synchronous proxy. It is
|
||
|
very much incomplete, under construction, and experimental.
|
||
|
See the dev console for all output.
|
||
|
</div>
|
||
|
<div id='test-output'>
|
||
|
</div>
|
||
|
<!--script src="common/whwasmutil.js"></script-->
|
||
|
<!--script src="common/SqliteTestUtil.js"></script-->
|
||
|
<script>
|
||
|
(function(){
|
||
|
new Worker("x-sync-async.js");
|
||
|
})();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|