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

Unified Diff: third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams-getall.html

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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams-getall.html
diff --git a/third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams-getall.html b/third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams-getall.html
new file mode 100644
index 0000000000000000000000000000000000000000..4454e2bf132af916d7e8c8f02277482c1b2cf60c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams-getall.html
@@ -0,0 +1,37 @@
+<!doctype html>
+<html>
+<head>
+<meta charset="utf8">
+<link rel="help" href="https://url.spec.whatwg.org/#dom-urlsearchparams-getAll">
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script src="resources/testharness-extras.js"></script>
+<script>
+test(function() {
+ var params = new URLSearchParams('a=b&c=d');
+ assert_array_equals(params.getAll('a'), ['b']);
+ assert_array_equals(params.getAll('c'), ['d']);
+ assert_array_equals(params.getAll('e'), []);
+ params = new URLSearchParams('a=b&c=d&a=e');
+ assert_array_equals(params.getAll('a'), ['b', 'e']);
+ params = new URLSearchParams('=b&c=d');
+ assert_array_equals(params.getAll(''), ['b']);
+ params = new URLSearchParams('a=&c=d&a=e');
+ assert_array_equals(params.getAll('a'), ['', 'e']);
+}, 'getAll() basics');
+
+test(function() {
+ var params = new URLSearchParams('a=1&a=2&a=3&a');
+ assert_true(params.has('a'), 'Search params object has name "a"');
+ var matches = params.getAll('a');
+ assert_true(matches && matches.length == 4, 'Search params object has values for name "a"');
+ assert_array_equals(matches, ['1', '2', '3', ''], 'Search params object has expected name "a" values');
+ params.set('a', 'one');
+ assert_equals(params.get('a'), 'one', 'Search params object has name "a" with value "one"');
+ var matches = params.getAll('a');
+ assert_true(matches && matches.length == 1, 'Search params object has values for name "a"');
+ assert_array_equals(matches, ['one'], 'Search params object has expected name "a" values');
+}, 'getAll() multiples');
+</script>
+</head>
+</html>

Powered by Google App Engine
This is Rietveld 408576698