Created
July 8, 2026 16:20
-
-
Save simolus3/efad5b9622079b63ac68f599b45dfafa to your computer and use it in GitHub Desktop.
WebKit SharedWorker bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script> | |
| const worker = new SharedWorker('./shared_worker.js'); | |
| console.log('has worker!'); | |
| worker.port.onmessage = (event) => { | |
| console.log(event.data); | |
| }; | |
| </script> | |
| </head> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment