summaryrefslogtreecommitdiffstats
path: root/browser/components/extensions/test/browser/browser_ext_popup_background.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/extensions/test/browser/browser_ext_popup_background.js')
-rw-r--r--browser/components/extensions/test/browser/browser_ext_popup_background.js133
1 files changed, 133 insertions, 0 deletions
diff --git a/browser/components/extensions/test/browser/browser_ext_popup_background.js b/browser/components/extensions/test/browser/browser_ext_popup_background.js
new file mode 100644
index 000000000..8b310c674
--- /dev/null
+++ b/browser/components/extensions/test/browser/browser_ext_popup_background.js
@@ -0,0 +1,133 @@
+/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* vim: set sts=2 sw=2 et tw=80: */
+"use strict";
+
+add_task(function* testPopupBackground() {
+ let extension = ExtensionTestUtils.loadExtension({
+ background() {
+ browser.tabs.query({active: true, currentWindow: true}, tabs => {
+ browser.pageAction.show(tabs[0].id);
+ });
+ },
+
+ manifest: {
+ "browser_action": {
+ "default_popup": "popup.html",
+ "browser_style": false,
+ },
+
+ "page_action": {
+ "default_popup": "popup.html",
+ "browser_style": false,
+ },
+ },
+
+ files: {
+ "popup.html": `<!DOCTYPE html>
+ <html>
+ <head>
+ <meta charset="utf-8">
+ </head>
+ <body style="width: 100px; height: 100px; background-color: green;">
+ </body>
+ </html>`,
+ },
+ });
+
+ yield extension.startup();
+
+ function* testPanel(browser, standAlone) {
+ let panel = getPanelForNode(browser);
+ let arrowContent = document.getAnonymousElementByAttribute(panel, "class", "panel-arrowcontent");
+ let arrow = document.getAnonymousElementByAttribute(panel, "anonid", "arrow");
+
+ let borderColor = getComputedStyle(arrowContent).borderTopColor;
+
+ let checkArrow = (background = null) => {
+ let image = getComputedStyle(arrow).listStyleImage;
+
+ if (background == null || !standAlone) {
+ ok(image.startsWith('url("chrome://'), `We should have the built-in background image (got: ${image})`);
+ return;
+ }
+
+ if (AppConstants.platform == "mac") {
+ // Panels have a drop shadow rather than a border on OS-X, so we extend
+ // the background color through the border area instead.
+ borderColor = background;
+ }
+
+ image = decodeURIComponent(image);
+ let borderIndex = image.indexOf(`fill="${borderColor}"`);
+ let backgroundIndex = image.lastIndexOf(`fill="${background}"`);
+
+ ok(borderIndex >= 0, `Have border fill (index=${borderIndex})`);
+ ok(backgroundIndex >= 0, `Have background fill (index=${backgroundIndex})`);
+ is(getComputedStyle(arrowContent).backgroundColor, background, "Arrow content should have correct background");
+ isnot(borderIndex, backgroundIndex, "Border and background fills are separate elements");
+ };
+
+ function getBackground(browser) {
+ return ContentTask.spawn(browser, null, function* () {
+ return content.getComputedStyle(content.document.body)
+ .backgroundColor;
+ });
+ }
+
+ /* eslint-disable mozilla/no-cpows-in-tests */
+ let setBackground = color => {
+ content.document.body.style.backgroundColor = color;
+ };
+ /* eslint-enable mozilla/no-cpows-in-tests */
+
+ yield new Promise(resolve => setTimeout(resolve, 100));
+
+ info("Test that initial background color is applied");
+
+ checkArrow(yield getBackground(browser));
+
+ info("Test that dynamically-changed background color is applied");
+
+ yield alterContent(browser, setBackground, "black");
+
+ checkArrow(yield getBackground(browser));
+
+ info("Test that non-opaque background color results in default styling");
+
+ yield alterContent(browser, setBackground, "rgba(1, 2, 3, .9)");
+
+ checkArrow(null);
+ }
+
+ {
+ info("Test stand-alone browserAction popup");
+
+ clickBrowserAction(extension);
+ let browser = yield awaitExtensionPanel(extension);
+ yield testPanel(browser, true);
+ yield closeBrowserAction(extension);
+ }
+
+ {
+ info("Test menu panel browserAction popup");
+
+ let widget = getBrowserActionWidget(extension);
+ CustomizableUI.addWidgetToArea(widget.id, CustomizableUI.AREA_PANEL);
+
+ clickBrowserAction(extension);
+ let browser = yield awaitExtensionPanel(extension);
+ yield testPanel(browser, false);
+ yield closeBrowserAction(extension);
+ }
+
+ {
+ info("Test pageAction popup");
+
+ clickPageAction(extension);
+ let browser = yield awaitExtensionPanel(extension);
+ yield testPanel(browser, true);
+ yield closePageAction(extension);
+ }
+
+ yield extension.unload();
+});