chromium/third_party/blink/web_tests/fast/parser/href-whitespace.html



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<script>
if (window.testRunner)
    testRunner.dumpAsText();

function test() {
    var a = document.getElementsByTagName('a')[0];
    a.href = a.href;
    a.textContent = /%20/.test(a.href) ? "FAIL" : "PASS";
}
</script>
</head>
<body onload="test()">
<a href="&#xD;&#xA;							  default.aspx?aType=SonDakika&amp;ArticleID=501349&amp;Date=03.03.2008&#xD;&#xA;	" >test</a>
</body>

</html>