tidy-html5/regression_testing/cases/github-expects/case-352.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

20 lines
587 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://%E2%82%AC.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/%C3%A9">Valid</a>
</body>
</html>