• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/

Lines Matching defs:DOMTreeElementPathComponent

26 WebInspector.DOMTreeElementPathComponent = function(domTreeElement, representedObject) {
34 className = WebInspector.DOMTreeElementPathComponent.DOMElementIconStyleClassName;
39 className = WebInspector.DOMTreeElementPathComponent.DOMTextNodeIconStyleClassName;
44 className = WebInspector.DOMTreeElementPathComponent.DOMCommentIconStyleClassName;
49 className = WebInspector.DOMTreeElementPathComponent.DOMDocumentTypeIconStyleClassName;
54 className = WebInspector.DOMTreeElementPathComponent.DOMDocumentIconStyleClassName;
59 className = WebInspector.DOMTreeElementPathComponent.DOMCharacterDataIconStyleClassName;
66 className = WebInspector.DOMTreeElementPathComponent.DOMDocumentTypeIconStyleClassName;
75 className = WebInspector.DOMTreeElementPathComponent.DOMNodeIconStyleClassName;
84 WebInspector.DOMTreeElementPathComponent.DOMElementIconStyleClassName = "dom-element-icon";
85 WebInspector.DOMTreeElementPathComponent.DOMTextNodeIconStyleClassName = "dom-text-node-icon";
86 WebInspector.DOMTreeElementPathComponent.DOMCommentIconStyleClassName = "dom-comment-icon";
87 WebInspector.DOMTreeElementPathComponent.DOMDocumentTypeIconStyleClassName = "dom-document-type-icon";
88 WebInspector.DOMTreeElementPathComponent.DOMDocumentIconStyleClassName = "dom-document-icon";
89 WebInspector.DOMTreeElementPathComponent.DOMCharacterDataIconStyleClassName = "dom-character-data-icon";
90 WebInspector.DOMTreeElementPathComponent.DOMNodeIconStyleClassName = "dom-node-icon";
92 WebInspector.DOMTreeElementPathComponent.prototype = {
93 constructor: WebInspector.DOMTreeElementPathComponent,
106 return new WebInspector.DOMTreeElementPathComponent(this._domTreeElement.previousSibling);
115 return new WebInspector.DOMTreeElementPathComponent(this._domTreeElement.nextSibling);
132 WebInspector.DOMTreeElementPathComponent.prototype.__proto__ = WebInspector.HierarchicalPathComponent.prototype;