Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams.html b/third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..deb19bd569e05edda5ccc5daeb731784058ed52a |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/domurl/urlsearchparams.html |
| @@ -0,0 +1,21 @@ |
| +<!doctype html> |
| +<html> |
| +<head> |
| +<meta charset="utf8"> |
| +<link rel="help" href="http://url.spec.whatwg.org/#interface-urlsearchparams"> |
|
sof
2015/11/15 09:04:11
Switch all of the test rel="help" to use https.
Mike West
2015/11/16 08:57:57
Yup.
|
| +<script src="../../resources/testharness.js"></script> |
| +<script src="../../resources/testharnessreport.js"></script> |
| +<script> |
| +test(function() { |
| + assert_true('URLSearchParams' in window); |
| + assert_true('toString' in URLSearchParams.prototype); |
| + assert_true('append' in URLSearchParams.prototype); |
| + assert_true('delete' in URLSearchParams.prototype); |
| + assert_true('get' in URLSearchParams.prototype); |
| + assert_true('getAll' in URLSearchParams.prototype); |
| + assert_true('has' in URLSearchParams.prototype); |
| + assert_true('set' in URLSearchParams.prototype); |
| +}, 'URLSearchParams interface'); |
| +</script> |
| +</head> |
| +</html> |