1
0
Fork 0
firefox/testing/web-platform/tests/common/dispatcher/remote-executor.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
399 B
HTML

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<body>
</body>
<script src="./dispatcher.js"
crossorigin
integrity="sha256-daCATx8B9i1s6ixqZvCGcGQOv3a+VMoor6aS9UNUoiY=">
</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>