Files
serenity/Tests/LibWeb/Text/input/Worker/Worker-location.html
Tim Ledbetter 92ef7f08df LibWeb: Set correct prototype for WorkerLocation
(cherry picked from commit 354e5a6624a92952b1f3b86f98d9b1d0cb0ec048)
2024-07-28 20:48:58 -04:00

12 lines
367 B
HTML

<script src="../include.js"></script>
<script>
asyncTest(done => {
let work = new Worker("Worker-location.js");
work.onmessage = (evt) => {
const locationURL = new URL(evt.data);
println(`location global object URL final segment: ${locationURL.pathname.split('/').pop()}`);
done();
};
});
</script>