Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4621210b
Commit
4621210b
authored
Nov 09, 2008
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Nov 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi/tests: Add more entries for PathIsURL.
parent
71264731
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
path.c
dlls/shlwapi/tests/path.c
+20
-1
No files found.
dlls/shlwapi/tests/path.c
View file @
4621210b
...
...
@@ -82,7 +82,26 @@ static struct {
{
"foo.bar"
,
FALSE
},
{
"bogusscheme:"
,
TRUE
},
{
"http:partial"
,
TRUE
},
{
"www.winehq.org"
,
FALSE
}
{
"www.winehq.org"
,
FALSE
},
/* More examples that the user might enter as the browser start page */
{
"winehq.org"
,
FALSE
},
{
"ftp.winehq.org"
,
FALSE
},
{
"http://winehq.org"
,
TRUE
},
{
"http://www.winehq.org"
,
TRUE
},
{
"https://winehq.org"
,
TRUE
},
{
"https://www.winehq.org"
,
TRUE
},
{
"ftp://winehq.org"
,
TRUE
},
{
"ftp://ftp.winehq.org"
,
TRUE
},
{
"file://does_not_exist.txt"
,
TRUE
},
{
"about:blank"
,
TRUE
},
{
"about:home"
,
TRUE
},
{
"about:mozilla"
,
TRUE
},
/* scheme is case independent */
{
"HTTP://www.winehq.org"
,
TRUE
},
/* a space at the start is not allowed */
{
" http://www.winehq.org"
,
FALSE
},
{
""
,
FALSE
},
{
NULL
,
FALSE
}
};
struct
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment