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

Side by Side Diff: LayoutTests/fast/domurl/url-searchparams-getAll.html

Issue 143313002: Implement URLSearchParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 4 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 <!DOCTYPE html>
2 <link rel="help" href="http://url.spec.whatwg.org/#dom-urlsearchparams-getall">
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <script>
6 test(function() {
7 var params = new URLSearchParams('a=b&c=d');
8 assert_array_equals(params.getAll('a'), ['b']);
9 assert_array_equals(params.getAll('c'), ['d']);
10 assert_array_equals(params.getAll('e'), []);
11 params = new URLSearchParams('a=b&c=d&a=e');
12 assert_array_equals(params.getAll('a'), ['b', 'e']);
13 params = new URLSearchParams('=b&c=d');
14 assert_array_equals(params.getAll(''), ['b']);
15 params = new URLSearchParams('a=&c=d&a=e');
16 assert_array_equals(params.getAll('a'), ['', 'e']);
17 }, 'getAll() basics');
18
19 test(function() {
20 var params = new URLSearchParams('a=1&a=2&a=3&a');
21 assert_true(params.has('a'), 'Search params object has name "a"');
22 var matches = params.getAll('a');
23 assert_true(matches && matches.length == 4, 'Search params object has values for name "a"');
24 assert_array_equals(matches, ['1', '2', '3', ''], 'Search params object has expected name "a" values');
25 params.set('a', 'one');
26 assert_equals(params.get('a'), 'one', 'Search params object has name "a" wit h value "one"');
27 var matches = params.getAll('a');
28 assert_true(matches && matches.length == 1, 'Search params object has values for name "a"');
29 assert_array_equals(matches, ['one'], 'Search params object has expected nam e "a" values');
30 }, 'getAll() multiples');
31 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/domurl/url-searchparams-get.html ('k') | LayoutTests/fast/domurl/url-searchparams-has.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698