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

  if (window.layoutTestController) {
    layoutTestController.dumpAsText();
    layoutTestController.waitUntilDone();
  }

  document.f.submit();

</script>
</body>
</html>