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

Side by Side Diff: LayoutTests/fast/domurl/url-query-constructor.html

Issue 141003005: Old CL related to URL query (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <meta charset="utf-8">
3 <link rel="help" href="http://url.spec.whatwg.org/#interface-urlquery">
4 <script src="../../resources/testharness.js"></script>
5 <script src="../../resources/testharnessreport.js"></script>
6 <script>
7
8 test(function() {
9 var q = new URLQuery();
10 assert_equals(q + '', '');
11
12 q = new URLQuery('');
13 assert_equals(q + '', '');
14
15 q = new URLQuery('a=b');
16 assert_equals(q + '', 'a=b');
17
18 q = new URLQuery(q);
19 assert_equals(q + '', 'a=b');
20 }, 'Basic query construction');
21
22 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/domurl/url-query-append.html ('k') | LayoutTests/fast/domurl/url-query-delete.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698