summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/encoding/resources/frame-default-enc-frame.html
blob: 8e928e3cd345800fd2833cbf251ca2ad1c24b989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<title>Frame</title>
</head>
<body>
<script>
    chs = document.inputEncoding;
    if (!chs)
        chs = document.charset;
    if (!chs)
        chs = document.characterSet;

    parent.done(chs);
</script>

</body>
</html>