Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/workers/shared-worker-shared-expected.txt

Issue 2604733002: SharedWorker: Make shared workers keyed by a pair of url and name (Closed)
Patch Set: clean up Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698