1<html> 2<head> 3<meta http-equiv="content-type" content="text/html; charset=utf-8"> 4<title>Percent escaping</title> 5</head> 6<body> 7<p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=6452">bug 6452</a> - 8KURL::appendEscapingBadChars() should never escape percent characters.</p> 9<form action='resources/%2525%u0435 0 %xx%25%%ulike.html' name=f> 10 <input type=hidden name=q value=''> 11</form> 12<script> 13 14 if (window.layoutTestController) { 15 layoutTestController.dumpAsText(); 16 layoutTestController.waitUntilDone(); 17 } 18 19 document.f.submit(); 20 21</script> 22</body> 23</html> 24