5a1b65d089
Automate testing of any PR's. Updated README's explaining new processes.
27 lines
591 B
HTML
27 lines
591 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>issue 352, illegal character in path segment</title>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
This test case address #352 wherein HTML Tidy does not flag illegal code
|
|
points in the URL.
|
|
</p>
|
|
<a href="http://€.com">Valid; works with multibyte characters.</a>
|
|
<br>
|
|
<a href=":|">Invalid</a>
|
|
<br>
|
|
<a href="http://[">Invalid</a>
|
|
<br>
|
|
<a href="http://www.example.com">Valid</a>
|
|
<br>
|
|
<a href="http://www.example.com">Valid</a>
|
|
<br>
|
|
<a href="%E2%82%AC">Same €, already escaped; Valid</a>
|
|
<br>
|
|
<a href="http://example.com/é">Valid</a>
|
|
</body>
|
|
</html>
|