summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/encoding/escaped-bracket.html
blob: 0566d0d8285748595d9cfb5357d3dc1da4e25f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html>
<head>
<title>
foo="\</title\>"
<meta charset=windows-1255>
</title>
<meta charset=KOI8-R>
</head>
<body>
<pre id="log"></pre>
<script>
function log(message)
{
    document.getElementById("log").innerText += message + "\n";
}

if (window.layoutTestController)
    layoutTestController.dumpAsText();

if (document.inputEncoding == "KOI8-R")
    log("PASS: " + document.inputEncoding);
else
    log("FAIL: " + document.inputEncoding);
</script>
<p>
This test checks whether charset sniffer skips over escaped characters correctly.
</body>
</html>