tidy-html5/regression_testing/cases/github-cases/case-352@1.html

27 lines
591 B
HTML
Raw Normal View History

<!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>