summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/compatibility/test/browser/browser_compatibility_event_selected-node-change.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/inspector/compatibility/test/browser/browser_compatibility_event_selected-node-change.js')
-rw-r--r--devtools/client/inspector/compatibility/test/browser/browser_compatibility_event_selected-node-change.js86
1 files changed, 86 insertions, 0 deletions
diff --git a/devtools/client/inspector/compatibility/test/browser/browser_compatibility_event_selected-node-change.js b/devtools/client/inspector/compatibility/test/browser/browser_compatibility_event_selected-node-change.js
new file mode 100644
index 0000000000..d24f450968
--- /dev/null
+++ b/devtools/client/inspector/compatibility/test/browser/browser_compatibility_event_selected-node-change.js
@@ -0,0 +1,86 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+// Test whether the content of the issue list will be changed when the new node is selected.
+
+const TEST_URI = `
+ <style>
+ body {
+ ruby-align: center;
+ }
+
+ .has-issue {
+ scrollbar-width: thin;
+ user-modify: read-only;
+ }
+
+ .no-issue {
+ color: black;
+ }
+ </style>
+ <body>
+ <div class="has-issue">has issue</div>
+ <div class="no-issue">no issue</div>
+ </body>
+`;
+
+const TEST_DATA_SELECTED = [
+ {
+ selector: ".has-issue",
+ expectedIssues: [
+ {
+ property: "scrollbar-width",
+ url: "https://developer.mozilla.org/docs/Web/CSS/scrollbar-width",
+ },
+ {
+ property: "user-modify",
+ url: "https://developer.mozilla.org/docs/Web/CSS/user-modify",
+ },
+ ],
+ },
+ {
+ selector: ".no-issue",
+ expectedIssues: [],
+ },
+ {
+ selector: "body",
+ expectedIssues: [
+ {
+ property: "ruby-align",
+ url: "https://developer.mozilla.org/docs/Web/CSS/ruby-align",
+ },
+ ],
+ },
+];
+
+const TEST_DATA_ALL = [
+ {
+ property: "ruby-align",
+ url: "https://developer.mozilla.org/docs/Web/CSS/ruby-align",
+ },
+ {
+ property: "scrollbar-width",
+ url: "https://developer.mozilla.org/docs/Web/CSS/scrollbar-width",
+ },
+ {
+ property: "user-modify",
+ url: "https://developer.mozilla.org/docs/Web/CSS/user-modify",
+ },
+];
+
+add_task(async function () {
+ await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
+
+ const { allElementsPane, inspector, selectedElementPane } =
+ await openCompatibilityView();
+
+ for (const { selector, expectedIssues } of TEST_DATA_SELECTED) {
+ info(`Check the issue list for ${selector} node`);
+ await selectNode(selector, inspector);
+ await assertIssueList(selectedElementPane, expectedIssues);
+ info("Check whether the issues on all elements pane are not changed");
+ await assertIssueList(allElementsPane, TEST_DATA_ALL);
+ }
+});