mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
121 lines
3.6 KiB
HTML
121 lines
3.6 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=431701
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 431701</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" 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 = [
|
|
"data:text/html,<html></html>",
|
|
"data:text/html;charset=UTF-8,<html></html>",
|
|
"data:text/html;charset=ISO-8859-1,<html></html>",
|
|
"data:text/xml,<html></html>",
|
|
"data:text/xml,<?xml version='1.0'?><html></html>",
|
|
"data:text/xml,<?xml version='1.0' encoding='UTF-8'?><html></html>",
|
|
"data:text/xml,<?xml version='1.0' encoding='ISO-8859-1'?><html></html>",
|
|
];
|
|
|
|
for (var 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!
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open("GET", docSources[idx], false);
|
|
xhr.send();
|
|
return xhr.responseXML;
|
|
};
|
|
}
|
|
|
|
// Each row has the document getter function, then the characterSet,
|
|
// inputEncoding, xmlEncoding expected for that document.
|
|
|
|
var tests = [
|
|
[ frameDoc("one"), "ISO-8859-1", "ISO-8859-1", null ],
|
|
[ frameDoc("two"), "UTF-8", "UTF-8", null ],
|
|
[ frameDoc("three"), "ISO-8859-1", "ISO-8859-1", null ],
|
|
[ frameDoc("four"), "UTF-8", "UTF-8", null ],
|
|
[ frameDoc("five"), "UTF-8", "UTF-8", null ],
|
|
[ frameDoc("six"), "UTF-8", "UTF-8", "UTF-8"],
|
|
[ frameDoc("seven"), "ISO-8859-1", "ISO-8859-1", "ISO-8859-1" ],
|
|
[ createDoc, "UTF-8", null, null ],
|
|
[ xhrDoc(4), "UTF-8", "UTF-8", null ],
|
|
[ xhrDoc(5), "UTF-8", "UTF-8", "UTF-8" ],
|
|
[ xhrDoc(6), "ISO-8859-1", "ISO-8859-1", "ISO-8859-1" ],
|
|
];
|
|
|
|
function doTest(idx) {
|
|
var [docGetter, expectedCharacterSet,
|
|
expectedInputEncoding, expectedXMLEncoding] = tests[idx];
|
|
var doc = docGetter();
|
|
|
|
// Have to be careful here to catch null vs ""
|
|
is(doc.characterSet, expectedCharacterSet, "Test " + idx + " characterSet");
|
|
is(doc.inputEncoding, expectedInputEncoding,
|
|
"Test " + idx + " inputEncoding");
|
|
is(doc.xmlEncoding, expectedXMLEncoding, "Test " + idx + " xmlEncoding");
|
|
}
|
|
|
|
addLoadEvent(function() {
|
|
// sanity check
|
|
isnot("", null, "Shouldn't be equal!");
|
|
|
|
for (var 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());
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
|
is(xhr.channel.QueryInterface(Components.interfaces.nsIHttpChannel)
|
|
.getRequestHeader("Content-Type"),
|
|
"application/xml; charset=UTF-8", "Testing correct type on the wire");
|
|
xhr.abort();
|
|
|
|
SimpleTest.finish();
|
|
});
|
|
|
|
|
|
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|