mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
9f3b77fe34
--HG-- rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-1.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-10.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-11.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-2.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-3.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-4.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-5.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-6.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-7.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-8.js rename : docshell/test/browser/browser_bug134911.js => docshell/test/browser/browser_bug234628-9.js
40 lines
1.7 KiB
JavaScript
40 lines
1.7 KiB
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
var rootDir = "http://mochi.test:8888/browser/docshell/test/browser/";
|
|
gBrowser.selectedTab = gBrowser.addTab(rootDir + "file_bug234628-10.html");
|
|
gBrowser.selectedBrowser.addEventListener("load", afterOpen, true);
|
|
}
|
|
|
|
function afterOpen(event) {
|
|
if (event.target != gBrowser.contentDocument) {
|
|
return;
|
|
}
|
|
|
|
gBrowser.selectedBrowser.removeEventListener("load", afterOpen, true);
|
|
gBrowser.selectedBrowser.addEventListener("load", afterChangeCharset, true);
|
|
|
|
is(gBrowser.contentDocument.documentElement.textContent.indexOf('\u20AC'), 151, "Parent doc should be windows-1252 initially");
|
|
|
|
is(gBrowser.contentDocument.getElementsByTagName("iframe")[0].contentDocument.documentElement.textContent.indexOf('\u20AC'), 71, "Child doc should be utf-8 initially");
|
|
|
|
BrowserSetForcedCharacterSet("windows-1251");
|
|
}
|
|
|
|
function afterChangeCharset(event) {
|
|
if (event.target != gBrowser.contentDocument) {
|
|
return;
|
|
}
|
|
|
|
gBrowser.selectedBrowser.removeEventListener("load", afterChangeCharset, true);
|
|
|
|
is(gBrowser.contentDocument.documentElement.textContent.indexOf('\u0402'), 151, "Parent doc should decode as windows-1251 subsequently");
|
|
is(gBrowser.contentDocument.getElementsByTagName("iframe")[0].contentDocument.documentElement.textContent.indexOf('\u20AC'), 71, "Child doc should decode as utf-8 subsequently");
|
|
|
|
is(gBrowser.contentDocument.characterSet, "windows-1251", "Parent doc should report windows-1251 subsequently");
|
|
is(gBrowser.contentDocument.getElementsByTagName("iframe")[0].contentDocument.characterSet, "UTF-8", "Child doc should report UTF-8 subsequently");
|
|
|
|
gBrowser.removeCurrentTab();
|
|
finish();
|
|
}
|