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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams.html

Issue 1442643008: Implement 'URLSearchParams' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test. 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 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf8">
5 <link rel="help" href="https://url.spec.whatwg.org/#interface-urlsearchparams">
6 <script src="../../resources/testharness.js"></script>
7 <script src="../../resources/testharnessreport.js"></script>
8 <script>
9 test(function() {
10 assert_true('URLSearchParams' in window);
11 assert_true('toString' in URLSearchParams.prototype);
12 assert_true('append' in URLSearchParams.prototype);
13 assert_true('delete' in URLSearchParams.prototype);
14 assert_true('get' in URLSearchParams.prototype);
15 assert_true('getAll' in URLSearchParams.prototype);
16 assert_true('has' in URLSearchParams.prototype);
17 assert_true('set' in URLSearchParams.prototype);
18 }, 'URLSearchParams interface');
19 </script>
20 </head>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698