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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/domurl/resources/urlsearchparams-worker.js

Issue 1442643008: Implement 'URLSearchParams' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 5 years, 1 month 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 importScripts("../../../resources/testharness.js")
2
3 test(function() {
4 assert_true('URLSearchParams' in self);
5 assert_true('toString' in URLSearchParams.prototype);
6 assert_true('append' in URLSearchParams.prototype);
7 assert_true('delete' in URLSearchParams.prototype);
8 assert_true('get' in URLSearchParams.prototype);
9 assert_true('getAll' in URLSearchParams.prototype);
10 assert_true('has' in URLSearchParams.prototype);
11 assert_true('set' in URLSearchParams.prototype);
12 }, 'URLSearchParams interface');
13
14 done();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698