1 Test simple shared worker sharing cases. Should print several PASS lines followed by DONE.
3 PASS: Exception thrown when creating SharedWorker with different URLs but same name: URLMismatchError: Failed to construct 'SharedWorker': The location of the SharedWorker named 'name' does not exactly match the provided URL ('some-other-url.js').
4 PASS: Accessing new instance of shared worker: self.foo: undefined
5 PASS: Setting global variable in shared worker: self.foo = 1234: 1234
6 PASS: Accessing simultaneously-loaded instance of shared worker: self.foo: 1234
7 PASS: Accessing new instance of shared worker: self.foo: undefined
8 PASS: Accessing already-loaded instance of shared worker: self.foo: 1234