node/test/fixtures/wpt/common/dispatcher/remote-executor.html
Filip Skokan 68e83901f3 test: update WPT resources, common, streams, FileAPI, broadcastchannel
PR-URL: https://github.com/nodejs/node/pull/46912
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
2023-03-07 10:19:23 +01:00

12 lines
306 B
HTML

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<body>
</body>
<script src="./dispatcher.js"></script>
<script>
const params = new URLSearchParams(window.location.search);
const uuid = params.get('uuid');
const executor = new Executor(uuid); // `execute()` is called in constructor.
</script>
</html>