gecko-dev/browser/base/content/test/general/browser_bug633691.js
Jared Wein 43bac26d30 Bug 1331661 - Enable the 'quotes' rule for eslint and fix most of the errors with --fix. r=Gijs
MozReview-Commit-ID: 6tv0Z06CO4a

--HG--
extra : rebase_source : 014c0b04d8538dc5f15bc6dd4ed6bd220c55c5d4
2017-01-17 09:48:17 -06:00

28 lines
1.2 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
add_task(function* test() {
const URL = "data:text/html,<iframe width='700' height='700'></iframe>";
yield BrowserTestUtils.withNewTab({ gBrowser, url: URL }, function* (browser) {
yield ContentTask.spawn(browser,
{ is_element_hidden_: is_element_hidden.toSource(),
is_hidden_: is_hidden.toSource() },
function* ({ is_element_hidden_, is_hidden_ }) {
let loadError =
ContentTaskUtils.waitForEvent(this, "AboutNetErrorLoad", false, null, true);
let iframe = content.document.querySelector("iframe");
iframe.src = "https://expired.example.com/";
yield loadError;
let is_hidden = eval(`(() => ${is_hidden_})()`);
let is_element_hidden = eval(`(() => ${is_element_hidden_})()`);
let doc = content.document.getElementsByTagName("iframe")[0].contentDocument;
let aP = doc.getElementById("badCertAdvancedPanel");
ok(aP, "Advanced content should exist");
void is_hidden; // Quiet eslint warnings (actual use under is_element_hidden)
is_element_hidden(aP, "Advanced content should not be visible by default")
});
});
});