OLD | NEW |
(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> |
OLD | NEW |