| 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: Error: URLMismatchError: DOM Exception 21 | 3 PASS: Exception thrown when creating SharedWorker with different URLs but same n
ame: URLMismatchError: A worker global scope represented an absolute URL that is
not equal to the resulting absolute URL. |
| 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 |