Files
AI/참고/playwright-main/tests/assets/worker/worker-http-import.html

15 lines
326 B
HTML
Raw Normal View History

2026-05-12 19:40:31 +09:00
<!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>