summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug431701.html
blob: 4009fc017af78729642eab63d8c4308ce9e22d93 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=431701
-->
<head>
  <meta charset="windows-1252">
  <title>Test for Bug 431701</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=431701">Mozilla Bug 431701</a>
<p id="display"></p>
<div id="content" style="display: none">
  <iframe id="one"></iframe>
  <iframe id="two"></iframe>
  <iframe id="three"></iframe>
  <iframe id="four"></iframe>
  <iframe id="five"></iframe>
  <iframe id="six"></iframe>
  <iframe id="seven"></iframe>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 431701 **/
SimpleTest.waitForExplicitFinish();

var docSources = [
  "iframe1_bug431701.html",
  "iframe2_bug431701.html",
  "iframe3_bug431701.html",
  "iframe4_bug431701.xml",
  "iframe5_bug431701.xml",
  "iframe6_bug431701.xml",
  "iframe7_bug431701.xml",
];

for (let i = 0; i < docSources.length; ++i) {
  document.getElementsByTagName("iframe")[i].src = docSources[i];
}

function frameDoc(id) {
  return function() { return $(id).contentDocument; };
}

function createDoc() {
  return document.implementation.createDocument('', 'html', null);
}

function xhrDoc(idx) {
  return function() {
    // Defy same-origin restrictions!
    var xhr = new XMLHttpRequest({mozAnon: true, mozSystem: true});
    xhr.open("GET", docSources[idx], false);
    xhr.send();
    return xhr.responseXML;
  };
}

// Each row has the document getter function, then the characterSet,
// inputEncoding expected for that document.

var tests = [
 [ frameDoc("one"), "windows-1252" ],
 [ frameDoc("two"), "UTF-8" ],
 [ frameDoc("three"), "windows-1252" ],
 [ frameDoc("four"), "UTF-8" ],
 [ frameDoc("five"), "UTF-8" ],
 [ frameDoc("six"), "UTF-8" ],
 [ frameDoc("seven"), "windows-1252" ],
 [ createDoc, "UTF-8" ],
 [ xhrDoc(4), "UTF-8" ],
 [ xhrDoc(5), "UTF-8" ],
 [ xhrDoc(6), "windows-1252" ],
];

function doTest(idx) {
  var [docGetter, expectedCharacterSet] = tests[idx];
  var doc = docGetter();

  // Have to be careful here to catch null vs ""
  is(doc.characterSet, expectedCharacterSet, "Test " + idx + " characterSet");
  is(doc.inputEncoding, expectedCharacterSet,
     "Test " + idx + " inputEncoding");
}

addLoadEvent(function() {
   SpecialPowers.pushPermissions([{'type': 'systemXHR', 'allow': true, 'context': document}], startTest);
});

function startTest() {
  // sanity check
  isnot("", null, "Shouldn't be equal!");

  for (let i = 0; i < tests.length; ++i) {
    doTest(i);
  }

  // Now check what xhr does
  var xhr = new XMLHttpRequest();
  xhr.open("POST", document.location.href);
  xhr.send(createDoc());
  is(SpecialPowers.wrap(xhr).channel.QueryInterface(SpecialPowers.Ci.nsIHttpChannel)
                .getRequestHeader("Content-Type"),
     "application/xml;charset=UTF-8", "Testing correct type on the wire");
  xhr.abort();

  SimpleTest.finish();
};




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