17 lines
566 B
HTML
Executable File
17 lines
566 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>CasperJS url tests</title>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<!-- NOTE: slimerjs does not open up / change URL for
|
|
"?test=Forlì" hrefs, so use full url for this test -->
|
|
<li><a href="urls.html?test=Forlì">raw unicode</a></li>
|
|
<li><a href="urls.html?test=Farl%EC">escaped</a></li>
|
|
<li><a href="urls.html?test=Furl%C3%AC">uri encoded</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|