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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/shared-worker-controlled.js

Issue 2897113002: Remove duplicate service wrkr "shared worker" test (Closed)
Patch Set: Re-introduce shared resource file Created 3 years, 6 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
(Empty)
1 onconnect = function(e) {
2 var port = e.ports[0];
3 var xhr = new XMLHttpRequest();
4 xhr.onload = function() { port.postMessage(this.responseText); };
5 xhr.onerror = function(e) { port.postMessage(e); };
6 xhr.open('GET', 'dummy.txt?simple', true);
7 xhr.send();
8 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698