2012-08-23 18:00:43 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Cu = Components.utils;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
|
|
|
|
// Page size for pageup/pagedown
|
|
|
|
const PAGE_SIZE = 10;
|
|
|
|
|
|
|
|
var EXPORTED_SYMBOLS = ["MarkupView"];
|
|
|
|
|
|
|
|
Cu.import("resource:///modules/devtools/LayoutHelpers.jsm");
|
|
|
|
Cu.import("resource:///modules/devtools/CssRuleView.jsm");
|
|
|
|
Cu.import("resource:///modules/devtools/Templater.jsm");
|
|
|
|
Cu.import("resource:///modules/devtools/Undo.jsm")
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Vocabulary for the purposes of this file:
|
|
|
|
*
|
|
|
|
* MarkupContainer - the structure that holds an editor and its
|
|
|
|
* immediate children in the markup panel.
|
|
|
|
* Node - A content node.
|
|
|
|
* object.elt - A UI element in the markup panel.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The markup tree. Manages the mapping of nodes to MarkupContainers,
|
|
|
|
* updating based on mutations, and the undo/redo bindings.
|
|
|
|
*
|
|
|
|
* @param Inspector aInspector
|
|
|
|
* The inspector we're watching.
|
|
|
|
* @param iframe aFrame
|
|
|
|
* An iframe in which the caller has kindly loaded markup-view.xhtml.
|
|
|
|
*/
|
|
|
|
function MarkupView(aInspector, aFrame)
|
|
|
|
{
|
|
|
|
this._inspector = aInspector;
|
|
|
|
this._frame = aFrame;
|
|
|
|
this.doc = this._frame.contentDocument;
|
|
|
|
this._elt = this.doc.querySelector("#root");
|
|
|
|
|
|
|
|
this.undo = new UndoStack();
|
|
|
|
this.undo.installController(this._frame.ownerDocument.defaultView);
|
|
|
|
|
|
|
|
this._containers = new WeakMap();
|
|
|
|
|
|
|
|
this._observer = new this.doc.defaultView.MutationObserver(this._mutationObserver.bind(this));
|
|
|
|
|
|
|
|
this._boundSelect = this._onSelect.bind(this);
|
|
|
|
this._inspector.on("select", this._boundSelect);
|
|
|
|
this._onSelect();
|
|
|
|
|
|
|
|
this._boundKeyDown = this._onKeyDown.bind(this);
|
|
|
|
this._frame.addEventListener("keydown", this._boundKeyDown, false);
|
|
|
|
|
|
|
|
this._boundFocus = this._onFocus.bind(this);
|
|
|
|
this._frame.addEventListener("focus", this._boundFocus, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
MarkupView.prototype = {
|
|
|
|
_selectedContainer: null,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the selected node.
|
|
|
|
*/
|
|
|
|
get selected() {
|
|
|
|
return this._selectedContainer ? this._selectedContainer.node : null;
|
|
|
|
},
|
|
|
|
|
|
|
|
template: function MT_template(aName, aDest, aOptions)
|
|
|
|
{
|
|
|
|
let node = this.doc.getElementById("template-" + aName).cloneNode(true);
|
|
|
|
node.removeAttribute("id");
|
|
|
|
template(node, aDest, aOptions);
|
|
|
|
return node;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the MarkupContainer object for a given node, or undefined if
|
|
|
|
* none exists.
|
|
|
|
*/
|
|
|
|
getContainer: function MT_getContainer(aNode)
|
|
|
|
{
|
|
|
|
return this._containers.get(aNode);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Highlight the given element in the markup panel.
|
|
|
|
*/
|
|
|
|
_onSelect: function MT__onSelect()
|
|
|
|
{
|
|
|
|
if (this._inspector.selection) {
|
|
|
|
this.showNode(this._inspector.selection);
|
|
|
|
}
|
|
|
|
this.selectNode(this._inspector.selection);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a TreeWalker to find the next/previous
|
|
|
|
* node for selection.
|
|
|
|
*/
|
|
|
|
_selectionWalker: function MT__seletionWalker(aStart)
|
|
|
|
{
|
|
|
|
let walker = this.doc.createTreeWalker(
|
|
|
|
aStart || this._elt,
|
|
|
|
Ci.nsIDOMNodeFilter.SHOW_ELEMENT,
|
|
|
|
function(aElement) {
|
|
|
|
if (aElement.container && aElement.container.visible) {
|
|
|
|
return Ci.nsIDOMNodeFilter.FILTER_ACCEPT;
|
|
|
|
}
|
|
|
|
return Ci.nsIDOMNodeFilter.FILTER_SKIP;
|
|
|
|
},
|
|
|
|
false
|
|
|
|
);
|
|
|
|
walker.currentNode = this._selectedContainer.elt;
|
|
|
|
return walker;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Key handling.
|
|
|
|
*/
|
|
|
|
_onKeyDown: function MT__KeyDown(aEvent)
|
|
|
|
{
|
|
|
|
let handled = true;
|
|
|
|
|
|
|
|
// Ignore keystrokes that originated in editors.
|
|
|
|
if (aEvent.target.tagName.toLowerCase() === "input" ||
|
|
|
|
aEvent.target.tagName.toLowerCase() === "textarea") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(aEvent.keyCode) {
|
|
|
|
case Ci.nsIDOMKeyEvent.DOM_VK_DELETE:
|
|
|
|
case Ci.nsIDOMKeyEvent.DOM_VK_BACK_SPACE:
|
2012-08-25 00:59:48 +00:00
|
|
|
this.deleteNode(this._selectedContainer.node);
|
2012-08-23 18:00:43 +00:00
|
|
|
break;
|
|
|
|
case Ci.nsIDOMKeyEvent.DOM_VK_HOME:
|
|
|
|
this.navigate(this._containers.get(this._rootNode.firstChild));
|
|
|
|
break;
|
|
|
|
case Ci.nsIDOMKeyEvent.DOM_VK_LEFT:
|
|
|
|
this.collapseNode(this._selectedContainer.node);
|
|
|
|
break;
|
|
|
|
case Ci.nsIDOMKeyEvent.DOM_VK_RIGHT:
|
|
|
|
this.expandNode(this._selectedContainer.node);
|
|
|
|
break;
|
|
|
|
case Ci.nsIDOMKeyEvent.DOM_VK_UP:
|
|
|
|
let prev = this._selectionWalker().previousNode();
|
|
|
|
if (prev) {
|
|
|
|
this.navigate(prev.container);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Ci.nsIDOMKeyEvent.DOM_VK_DOWN:
|
|
|
|
let next = this._selectionWalker().nextNode();
|
|
|
|
if (next) {
|
|
|
|
this.navigate(next.container);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Ci.nsIDOMKeyEvent.DOM_VK_PAGE_UP: {
|
|
|
|
let walker = this._selectionWalker();
|
|
|
|
let selection = this._selectedContainer;
|
|
|
|
for (let i = 0; i < PAGE_SIZE; i++) {
|
|
|
|
let prev = walker.previousNode();
|
|
|
|
if (!prev) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
selection = prev.container;
|
|
|
|
}
|
|
|
|
this.navigate(selection);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Ci.nsIDOMKeyEvent.DOM_VK_PAGE_DOWN: {
|
|
|
|
let walker = this._selectionWalker();
|
|
|
|
let selection = this._selectedContainer;
|
|
|
|
for (let i = 0; i < PAGE_SIZE; i++) {
|
|
|
|
let next = walker.nextNode();
|
|
|
|
if (!next) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
selection = next.container;
|
|
|
|
}
|
|
|
|
this.navigate(selection);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
handled = false;
|
|
|
|
}
|
|
|
|
if (handled) {
|
|
|
|
aEvent.stopPropagation();
|
|
|
|
aEvent.preventDefault();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a node from the DOM.
|
|
|
|
* This is an undoable action.
|
|
|
|
*/
|
|
|
|
deleteNode: function MC__deleteNode(aNode)
|
|
|
|
{
|
2012-08-25 03:37:05 +00:00
|
|
|
let doc = nodeDocument(aNode);
|
|
|
|
if (aNode === doc ||
|
|
|
|
aNode === doc.documentElement ||
|
|
|
|
aNode.nodeType == Ci.nsIDOMNode.DOCUMENT_TYPE_NODE) {
|
2012-08-25 00:59:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-23 18:00:43 +00:00
|
|
|
let parentNode = aNode.parentNode;
|
|
|
|
let sibling = aNode.nextSibling;
|
|
|
|
|
|
|
|
this.undo.do(function() {
|
2012-08-25 18:04:47 +00:00
|
|
|
if (aNode.selected) {
|
|
|
|
this.navigate(this._containers.get(parentNode));
|
|
|
|
}
|
2012-08-23 18:00:43 +00:00
|
|
|
parentNode.removeChild(aNode);
|
2012-08-25 18:04:47 +00:00
|
|
|
}.bind(this), function() {
|
2012-08-23 18:00:43 +00:00
|
|
|
parentNode.insertBefore(aNode, sibling);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If an editable item is focused, select its container.
|
|
|
|
*/
|
|
|
|
_onFocus: function MC__onFocus(aEvent) {
|
|
|
|
let parent = aEvent.target;
|
|
|
|
while (!parent.container) {
|
|
|
|
parent = parent.parentNode;
|
|
|
|
}
|
|
|
|
if (parent) {
|
|
|
|
this.navigate(parent.container, true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a user-requested navigation to a given MarkupContainer,
|
|
|
|
* updating the inspector's currently-selected node.
|
|
|
|
*
|
|
|
|
* @param MarkupContainer aContainer
|
|
|
|
* The container we're navigating to.
|
|
|
|
* @param aIgnoreFocus aIgnoreFocus
|
|
|
|
* If falsy, keyboard focus will be moved to the container too.
|
|
|
|
*/
|
|
|
|
navigate: function MT__navigate(aContainer, aIgnoreFocus)
|
|
|
|
{
|
|
|
|
if (!aContainer) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let node = aContainer.node;
|
|
|
|
this.showNode(node);
|
|
|
|
this.selectNode(node);
|
|
|
|
|
|
|
|
if (this._inspector._IUI.highlighter.isNodeHighlightable(node)) {
|
|
|
|
this._inspector._IUI.select(node, true, false, "treepanel");
|
|
|
|
this._inspector._IUI.highlighter.highlight(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!aIgnoreFocus) {
|
|
|
|
aContainer.focus();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make sure a node is included in the markup tool.
|
|
|
|
*
|
|
|
|
* @param DOMNode aNode
|
|
|
|
* The node in the content document.
|
|
|
|
*
|
|
|
|
* @returns MarkupContainer The MarkupContainer object for this element.
|
|
|
|
*/
|
|
|
|
importNode: function MT_importNode(aNode, aExpand)
|
|
|
|
{
|
|
|
|
if (!aNode) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._containers.has(aNode)) {
|
|
|
|
return this._containers.get(aNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._observer.observe(aNode, {
|
|
|
|
attributes: true,
|
|
|
|
childList: true,
|
|
|
|
characterData: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
let walker = documentWalker(aNode);
|
|
|
|
let parent = walker.parentNode();
|
|
|
|
if (parent) {
|
|
|
|
// Make sure parents of this node are imported too.
|
|
|
|
var container = new MarkupContainer(this, aNode);
|
|
|
|
} else {
|
|
|
|
var container = new RootContainer(this, aNode);
|
|
|
|
this._elt.appendChild(container.elt);
|
|
|
|
this._rootNode = aNode;
|
|
|
|
aNode.addEventListener("load", function MP_watch_contentLoaded(aEvent) {
|
|
|
|
// Fake a childList mutation here.
|
|
|
|
this._mutationObserver([{target: aEvent.target, type: "childList"}]);
|
|
|
|
}.bind(this), true);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this._containers.set(aNode, container);
|
|
|
|
container.expanded = aExpand;
|
|
|
|
|
|
|
|
this._updateChildren(container);
|
|
|
|
|
|
|
|
if (parent) {
|
|
|
|
this.importNode(parent, true);
|
|
|
|
}
|
|
|
|
return container;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mutation observer used for included nodes.
|
|
|
|
*/
|
|
|
|
_mutationObserver: function MT__mutationObserver(aMutations)
|
|
|
|
{
|
|
|
|
for (let mutation of aMutations) {
|
|
|
|
let container = this._containers.get(mutation.target);
|
2012-08-25 18:04:46 +00:00
|
|
|
if (!container) {
|
|
|
|
// Container might not exist if this came from a load event for an iframe
|
|
|
|
// we're not viewing.
|
|
|
|
continue;
|
|
|
|
}
|
2012-08-23 18:00:43 +00:00
|
|
|
if (mutation.type === "attributes" || mutation.type === "characterData") {
|
|
|
|
container.update();
|
|
|
|
} else if (mutation.type === "childList") {
|
|
|
|
this._updateChildren(container);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this._inspector._emit("markupmutation");
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make sure the given node's parents are expanded and the
|
|
|
|
* node is scrolled on to screen.
|
|
|
|
*/
|
|
|
|
showNode: function MT_showNode(aNode)
|
|
|
|
{
|
|
|
|
this.importNode(aNode);
|
|
|
|
let walker = documentWalker(aNode);
|
|
|
|
let parent;
|
|
|
|
while (parent = walker.parentNode()) {
|
|
|
|
this.expandNode(parent);
|
|
|
|
}
|
2012-08-25 00:51:38 +00:00
|
|
|
LayoutHelpers.scrollIntoViewIfNeeded(this._containers.get(aNode).editor.elt, false);
|
2012-08-23 18:00:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Expand the container's children.
|
|
|
|
*/
|
|
|
|
_expandContainer: function MT__expandContainer(aContainer)
|
|
|
|
{
|
|
|
|
if (aContainer.hasChildren && !aContainer.expanded) {
|
|
|
|
aContainer.expanded = true;
|
|
|
|
this._updateChildren(aContainer);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Expand the node's children.
|
|
|
|
*/
|
|
|
|
expandNode: function MT_expandNode(aNode)
|
|
|
|
{
|
|
|
|
let container = this._containers.get(aNode);
|
|
|
|
this._expandContainer(container);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Expand the entire tree beneath a container.
|
|
|
|
*
|
|
|
|
* @param aContainer The container to expand.
|
|
|
|
*/
|
|
|
|
_expandAll: function MT_expandAll(aContainer)
|
|
|
|
{
|
|
|
|
this._expandContainer(aContainer);
|
|
|
|
let child = aContainer.children.firstChild;
|
|
|
|
while (child) {
|
|
|
|
this._expandAll(child.container);
|
|
|
|
child = child.nextSibling;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Expand the entire tree beneath a node.
|
|
|
|
*
|
|
|
|
* @param aContainer The node to expand, or null
|
|
|
|
* to start from the top.
|
|
|
|
*/
|
|
|
|
expandAll: function MT_expandAll(aNode)
|
|
|
|
{
|
|
|
|
aNode = aNode || this._rootNode;
|
|
|
|
this._expandAll(this._containers.get(aNode));
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Collapse the node's children.
|
|
|
|
*/
|
|
|
|
collapseNode: function MT_collapseNode(aNode)
|
|
|
|
{
|
|
|
|
let container = this._containers.get(aNode);
|
|
|
|
container.expanded = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark the given node selected.
|
|
|
|
*/
|
|
|
|
selectNode: function MT_selectNode(aNode)
|
|
|
|
{
|
|
|
|
let container = this._containers.get(aNode);
|
|
|
|
if (this._selectedContainer === container) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (this._selectedContainer) {
|
|
|
|
this._selectedContainer.selected = false;
|
|
|
|
}
|
|
|
|
this._selectedContainer = container;
|
|
|
|
if (aNode) {
|
|
|
|
this._selectedContainer.selected = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._selectedContainer.focus();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
2012-08-25 18:04:47 +00:00
|
|
|
/**
|
|
|
|
* Called when the markup panel initiates a change on a node.
|
|
|
|
*/
|
|
|
|
nodeChanged: function MT_nodeChanged(aNode)
|
|
|
|
{
|
|
|
|
if (aNode === this._inspector.selection) {
|
|
|
|
this._inspector.change("markupview");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-08-23 18:00:43 +00:00
|
|
|
/**
|
|
|
|
* Make sure all children of the given container's node are
|
|
|
|
* imported and attached to the container in the right order.
|
|
|
|
*/
|
|
|
|
_updateChildren: function MT__updateChildren(aContainer)
|
|
|
|
{
|
|
|
|
// Get a tree walker pointing at the first child of the node.
|
|
|
|
let treeWalker = documentWalker(aContainer.node);
|
|
|
|
let child = treeWalker.firstChild();
|
|
|
|
aContainer.hasChildren = !!child;
|
|
|
|
if (aContainer.expanded) {
|
|
|
|
let lastContainer = null;
|
|
|
|
while (child) {
|
|
|
|
let container = this.importNode(child, false);
|
|
|
|
|
|
|
|
// Make sure children are in the right order.
|
|
|
|
let before = lastContainer ? lastContainer.nextSibling : aContainer.children.firstChild;
|
|
|
|
aContainer.children.insertBefore(container.elt, before);
|
|
|
|
lastContainer = container.elt;
|
|
|
|
child = treeWalker.nextSibling();
|
|
|
|
}
|
|
|
|
|
|
|
|
while (aContainer.children.lastChild != lastContainer) {
|
|
|
|
aContainer.children.removeChild(aContainer.children.lastChild);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tear down the markup panel.
|
|
|
|
*/
|
|
|
|
destroy: function MT_destroy()
|
|
|
|
{
|
|
|
|
this.undo.destroy();
|
|
|
|
delete this.undo;
|
|
|
|
|
|
|
|
this._frame.addEventListener("focus", this._boundFocus, false);
|
|
|
|
delete this._boundFocus;
|
|
|
|
|
|
|
|
this._frame.removeEventListener("keydown", this._boundKeyDown, true);
|
|
|
|
delete this._boundKeyDown;
|
|
|
|
|
|
|
|
this._inspector.removeListener("select", this._boundSelect);
|
|
|
|
delete this._boundSelect;
|
|
|
|
|
|
|
|
delete this._elt;
|
|
|
|
|
|
|
|
delete this._containers;
|
|
|
|
this._observer.disconnect();
|
|
|
|
delete this._observer;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The main structure for storing a document node in the markup
|
|
|
|
* tree. Manages creation of the editor for the node and
|
|
|
|
* a <ul> for placing child elements, and expansion/collapsing
|
|
|
|
* of the element.
|
|
|
|
*
|
|
|
|
* @param MarkupView aMarkupView
|
|
|
|
* The markup view that owns this container.
|
|
|
|
* @param DOMNode aNode
|
|
|
|
* The node to display.
|
|
|
|
*/
|
|
|
|
function MarkupContainer(aMarkupView, aNode)
|
|
|
|
{
|
|
|
|
this.markup = aMarkupView;
|
|
|
|
this.doc = this.markup.doc;
|
|
|
|
this.undo = this.markup.undo;
|
|
|
|
this.node = aNode;
|
|
|
|
|
|
|
|
if (aNode.nodeType == Ci.nsIDOMNode.TEXT_NODE) {
|
|
|
|
this.editor = new TextEditor(this, aNode, "text");
|
|
|
|
} else if (aNode.nodeType == Ci.nsIDOMNode.COMMENT_NODE) {
|
|
|
|
this.editor = new TextEditor(this, aNode, "comment");
|
|
|
|
} else if (aNode.nodeType == Ci.nsIDOMNode.ELEMENT_NODE) {
|
|
|
|
this.editor = new ElementEditor(this, aNode);
|
|
|
|
} else if (aNode.nodeType == Ci.nsIDOMNode.DOCUMENT_TYPE_NODE) {
|
|
|
|
this.editor = new DoctypeEditor(this, aNode);
|
|
|
|
} else {
|
|
|
|
this.editor = new GenericEditor(this.markup, aNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The template will fill the following properties
|
|
|
|
this.elt = null;
|
|
|
|
this.expander = null;
|
|
|
|
this.codeBox = null;
|
|
|
|
this.children = null;
|
|
|
|
let options = { stack: "markup-view.xhtml" };
|
|
|
|
this.markup.template("container", this, options);
|
|
|
|
|
|
|
|
this.elt.container = this;
|
|
|
|
|
|
|
|
this.expander.addEventListener("click", function() {
|
|
|
|
this.markup.navigate(this);
|
|
|
|
|
|
|
|
if (this.expanded) {
|
|
|
|
this.markup.collapseNode(this.node);
|
|
|
|
} else {
|
|
|
|
this.markup.expandNode(this.node);
|
|
|
|
}
|
|
|
|
}.bind(this));
|
|
|
|
|
|
|
|
this.codeBox.insertBefore(this.editor.elt, this.children);
|
|
|
|
|
|
|
|
this.editor.elt.addEventListener("mousedown", function(evt) {
|
|
|
|
this.markup.navigate(this);
|
|
|
|
}.bind(this), false);
|
|
|
|
|
|
|
|
if (this.editor.closeElt) {
|
|
|
|
this.codeBox.appendChild(this.editor.closeElt);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
MarkupContainer.prototype = {
|
|
|
|
/**
|
|
|
|
* True if the current node has children. The MarkupView
|
|
|
|
* will set this attribute for the MarkupContainer.
|
|
|
|
*/
|
|
|
|
_hasChildren: false,
|
|
|
|
|
|
|
|
get hasChildren() {
|
|
|
|
return this._hasChildren;
|
|
|
|
},
|
|
|
|
|
|
|
|
set hasChildren(aValue) {
|
|
|
|
this._hasChildren = aValue;
|
|
|
|
if (aValue) {
|
|
|
|
this.expander.style.visibility = "visible";
|
|
|
|
} else {
|
|
|
|
this.expander.style.visibility = "hidden";
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* True if the node has been visually expanded in the tree.
|
|
|
|
*/
|
|
|
|
get expanded() {
|
|
|
|
return this.children.hasAttribute("expanded");
|
|
|
|
},
|
|
|
|
|
|
|
|
set expanded(aValue) {
|
|
|
|
if (aValue) {
|
|
|
|
this.expander.setAttribute("expanded", "");
|
|
|
|
this.children.setAttribute("expanded", "");
|
|
|
|
} else {
|
|
|
|
this.expander.removeAttribute("expanded");
|
|
|
|
this.children.removeAttribute("expanded");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* True if the container is visible in the markup tree.
|
|
|
|
*/
|
|
|
|
get visible()
|
|
|
|
{
|
|
|
|
return this.elt.getBoundingClientRect().height > 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* True if the container is currently selected.
|
|
|
|
*/
|
|
|
|
_selected: false,
|
|
|
|
|
|
|
|
get selected() {
|
|
|
|
return this._selected;
|
|
|
|
},
|
|
|
|
|
|
|
|
set selected(aValue) {
|
|
|
|
this._selected = aValue;
|
|
|
|
if (this._selected) {
|
|
|
|
this.editor.elt.classList.add("selected");
|
|
|
|
if (this.editor.closeElt) {
|
|
|
|
this.editor.closeElt.classList.add("selected");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.editor.elt.classList.remove("selected");
|
|
|
|
if (this.editor.closeElt) {
|
|
|
|
this.editor.closeElt.classList.remove("selected");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the container's editor to the current state of the
|
|
|
|
* viewed node.
|
|
|
|
*/
|
|
|
|
update: function MC_update()
|
|
|
|
{
|
|
|
|
if (this.editor.update) {
|
|
|
|
this.editor.update();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try to put keyboard focus on the current editor.
|
|
|
|
*/
|
|
|
|
focus: function MC_focus()
|
|
|
|
{
|
|
|
|
let focusable = this.editor.elt.querySelector("[tabindex]");
|
|
|
|
if (focusable) {
|
|
|
|
focusable.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dummy container node used for the root document element.
|
|
|
|
*/
|
|
|
|
function RootContainer(aMarkupView, aNode)
|
|
|
|
{
|
|
|
|
this.doc = aMarkupView.doc;
|
|
|
|
this.elt = this.doc.createElement("ul");
|
|
|
|
this.children = this.elt;
|
|
|
|
this.node = aNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an editor for simple nodes.
|
|
|
|
*/
|
|
|
|
function GenericEditor(aContainer, aNode)
|
|
|
|
{
|
|
|
|
this.elt = aContainer.doc.createElement("span");
|
|
|
|
this.elt.className = "editor";
|
|
|
|
this.elt.textContent = aNode.nodeName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an editor for a DOCTYPE node.
|
|
|
|
*
|
|
|
|
* @param MarkupContainer aContainer The container owning this editor.
|
|
|
|
* @param DOMNode aNode The node being edited.
|
|
|
|
*/
|
|
|
|
function DoctypeEditor(aContainer, aNode)
|
|
|
|
{
|
|
|
|
this.elt = aContainer.doc.createElement("span");
|
|
|
|
this.elt.className = "editor comment";
|
|
|
|
this.elt.textContent = '<!DOCTYPE ' + aNode.name +
|
|
|
|
(aNode.publicId ? ' PUBLIC "' + aNode.publicId + '"': '') +
|
|
|
|
(aNode.systemId ? ' "' + aNode.systemId + '"' : '') +
|
|
|
|
'>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a simple text editor node, used for TEXT and COMMENT
|
|
|
|
* nodes.
|
|
|
|
*
|
|
|
|
* @param MarkupContainer aContainer The container owning this editor.
|
|
|
|
* @param DOMNode aNode The node being edited.
|
|
|
|
* @param string aTemplate The template id to use to build the editor.
|
|
|
|
*/
|
|
|
|
function TextEditor(aContainer, aNode, aTemplate)
|
|
|
|
{
|
|
|
|
this.node = aNode;
|
|
|
|
|
|
|
|
aContainer.markup.template(aTemplate, this);
|
|
|
|
|
|
|
|
_editableField({
|
|
|
|
element: this.value,
|
|
|
|
stopOnReturn: true,
|
|
|
|
trigger: "dblclick",
|
|
|
|
multiline: true,
|
|
|
|
done: function TE_done(aVal, aCommit) {
|
|
|
|
if (!aCommit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let oldValue = this.node.nodeValue;
|
|
|
|
aContainer.undo.do(function() {
|
|
|
|
this.node.nodeValue = aVal;
|
2012-08-25 18:04:47 +00:00
|
|
|
aContainer.markup.nodeChanged(this.node);
|
2012-08-23 18:00:43 +00:00
|
|
|
}.bind(this), function() {
|
|
|
|
this.node.nodeValue = oldValue;
|
2012-08-25 18:04:47 +00:00
|
|
|
aContainer.markup.nodeChanged(this.node);
|
2012-08-23 18:00:43 +00:00
|
|
|
}.bind(this));
|
|
|
|
}.bind(this)
|
|
|
|
});
|
|
|
|
|
|
|
|
this.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
TextEditor.prototype = {
|
|
|
|
update: function TE_update()
|
|
|
|
{
|
|
|
|
this.value.textContent = this.node.nodeValue;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an editor for an Element node.
|
|
|
|
*
|
|
|
|
* @param MarkupContainer aContainer The container owning this editor.
|
|
|
|
* @param Element aNode The node being edited.
|
|
|
|
*/
|
|
|
|
function ElementEditor(aContainer, aNode)
|
|
|
|
{
|
|
|
|
this.doc = aContainer.doc;
|
|
|
|
this.undo = aContainer.undo;
|
|
|
|
this.template = aContainer.markup.template.bind(aContainer.markup);
|
2012-08-25 18:04:46 +00:00
|
|
|
this.container = aContainer;
|
2012-08-25 18:04:47 +00:00
|
|
|
this.markup = this.container.markup;
|
2012-08-23 18:00:43 +00:00
|
|
|
this.node = aNode;
|
|
|
|
|
|
|
|
this.attrs = [];
|
|
|
|
|
|
|
|
// The templates will fill the following properties
|
|
|
|
this.elt = null;
|
|
|
|
this.tag = null;
|
|
|
|
this.attrList = null;
|
|
|
|
this.newAttr = null;
|
|
|
|
this.closeElt = null;
|
|
|
|
let options = { stack: "markup-view.xhtml" };
|
|
|
|
|
|
|
|
// Create the main editor
|
|
|
|
this.template("element", this, options);
|
|
|
|
|
|
|
|
// Create the closing tag
|
|
|
|
this.template("elementClose", this, options);
|
|
|
|
|
|
|
|
// Make the tag name editable (unless this is a document element)
|
|
|
|
if (aNode != aNode.ownerDocument.documentElement) {
|
|
|
|
this.tag.setAttribute("tabindex", "0");
|
|
|
|
_editableField({
|
|
|
|
element: this.tag,
|
|
|
|
trigger: "dblclick",
|
|
|
|
stopOnReturn: true,
|
|
|
|
done: this.onTagEdit.bind(this),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the new attribute space editable.
|
|
|
|
_editableField({
|
|
|
|
element: this.newAttr,
|
|
|
|
trigger: "dblclick",
|
|
|
|
stopOnReturn: true,
|
|
|
|
done: function EE_onNew(aVal, aCommit) {
|
|
|
|
if (!aCommit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._applyAttributes(aVal);
|
|
|
|
}.bind(this)
|
|
|
|
});
|
|
|
|
|
|
|
|
let tagName = this.node.nodeName.toLowerCase();
|
|
|
|
this.tag.textContent = tagName;
|
|
|
|
this.closeTag.textContent = tagName;
|
|
|
|
|
|
|
|
this.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
ElementEditor.prototype = {
|
|
|
|
/**
|
|
|
|
* Update the state of the editor from the node.
|
|
|
|
*/
|
|
|
|
update: function EE_update()
|
|
|
|
{
|
|
|
|
let attrs = this.node.attributes;
|
|
|
|
if (!attrs) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hide all the attribute editors, they'll be re-shown if they're
|
|
|
|
// still applicable. Don't update attributes that are being
|
|
|
|
// actively edited.
|
|
|
|
let attrEditors = this.attrList.querySelectorAll(".attreditor");
|
|
|
|
for (let i = 0; i < attrEditors.length; i++) {
|
|
|
|
if (!attrEditors[i].inplaceEditor) {
|
|
|
|
attrEditors[i].style.display = "none";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the attribute editor for each attribute that exists on
|
|
|
|
// the node and show it.
|
|
|
|
for (let i = 0; i < attrs.length; i++) {
|
|
|
|
let attr = this._createAttribute(attrs[i]);
|
|
|
|
if (!attr.inplaceEditor) {
|
|
|
|
attr.style.removeProperty("display");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_createAttribute: function EE_createAttribute(aAttr, aBefore)
|
|
|
|
{
|
|
|
|
if (aAttr.name in this.attrs) {
|
|
|
|
var attr = this.attrs[aAttr.name];
|
|
|
|
var name = attr.querySelector(".attrname");
|
|
|
|
var val = attr.querySelector(".attrvalue");
|
|
|
|
} else {
|
|
|
|
// Create the template editor, which will save some variables here.
|
|
|
|
let data = {
|
|
|
|
attrName: aAttr.name,
|
|
|
|
};
|
|
|
|
let options = { stack: "markup-view.xhtml" };
|
|
|
|
this.template("attribute", data, options);
|
|
|
|
var {attr, inner, name, val} = data;
|
|
|
|
|
|
|
|
// Figure out where we should place the attribute.
|
|
|
|
let before = aBefore || null;
|
|
|
|
if (aAttr.name == "id") {
|
|
|
|
before = this.attrList.firstChild;
|
|
|
|
} else if (aAttr.name == "class") {
|
|
|
|
let idNode = this.attrs["id"];
|
|
|
|
before = idNode ? idNode.nextSibling : this.attrList.firstChild;
|
|
|
|
}
|
|
|
|
this.attrList.insertBefore(attr, before);
|
|
|
|
|
|
|
|
// Make the attribute editable.
|
|
|
|
_editableField({
|
|
|
|
element: inner,
|
|
|
|
trigger: "dblclick",
|
|
|
|
stopOnReturn: true,
|
|
|
|
selectAll: false,
|
|
|
|
start: function EE_editAttribute_start(aEditor, aEvent) {
|
|
|
|
// If the editing was started inside the name or value areas,
|
|
|
|
// select accordingly.
|
|
|
|
if (aEvent.target === name) {
|
|
|
|
aEditor.input.setSelectionRange(0, name.textContent.length);
|
|
|
|
} else if (aEvent.target === val) {
|
|
|
|
let length = val.textContent.length;
|
|
|
|
let editorLength = aEditor.input.value.length;
|
|
|
|
let start = editorLength - (length + 1);
|
|
|
|
aEditor.input.setSelectionRange(start, start + length);
|
|
|
|
} else {
|
|
|
|
aEditor.input.select();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
done: function EE_editAttribute_done(aVal, aCommit) {
|
|
|
|
if (!aCommit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.undo.startBatch();
|
|
|
|
|
|
|
|
// Remove the attribute stored in this editor and re-add any attributes
|
|
|
|
// parsed out of the input element.
|
|
|
|
this._removeAttribute(this.node, aAttr.name)
|
|
|
|
this._applyAttributes(aVal, attr);
|
|
|
|
|
|
|
|
this.undo.endBatch();
|
|
|
|
}.bind(this)
|
|
|
|
});
|
|
|
|
|
|
|
|
this.attrs[aAttr.name] = attr;
|
|
|
|
}
|
|
|
|
|
|
|
|
name.textContent = aAttr.name;
|
|
|
|
val.textContent = aAttr.value;
|
|
|
|
|
|
|
|
return attr;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a user-entered attribute string and apply the resulting
|
|
|
|
* attributes to the node. This operation is undoable.
|
|
|
|
*
|
|
|
|
* @param string aValue the user-entered value.
|
|
|
|
* @param Element aAttrNode the attribute editor that created this
|
|
|
|
* set of attributes, used to place new attributes where the
|
|
|
|
* user put them.
|
|
|
|
*/
|
|
|
|
_applyAttributes: function EE__applyAttributes(aValue, aAttrNode)
|
|
|
|
{
|
|
|
|
// Create a dummy node for parsing the attribute list.
|
|
|
|
let dummyNode = this.doc.createElement("div");
|
|
|
|
|
|
|
|
let parseTag = (this.node.namespaceURI.match(/svg/i) ? "svg" :
|
|
|
|
(this.node.namespaceURI.match(/mathml/i) ? "math" : "div"));
|
|
|
|
let parseText = "<" + parseTag + " " + aValue + "/>";
|
|
|
|
dummyNode.innerHTML = parseText;
|
|
|
|
let parsedNode = dummyNode.firstChild;
|
|
|
|
|
|
|
|
let attrs = parsedNode.attributes;
|
|
|
|
|
|
|
|
this.undo.startBatch();
|
|
|
|
|
|
|
|
for (let i = 0; i < attrs.length; i++) {
|
|
|
|
// Create an attribute editor next to the current attribute if needed.
|
|
|
|
this._createAttribute(attrs[i], aAttrNode ? aAttrNode.nextSibling : null);
|
|
|
|
this._setAttribute(this.node, attrs[i].name, attrs[i].value);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.undo.endBatch();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for _setAttribute and _removeAttribute,
|
|
|
|
* returns a function that puts an attribute back the way it was.
|
|
|
|
*/
|
|
|
|
_restoreAttribute: function EE_restoreAttribute(aNode, aName)
|
|
|
|
{
|
|
|
|
if (aNode.hasAttribute(aName)) {
|
|
|
|
let oldValue = aNode.getAttribute(aName);
|
2012-08-25 18:04:47 +00:00
|
|
|
return function() {
|
|
|
|
aNode.setAttribute(aName, oldValue);
|
|
|
|
this.markup.nodeChanged(aNode);
|
|
|
|
}.bind(this);
|
2012-08-23 18:00:43 +00:00
|
|
|
} else {
|
2012-08-25 18:04:47 +00:00
|
|
|
return function() {
|
|
|
|
aNode.removeAttribute(aName);
|
|
|
|
this.markup.nodeChanged(aNode);
|
|
|
|
}.bind(this);
|
2012-08-23 18:00:43 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets an attribute. This operation is undoable.
|
|
|
|
*/
|
|
|
|
_setAttribute: function EE_setAttribute(aNode, aName, aValue)
|
|
|
|
{
|
|
|
|
this.undo.do(function() {
|
|
|
|
aNode.setAttribute(aName, aValue);
|
2012-08-25 18:04:47 +00:00
|
|
|
this.markup.nodeChanged(aNode);
|
|
|
|
}.bind(this), this._restoreAttribute(aNode, aName));
|
2012-08-23 18:00:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes an attribute. This operation is undoable.
|
|
|
|
*/
|
|
|
|
_removeAttribute: function EE_removeAttribute(aNode, aName)
|
|
|
|
{
|
|
|
|
this.undo.do(function() {
|
|
|
|
aNode.removeAttribute(aName);
|
2012-08-25 18:04:47 +00:00
|
|
|
this.markup.nodeChanged(aNode);
|
|
|
|
}.bind(this), this._restoreAttribute(aNode, aName));
|
2012-08-23 18:00:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for the new attribute editor.
|
|
|
|
*/
|
|
|
|
_onNewAttribute: function EE_onNewAttribute(aValue, aCommit)
|
|
|
|
{
|
|
|
|
if (!aValue || !aCommit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._setAttribute(this.node, aValue, "");
|
|
|
|
let attr = this._createAttribute({ name: aValue, value: ""});
|
|
|
|
attr.style.removeAttribute("display");
|
|
|
|
attr.querySelector("attrvalue").click();
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the tag name editor has is done editing.
|
|
|
|
*/
|
|
|
|
onTagEdit: function EE_onTagEdit(aVal, aCommit) {
|
|
|
|
if (!aCommit || aVal == this.node.tagName) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new element with the same attributes as the
|
|
|
|
// current element and prepare to replace the current node
|
|
|
|
// with it.
|
2012-08-25 18:04:46 +00:00
|
|
|
try {
|
|
|
|
var newElt = nodeDocument(this.node).createElement(aVal);
|
|
|
|
} catch(x) {
|
|
|
|
// Failed to create a new element with that tag name, ignore
|
|
|
|
// the change.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-23 18:00:43 +00:00
|
|
|
let attrs = this.node.attributes;
|
|
|
|
|
|
|
|
for (let i = 0 ; i < attrs.length; i++) {
|
|
|
|
newElt.setAttribute(attrs[i].name, attrs[i].value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function swapNodes(aOld, aNew) {
|
|
|
|
while (aOld.firstChild) {
|
|
|
|
aNew.appendChild(aOld.firstChild);
|
|
|
|
}
|
|
|
|
aOld.parentNode.insertBefore(aNew, aOld);
|
|
|
|
aOld.parentNode.removeChild(aOld);
|
|
|
|
}
|
|
|
|
|
2012-08-25 18:04:46 +00:00
|
|
|
let markup = this.container.markup;
|
|
|
|
|
2012-08-23 18:00:43 +00:00
|
|
|
// Queue an action to swap out the element.
|
|
|
|
this.undo.do(function() {
|
|
|
|
swapNodes(this.node, newElt);
|
2012-08-25 18:04:46 +00:00
|
|
|
|
|
|
|
// Make sure the new node is imported and is expanded/selected
|
|
|
|
// the same as the current node.
|
|
|
|
let newContainer = markup.importNode(newElt, this.container.expanded);
|
|
|
|
newContainer.expanded = this.container.expanded;
|
|
|
|
if (this.container.selected) {
|
|
|
|
markup.navigate(newContainer);
|
|
|
|
}
|
2012-08-23 18:00:43 +00:00
|
|
|
}.bind(this), function() {
|
|
|
|
swapNodes(newElt, this.node);
|
2012-08-25 18:04:46 +00:00
|
|
|
|
|
|
|
let newContainer = markup._containers.get(newElt);
|
|
|
|
this.container.expanded = newContainer.expanded;
|
|
|
|
if (newContainer.selected) {
|
|
|
|
markup.navigate(this.container);
|
|
|
|
}
|
2012-08-23 18:00:43 +00:00
|
|
|
}.bind(this));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RootContainer.prototype = {
|
|
|
|
hasChildren: true,
|
|
|
|
expanded: true,
|
|
|
|
update: function RC_update() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
function documentWalker(node) {
|
|
|
|
return new DocumentWalker(node, Ci.nsIDOMNodeFilter.SHOW_ALL, whitespaceTextFilter, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function nodeDocument(node) {
|
|
|
|
return node.ownerDocument || (node.nodeType == Ci.nsIDOMNode.DOCUMENT_NODE ? node : null);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Similar to a TreeWalker, except will dig in to iframes and it doesn't
|
|
|
|
* implement the good methods like previousNode and nextNode.
|
|
|
|
*
|
|
|
|
* See TreeWalker documentation for explanations of the methods.
|
|
|
|
*/
|
|
|
|
function DocumentWalker(aNode, aShow, aFilter, aExpandEntityReferences)
|
|
|
|
{
|
|
|
|
let doc = nodeDocument(aNode);
|
|
|
|
this.walker = doc.createTreeWalker(nodeDocument(aNode),
|
|
|
|
aShow, aFilter, aExpandEntityReferences);
|
|
|
|
this.walker.currentNode = aNode;
|
|
|
|
this.filter = aFilter;
|
|
|
|
}
|
|
|
|
|
|
|
|
DocumentWalker.prototype = {
|
|
|
|
get node() this.walker.node,
|
|
|
|
get whatToShow() this.walker.whatToShow,
|
|
|
|
get expandEntityReferences() this.walker.expandEntityReferences,
|
|
|
|
get currentNode() this.walker.currentNode,
|
|
|
|
set currentNode(aVal) this.walker.currentNode = aVal,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the new node is in a different document than
|
|
|
|
* the current node, creates a new treewalker for the document we've
|
|
|
|
* run in to.
|
|
|
|
*/
|
|
|
|
_reparentWalker: function DW_reparentWalker(aNewNode) {
|
|
|
|
if (!aNewNode) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
let doc = nodeDocument(aNewNode);
|
|
|
|
let walker = doc.createTreeWalker(doc,
|
|
|
|
this.whatToShow, this.filter, this.expandEntityReferences);
|
|
|
|
walker.currentNode = aNewNode;
|
|
|
|
this.walker = walker;
|
|
|
|
return aNewNode;
|
|
|
|
},
|
|
|
|
|
|
|
|
parentNode: function DW_parentNode()
|
|
|
|
{
|
|
|
|
let currentNode = this.walker.currentNode;
|
|
|
|
let parentNode = this.walker.parentNode();
|
|
|
|
|
|
|
|
if (!parentNode) {
|
|
|
|
if (currentNode && currentNode.nodeType == Ci.nsIDOMNode.DOCUMENT_NODE
|
|
|
|
&& currentNode.defaultView) {
|
|
|
|
let embeddingFrame = currentNode.defaultView.frameElement;
|
|
|
|
if (embeddingFrame) {
|
|
|
|
return this._reparentWalker(embeddingFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parentNode;
|
|
|
|
},
|
|
|
|
|
|
|
|
firstChild: function DW_firstChild()
|
|
|
|
{
|
|
|
|
let node = this.walker.currentNode;
|
|
|
|
if (!node)
|
|
|
|
return;
|
|
|
|
if (node.contentDocument) {
|
|
|
|
return this._reparentWalker(node.contentDocument);
|
|
|
|
} else if (node instanceof nodeDocument(node).defaultView.GetSVGDocument) {
|
|
|
|
return this._reparentWalker(node.getSVGDocument());
|
|
|
|
}
|
|
|
|
return this.walker.firstChild();
|
|
|
|
},
|
|
|
|
|
|
|
|
lastChild: function DW_lastChild()
|
|
|
|
{
|
|
|
|
let node = this.walker.currentNode;
|
|
|
|
if (!node)
|
|
|
|
return;
|
|
|
|
if (node.contentDocument) {
|
|
|
|
return this._reparentWalker(node.contentDocument);
|
|
|
|
} else if (node instanceof nodeDocument(node).defaultView.GetSVGDocument) {
|
|
|
|
return this._reparentWalker(node.getSVGDocument());
|
|
|
|
}
|
|
|
|
return this.walker.lastChild();
|
|
|
|
},
|
|
|
|
|
|
|
|
previousSibling: function DW_previousSibling() this.walker.previousSibling(),
|
|
|
|
nextSibling: function DW_nextSibling() this.walker.nextSibling(),
|
|
|
|
|
|
|
|
// XXX bug 785143: not doing previousNode or nextNode, which would sure be useful.
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A tree walker filter for avoiding empty whitespace text nodes.
|
|
|
|
*/
|
|
|
|
function whitespaceTextFilter(aNode)
|
|
|
|
{
|
|
|
|
if (aNode.nodeType == Ci.nsIDOMNode.TEXT_NODE &&
|
|
|
|
!/[^\s]/.exec(aNode.nodeValue)) {
|
|
|
|
return Ci.nsIDOMNodeFilter.FILTER_SKIP;
|
|
|
|
} else {
|
|
|
|
return Ci.nsIDOMNodeFilter.FILTER_ACCEPT;
|
|
|
|
}
|
|
|
|
}
|