summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/views/slotted-node-editor.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--devtools/client/inspector/markup/views/slotted-node-editor.js63
1 files changed, 63 insertions, 0 deletions
diff --git a/devtools/client/inspector/markup/views/slotted-node-editor.js b/devtools/client/inspector/markup/views/slotted-node-editor.js
new file mode 100644
index 0000000000..d70311e4dc
--- /dev/null
+++ b/devtools/client/inspector/markup/views/slotted-node-editor.js
@@ -0,0 +1,63 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+const { LocalizationHelper } = require("resource://devtools/shared/l10n.js");
+const INSPECTOR_L10N = new LocalizationHelper(
+ "devtools/client/locales/inspector.properties"
+);
+
+function SlottedNodeEditor(container, node) {
+ this.container = container;
+ this.markup = this.container.markup;
+ this.buildMarkup();
+ this.tag.textContent = "<" + node.nodeName.toLowerCase() + ">";
+
+ // Make the "tag" part of this editor focusable.
+ this.tag.setAttribute("tabindex", "-1");
+}
+
+SlottedNodeEditor.prototype = {
+ buildMarkup() {
+ const doc = this.markup.doc;
+
+ this.elt = doc.createElement("span");
+ this.elt.classList.add("editor");
+
+ this.tag = doc.createElement("span");
+ this.tag.classList.add("tag");
+ this.elt.appendChild(this.tag);
+
+ this.revealLink = doc.createElement("span");
+ this.revealLink.setAttribute("role", "link");
+ this.revealLink.setAttribute("tabindex", -1);
+ this.revealLink.title = INSPECTOR_L10N.getStr(
+ "markupView.revealLink.tooltip"
+ );
+ this.revealLink.classList.add("reveal-link");
+ this.elt.appendChild(this.revealLink);
+ },
+
+ destroy() {
+ // We might be already destroyed.
+ if (!this.elt) {
+ return;
+ }
+
+ this.elt.remove();
+ this.elt = null;
+ this.tag = null;
+ this.revealLink = null;
+ },
+
+ /**
+ * Stub method for consistency with ElementEditor.
+ */
+ getInfoAtNode() {
+ return null;
+ },
+};
+
+module.exports = SlottedNodeEditor;