mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 05:37:20 +03:00
15 lines
326 B
HTML
15 lines
326 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Remote importScripts Test</title>
|
|
</head>
|
|
<html>
|
|
<div id="status">-</div>
|
|
<script>
|
|
new Worker('worker-http-import.js').addEventListener("message", ({ data }) => {
|
|
document.getElementById("status").innerText = data;
|
|
});
|
|
</script>
|
|
</html>
|
|
</html>
|