skia2/experimental/wasm-hello-world/hello_world.html
Kevin Lubick 048545d249 Set up basic hello world sk_app
Change-Id: I233e7653eadcce87067def841b2f28c700f96045
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/492096
Reviewed-by: Brian Salomon <bsalomon@google.com>
2022-01-06 20:29:35 +00:00

17 lines
470 B
HTML

<!DOCTYPE html>
<title>Hello World (sk_app)</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="/build/hello_world.js"></script>
<script type="text/javascript" charset="utf-8">
async function run() {
const HW = await HelloWorld({locateFile: (file) => '/build/'+file});
console.log('loaded?')
}
run();
</script>