Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/04d74a79ae95514af7347...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/04d74a79ae95514af73476d...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/04d74a79ae95514af73476daf...
The branch, master has been updated
via 04d74a79ae95514af73476dafbdaea3a19e54b34 (commit)
from 1cced51440e550f2965538b8a4f72c514eca09b6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=04d74a79ae95514af73...
commit 04d74a79ae95514af73476dafbdaea3a19e54b34
Author: Michael Drake <michael.drake(a)codethink.co.uk>
Commit: Michael Drake <michael.drake(a)codethink.co.uk>
Tests: Add some more nsurl cases insensitivity tests.
diff --git a/test/nsurl.c b/test/nsurl.c
index 7e43a6d..4fbf3e1 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" },
-----------------------------------------------------------------------
Summary of changes:
test/nsurl.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/test/nsurl.c b/test/nsurl.c
index 7e43a6d..4fbf3e1 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" },
--
NetSurf Browser