tenfourfox/dom/apps/tests/asmjs/index.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
324 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Asm.js test helper</title>
</head>
<body>
<script src="asmjsmodule.js" async></script>
<script>
function ok(aCondition, aMessage) {
if (aCondition) {
alert("OK: " + aMessage);
} else {
alert("ERROR: " + aMessage);
}
}
</script>
</body>
</html>