summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/shared/test/browser_styleinspector_context-menu-copy-color_02.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/inspector/shared/test/browser_styleinspector_context-menu-copy-color_02.js')
-rw-r--r--devtools/client/inspector/shared/test/browser_styleinspector_context-menu-copy-color_02.js115
1 files changed, 115 insertions, 0 deletions
diff --git a/devtools/client/inspector/shared/test/browser_styleinspector_context-menu-copy-color_02.js b/devtools/client/inspector/shared/test/browser_styleinspector_context-menu-copy-color_02.js
new file mode 100644
index 0000000000..546f3520d0
--- /dev/null
+++ b/devtools/client/inspector/shared/test/browser_styleinspector_context-menu-copy-color_02.js
@@ -0,0 +1,115 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+"use strict";
+
+// Test "Copy color" item of the context menu #2: Test that correct color is
+// copied if the color changes.
+
+const TEST_URI = `
+ <style type="text/css">
+ div {
+ color: #123ABC;
+ }
+ </style>
+ <div>Testing the color picker tooltip!</div>
+`;
+
+add_task(async function () {
+ await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
+
+ const { inspector, view } = await openRuleView();
+
+ await testCopyToClipboard(inspector, view);
+ await testManualEdit(inspector, view);
+ await testColorPickerEdit(inspector, view);
+});
+
+async function testCopyToClipboard(inspector, view) {
+ info("Testing that color is copied to clipboard");
+
+ await selectNode("div", inspector);
+
+ const element = getRuleViewProperty(
+ view,
+ "div",
+ "color"
+ ).valueSpan.querySelector(".ruleview-colorswatch");
+
+ const menu = view.contextMenu._openMenu({ target: element });
+ const allMenuItems = buildContextMenuItems(menu);
+ const menuitemCopyColor = allMenuItems.find(
+ item =>
+ item.label ===
+ STYLE_INSPECTOR_L10N.getStr("styleinspector.contextmenu.copyColor")
+ );
+
+ ok(menuitemCopyColor.visible, "Copy color is visible");
+
+ await waitForClipboardPromise(() => menuitemCopyColor.click(), "#123ABC");
+ ok(true, "expected color was copied to clipboard");
+
+ // close context menu
+ const onContextMenuClose = menu.once("close");
+ menu.hide(element.ownerDocument);
+ await onContextMenuClose;
+}
+
+async function testManualEdit(inspector, view) {
+ info("Testing manually edited colors");
+ await selectNode("div", inspector);
+
+ const colorTextProp = getTextProperty(view, 1, { color: "#123ABC" });
+ const newColor = "#C9184E";
+ await setProperty(view, colorTextProp, newColor);
+
+ const colorValueElement = await waitFor(() => {
+ const el = getRuleViewProperty(view, "div", "color").valueSpan.firstChild;
+ if (el?.dataset?.color !== newColor) {
+ return false;
+ }
+ return el;
+ });
+
+ ok(!!colorValueElement, "data-color was updated");
+
+ const contextMenu = view.contextMenu;
+ contextMenu.currentTarget = colorValueElement;
+ contextMenu._isColorPopup();
+
+ is(contextMenu._colorToCopy, newColor, "_colorToCopy has the new value");
+}
+
+async function testColorPickerEdit(inspector, view) {
+ info("Testing colors edited via color picker");
+ await selectNode("div", inspector);
+
+ const swatchElement = getRuleViewProperty(
+ view,
+ "div",
+ "color"
+ ).valueSpan.querySelector(".ruleview-colorswatch");
+
+ info("Opening the color picker");
+ const picker = view.tooltips.getTooltip("colorPicker");
+ const onColorPickerReady = picker.once("ready");
+ swatchElement.click();
+ await onColorPickerReady;
+
+ const newColor = "#53B759";
+ const { colorUtils } = require("resource://devtools/shared/css/color.js");
+
+ const { r, g, b, a } = new colorUtils.CssColor(newColor).getRGBATuple();
+ await simulateColorPickerChange(view, picker, [r, g, b, a]);
+
+ is(
+ swatchElement.parentNode.dataset.color,
+ newColor,
+ "data-color was updated"
+ );
+
+ const contextMenu = view.contextMenu;
+ contextMenu.currentTarget = swatchElement;
+ contextMenu._isColorPopup();
+
+ is(contextMenu._colorToCopy, newColor, "_colorToCopy has the new value");
+}