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