048545d249
Change-Id: I233e7653eadcce87067def841b2f28c700f96045 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/492096 Reviewed-by: Brian Salomon <bsalomon@google.com>
17 lines
470 B
HTML
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> |