tidy-html5/regression_testing/cases/github-cases/case-352@1.html
Jim Derry 5a1b65d089 Move the testing repository back into the Tidy codebase.
Automate testing of any PR's.
Updated README's explaining new processes.
2021-05-21 10:43:35 -04:00

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>