gecko-dev/browser/base/content/test/general/browser_bug839103.js
Victor Porof f9f5914039 Bug 1561435 - Format browser/base/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36041

--HG--
extra : source : 96b3895a3b2aa2fcb064c85ec5857b7216884556
2019-07-05 09:48:57 +02:00

181 lines
5.5 KiB
JavaScript

const gTestRoot = getRootDirectory(gTestPath).replace(
"chrome://mochitests/content/",
"http://127.0.0.1:8888/"
);
add_task(async function test() {
await BrowserTestUtils.withNewTab(
{ gBrowser, url: "about:blank" },
async function(browser) {
await ContentTask.spawn(browser, gTestRoot, testBody);
}
);
});
// This function runs entirely in the content process. It doesn't have access
// any free variables in this file.
async function testBody(testRoot) {
const gStyleSheet = "bug839103.css";
let loaded = ContentTaskUtils.waitForEvent(this, "load", true);
content.location = testRoot + "test_bug839103.html";
await loaded;
function unexpectedContentEvent(event) {
ok(false, "Received a " + event.type + " event on content");
}
// We've seen the original stylesheet in the document.
// Now add a stylesheet on the fly and make sure we see it.
let doc = content.document;
doc.styleSheetChangeEventsEnabled = true;
doc.addEventListener("StyleSheetAdded", unexpectedContentEvent);
doc.addEventListener("StyleSheetRemoved", unexpectedContentEvent);
doc.addEventListener(
"StyleSheetApplicableStateChanged",
unexpectedContentEvent
);
doc.defaultView.addEventListener("StyleSheetAdded", unexpectedContentEvent);
doc.defaultView.addEventListener("StyleSheetRemoved", unexpectedContentEvent);
doc.defaultView.addEventListener(
"StyleSheetApplicableStateChanged",
unexpectedContentEvent
);
let link = doc.createElement("link");
link.setAttribute("rel", "stylesheet");
link.setAttribute("type", "text/css");
link.setAttribute("href", testRoot + gStyleSheet);
let sheetAdded = ContentTaskUtils.waitForEvent(this, "StyleSheetAdded", true);
let stateChanged = ContentTaskUtils.waitForEvent(
this,
"StyleSheetApplicableStateChanged",
true
);
doc.body.appendChild(link);
let evt = await sheetAdded;
info("received dynamic style sheet event");
is(evt.type, "StyleSheetAdded", "evt.type has expected value");
is(evt.target, doc, "event targets correct document");
ok(evt.stylesheet, "evt.stylesheet is defined");
ok(
evt.stylesheet.toString().includes("CSSStyleSheet"),
"evt.stylesheet is a stylesheet"
);
ok(evt.documentSheet, "style sheet is a document sheet");
evt = await stateChanged;
info("received dynamic style sheet applicable state change event");
is(
evt.type,
"StyleSheetApplicableStateChanged",
"evt.type has expected value"
);
is(evt.target, doc, "event targets correct document");
is(evt.stylesheet, link.sheet, "evt.stylesheet has the right value");
is(evt.applicable, true, "evt.applicable has the right value");
stateChanged = ContentTaskUtils.waitForEvent(
this,
"StyleSheetApplicableStateChanged",
true
);
link.sheet.disabled = true;
evt = await stateChanged;
is(
evt.type,
"StyleSheetApplicableStateChanged",
"evt.type has expected value"
);
info(
'received dynamic style sheet applicable state change event after media="" changed'
);
is(evt.target, doc, "event targets correct document");
is(evt.stylesheet, link.sheet, "evt.stylesheet has the right value");
is(evt.applicable, false, "evt.applicable has the right value");
let sheetRemoved = ContentTaskUtils.waitForEvent(
this,
"StyleSheetRemoved",
true
);
doc.body.removeChild(link);
evt = await sheetRemoved;
info("received dynamic style sheet removal");
is(evt.type, "StyleSheetRemoved", "evt.type has expected value");
is(evt.target, doc, "event targets correct document");
ok(evt.stylesheet, "evt.stylesheet is defined");
ok(
evt.stylesheet.toString().includes("CSSStyleSheet"),
"evt.stylesheet is a stylesheet"
);
ok(
evt.stylesheet.href.includes(gStyleSheet),
"evt.stylesheet is the removed stylesheet"
);
let ruleAdded = ContentTaskUtils.waitForEvent(this, "StyleRuleAdded", true);
doc.querySelector("style").sheet.insertRule("*{color:black}", 0);
evt = await ruleAdded;
info("received style rule added event");
is(evt.type, "StyleRuleAdded", "evt.type has expected value");
is(evt.target, doc, "event targets correct document");
ok(evt.stylesheet, "evt.stylesheet is defined");
ok(
evt.stylesheet.toString().includes("CSSStyleSheet"),
"evt.stylesheet is a stylesheet"
);
ok(evt.rule, "evt.rule is defined");
is(
evt.rule.cssText,
"* { color: black; }",
"evt.rule.cssText has expected value"
);
let ruleChanged = ContentTaskUtils.waitForEvent(
this,
"StyleRuleChanged",
true
);
evt.rule.style.cssText = "color:green";
evt = await ruleChanged;
ok(true, "received style rule changed event");
is(evt.type, "StyleRuleChanged", "evt.type has expected value");
is(evt.target, doc, "event targets correct document");
ok(evt.stylesheet, "evt.stylesheet is defined");
ok(
evt.stylesheet.toString().includes("CSSStyleSheet"),
"evt.stylesheet is a stylesheet"
);
ok(evt.rule, "evt.rule is defined");
is(
evt.rule.cssText,
"* { color: green; }",
"evt.rule.cssText has expected value"
);
let ruleRemoved = ContentTaskUtils.waitForEvent(
this,
"StyleRuleRemoved",
true
);
evt.stylesheet.deleteRule(0);
evt = await ruleRemoved;
info("received style rule removed event");
is(evt.type, "StyleRuleRemoved", "evt.type has expected value");
is(evt.target, doc, "event targets correct document");
ok(evt.stylesheet, "evt.stylesheet is defined");
ok(
evt.stylesheet.toString().includes("CSSStyleSheet"),
"evt.stylesheet is a stylesheet"
);
ok(evt.rule, "evt.rule is defined");
}