summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/encoding/frame-default-enc.html
blob: faaeaafa81b64e302dafd8488ef6760ba5ee10bc (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
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=x-mac-cyrillic">
<title>Frames and encodings</title>
<script>
if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.waitUntilDone();
}

window.done = function(charset) {
    document.open();
    document.write("<p>" + ((charset == "x-mac-cyrillic") ? "PASS" : "FAIL") + "</p>");
    <!-- It's unlikely that anyone has x-mac-cyrillic as default -->

    document.close();

    if (window.testRunner)
        testRunner.notifyDone();
}
</script>
</head>
<frameset rows="0,*">
    <frame src="about:" scrolling=no marginwidth=0 marginheight=0>
    <frame src="resources/frame-default-enc-frame.html">
</frameset>
</html>