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

Unified Diff: LayoutTests/fast/domurl/url-searchparams-get.html

Issue 143313002: Implement URLSearchParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: More tests + ref count unattached URLSearchParams objects Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/domurl/url-searchparams-get.html
diff --git a/LayoutTests/fast/domurl/url-searchparams-get.html b/LayoutTests/fast/domurl/url-searchparams-get.html
new file mode 100644
index 0000000000000000000000000000000000000000..387a6478a6c46a6abd470a2203d26908810c17e2
--- /dev/null
+++ b/LayoutTests/fast/domurl/url-searchparams-get.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<link rel="help" href="http://url.spec.whatwg.org/#dom-urlsearchparams-get">
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script>
+test(function() {
+ var params = new URLSearchParams("a=b&c=d");
+ assert_equals(params.get("a"), "b");
+ assert_equals(params.get("c"), "d");
+ assert_equals(params.get("e"), null);
+ params = new URLSearchParams("a=b&c=d&a=e");
+ assert_equals(params.get("a"), "b");
+ params = new URLSearchParams("=b&c=d");
+ assert_equals(params.get(""), "b");
+ params = new URLSearchParams("a=&c=d&a=e");
+ assert_equals(params.get("a"), "");
+}, "Get basics");
+
+test(function() {
+ var params = new URLSearchParams("first=second&third&&");
+ assert_true(params != null, "constructor returned non-null value.");
+ assert_true(params.has("first"), "Search params object has name 'first'");
+ assert_equals(params.get("first"), "second", "Search params object has name 'first' with value 'second'");
+ assert_equals(params.get("third"), "", "Search params object has name 'third' with the empty value.");
+ assert_equals(params.get("fourth"), null, "Search params object has no 'fourth' name and value.");
+}, "More get() basics");
+</script>

Powered by Google App Engine
This is Rietveld 408576698