mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
41ba1acfa5
--HG-- extra : rebase_source : d8414b8de165cf2fa534719c36416d82d21872c6
42 lines
1.7 KiB
JavaScript
42 lines
1.7 KiB
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
|
|
// Navigate to a site with a broken cert
|
|
window.addEventListener("DOMContentLoaded", testBrokenCert, true);
|
|
content.location = "https://nocert.example.com/";
|
|
}
|
|
|
|
function testBrokenCert() {
|
|
window.removeEventListener("DOMContentLoaded", testBrokenCert, true);
|
|
|
|
// Confirm that we are displaying the contributed error page, not the default
|
|
ok(/^about:certerror/.test(gBrowser.contentDocument.documentURI), "Broken page should go to about:certerror, not about:neterror");
|
|
|
|
// Confirm that the expert section is collapsed
|
|
var expertDiv = gBrowser.contentDocument.getElementById("expertContent");
|
|
ok(expertDiv, "Expert content div should exist");
|
|
ok(expertDiv.hasAttribute("collapsed"), "Expert content should be collapsed by default");
|
|
|
|
// Tweak the expert mode pref
|
|
gPrefService.setBoolPref("browser.xul.error_pages.expert_bad_cert", true);
|
|
|
|
window.addEventListener("DOMContentLoaded", testExpertPref, true);
|
|
gBrowser.reload();
|
|
}
|
|
|
|
function testExpertPref() {
|
|
window.removeEventListener("DOMContentLoaded", testExpertPref, true);
|
|
var expertDiv = gBrowser.contentDocument.getElementById("expertContent");
|
|
var technicalDiv = gBrowser.contentDocument.getElementById("technicalContent");
|
|
ok(!expertDiv.hasAttribute("collapsed"), "Expert content should not be collapsed with the expert mode pref set");
|
|
ok(!technicalDiv.hasAttribute("collapsed"), "Technical content should not be collapsed with the expert mode pref set");
|
|
|
|
// Clean up
|
|
gBrowser.removeCurrentTab();
|
|
if (gPrefService.prefHasUserValue("browser.xul.error_pages.expert_bad_cert"))
|
|
gPrefService.clearUserPref("browser.xul.error_pages.expert_bad_cert");
|
|
finish();
|
|
}
|