mirror of
https://github.com/servo/servo.git
synced 2025-06-28 19:13:41 +01:00
12 lines
306 B
HTML
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>
|