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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/workers/support/WorkerLocation.js

Issue 2418853003: Worker: Import "imported/wpt/workers" tests (Retry) (Closed)
Patch Set: rebase Created 4 years, 2 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 var obj = new Object();
2 obj.location = location.toString();
3 obj.href = location.href;
4 obj.protocol = location.protocol;
5 obj.host = location.host;
6 obj.hostname = location.hostname;
7 obj.port = location.port;
8 obj.pathname = location.pathname;
9 obj.search = location.search;
10 obj.hash = location.hash;
11
12 postMessage(obj);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698