mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e802e899be
--HG-- rename : docshell/test/browser/browser_bug234628-6.js => docshell/test/browser/browser_bug941562.js rename : docshell/test/browser/file_bug234628-7-child.html => docshell/test/browser/file_bug941562-child.html rename : docshell/test/browser/file_bug234628-6.html => docshell/test/browser/file_bug941562.html
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_bug941562.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'), 140, "Parent doc should be windows-1252 initially");
|
|
|
|
is(gBrowser.contentDocument.getElementsByTagName("iframe")[0].contentDocument.documentElement.textContent.indexOf('\u4E2D'), 77, "Child doc should be HZ-GB-2312 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'), 140, "Parent doc should decode as windows-1251 subsequently");
|
|
is(gBrowser.contentDocument.getElementsByTagName("iframe")[0].contentDocument.documentElement.textContent.indexOf('\u4E2D'), 77, "Child doc should decode as HZ-GB-2312 subsequently");
|
|
|
|
is(gBrowser.contentDocument.characterSet, "windows-1251", "Parent doc should report windows-1251 subsequently");
|
|
is(gBrowser.contentDocument.getElementsByTagName("iframe")[0].contentDocument.characterSet, "HZ-GB-2312", "Child doc should report HZ-GB-2312 subsequently");
|
|
|
|
gBrowser.removeCurrentTab();
|
|
finish();
|
|
}
|