summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2017-03-27 14:40:12 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2017-03-27 14:40:12 +0100
commit04d74a79ae95514af73476dafbdaea3a19e54b34 (patch)
tree0cfca222d369065a3ff7400e74df01de3a2e2872 /test
parent1cced51440e550f2965538b8a4f72c514eca09b6 (diff)
downloadnetsurf-04d74a79ae95514af73476dafbdaea3a19e54b34.tar.gz
netsurf-04d74a79ae95514af73476dafbdaea3a19e54b34.tar.bz2
Tests: Add some more nsurl cases insensitivity tests.
Diffstat (limited to 'test')
-rw-r--r--test/nsurl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/nsurl.c b/test/nsurl.c
index 7e43a6d6c..4fbf3e1d8 100644
--- a/test/nsurl.c
+++ b/test/nsurl.c
@@ -146,6 +146,9 @@ static const struct test_pairs create_tests[] = {
{ "HTTP://a/b", "http://a/b" },
{ "ftp://a/b", "ftp://a/b" },
{ "FTP://a/b", "ftp://a/b" },
+ { "MAILTO:foo@bar", "mailto:foo@bar" },
+ { "FILE:///", "file:///" },
+ { "http://HOST/", "http://host/" },
/* punycode */
{ "http://a.कॉम/a", "http://a.xn--11b4c3d/a" },