add all web jses (leave out the big data and asm files)

This commit is contained in:
Barak Michener 2020-12-04 18:05:45 -08:00
parent e8868b636f
commit 3b05f4316c
68 changed files with 1408 additions and 0 deletions

23
web/test.html Normal file
View file

@ -0,0 +1,23 @@
<!-- Bootstrap HTML for running the unit tests. -->
<html>
<head>
<meta charset="utf-8"/>
<script>
window.logs = [];
console.log = function(message) {
window.logs.push(message);
}
console.warn = function(message) {
window.logs.push(message);
}
console.info = function(message) {
window.logs.push(message);
}
console.error = function(message) {
window.logs.push(message);
}
</script>
<script src="pyodide_dev.js"></script>
</head>
<body></body>
</html>