1<!doctype html> 2<title>Check bindings in JavaScript and WebAssembly cycle (JS higher)</title> 3 4<script src="/resources/testharness.js"></script> 5<script src="/resources/testharnessreport.js"></script> 6<script type=module> 7setup({ single_test: true }); 8import { f } from "./resources/js-wasm-cycle.js"; 9assert_equals(f(), 24); 10done(); 11</script> 12