HomeSort by relevance Sort by last modified time
    Searched refs:titleElement (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
Section.js 44 this.titleElement = document.createElement("div");
45 this.titleElement.className = "title";
51 this.headerElement.appendChild(this.titleElement);
74 this.titleElement.removeChildren();
75 this.titleElement.appendChild(x);
77 this.titleElement.textContent = x;
DOMBreakpointsSidebarPane.js 400 WebInspector.View.__assert(!pane.titleElement.firstChild, "Cannot create proxy for a sidebar pane with a toolbar");
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
StyleSheetOutlineDialog.js 91 * @param {!Element} titleElement
94 renderItem: function(itemIndex, query, titleElement, subtitleElement)
97 titleElement.textContent = rule.selectorText || rule.atRule;
98 this.highlightRanges(titleElement, query);
Placard.js 38 this.titleElement = this.element.createChild("div", "title");
58 this.titleElement.textContent = x;
FilteredItemSelectionDialog.js 450 * @param {!Element} titleElement
453 renderItem: function(itemIndex, query, titleElement, subtitleElement)
604 * @param {!Element} titleElement
607 renderItem: function(itemIndex, query, titleElement, subtitleElement)
610 titleElement.textContent = item.name + (item.arguments ? item.arguments : "");
611 this.highlightRanges(titleElement, query);
739 * @param {!Element} titleElement
743 renderItem: function(itemIndex, query, titleElement, subtitleElement)
747 titleElement.textContent = uiSourceCode.displayName() + (this._queryLineNumberAndColumnNumber || "");
759 return WebInspector.highlightRangesWithStyleClass(titleElement, ranges, "highlight")
    [all...]
NavigatorView.js 707 this.titleElement = this.listItemElement.createChild("div", "base-navigator-tree-element-title");
708 this.titleElement.textContent = this._titleText;
742 if (this.titleElement) {
743 this.titleElement.textContent = this._titleText;
744 this.titleElement.title = this._titleText;
    [all...]
WatchExpressionsSidebarPane.js 46 this.titleElement.appendChild(refreshButton);
51 this.titleElement.appendChild(addButton);
CallStackSidebarPane.js 36 var asyncCheckbox = this.titleElement.appendChild(WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIString("Async"), WebInspector.settings.enableAsyncStackTraces, true, undefined, WebInspector.UIString("Capture async stack traces")));
BreakpointsSidebarPane.js 290 var addButton = this.titleElement.createChild("button", "pane-title-button add");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SidebarTreeElement.js 94 this.titleElement = this.titleContainer.createChild("span", "title");
146 if (this.titleElement.textContent !== mainTitle)
147 this.titleElement.textContent = mainTitle;
SidebarPane.js 39 this.titleElement = document.createElementWithClass("div", "sidebar-pane-toolbar");
115 this.element.appendChild(this._pane.titleElement);
211 pane.element.appendChild(pane.titleElement);
TabbedPane.js 927 _createIconElement: function(tabElement, titleElement)
932 tabElement.insertBefore(iconElement, titleElement);
947 var titleElement = tabElement.createChild("span", "tabbed-pane-header-tab-title");
948 titleElement.textContent = this.title;
949 titleElement.title = this.tooltip || "";
951 this._createIconElement(tabElement, titleElement);
953 this._titleElement = titleElement;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
EventListenersSidebarPane.js 41 var refreshButton = this.titleElement.createChild("button", "pane-title-button refresh");
45 this.settingsSelectElement = this.titleElement.createChild("select", "select-filter");
258 this.titleElement.textContent = "document";
263 this.titleElement.textContent = WebInspector.DOMPresentationUtils.simpleSelector(node);
267 this.titleElement.removeChildren();
268 this.titleElement.appendChild(WebInspector.DOMPresentationUtils.linkifyNodeReference(node));
StylesSidebarPane.js 44 this.titleElement.appendChild(this._elementStateButton);
51 this.titleElement.appendChild(addButton);
    [all...]
ElementsPanel.js     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
initial_speech.js 45 var titleElement = document.querySelector('head > title');
46 if (titleElement && titleElement.getAttribute('aria-hidden') == 'true') {
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 52 final IElement titleElement = IElement.Factory.create (Tag.TITLE).setText (title, false);
53 m_head.add (titleElement);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMImplementation.cpp 333 RefPtrWillBeRawPtr<HTMLTitleElement> titleElement = HTMLTitleElement::create(*d);
334 headElement->appendChild(titleElement);
335 titleElement->appendChild(d->createTextNode(title), ASSERT_NO_EXCEPTION);
Document.h 720 Element* titleElement() const { return m_titleElement.get(); }
722 void removeTitle(Element* titleElement);
    [all...]
Document.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
ConsoleViewMessage.js 445 var titleElement = document.createElement("span");
447 titleElement.classList.add("console-object-preview");
448 var lossless = this._appendObjectPreview(titleElement, obj.preview, obj);
450 elem.appendChild(titleElement);
451 titleElement.addEventListener("contextmenu", this._contextMenuEventFired.bind(this, obj), false);
455 titleElement.createTextChild(obj.description || "");
457 var section = new WebInspector.ObjectPropertiesSection(obj, titleElement);
461 var note = section.titleElement.createChild("span", "object-info-state-note");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/resources/
suggestionPicker.js 95 var titleElement = createElement("span", "title", title);
96 content.appendChild(titleElement);
116 var titleElement = createElement("span", "title", title);
117 content.appendChild(titleElement);
calendarPicker.js     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
ResourcesPanel.js 855 this.titleElement = this.listItemElement.createChild("div", "base-storage-tree-element-title");
856 this._titleTextNode = this.titleElement.createTextChild("");
877 if (!this.titleElement)
887 if (!this.titleElement)
892 this._subtitleElement = this.titleElement.createChild("span", "base-storage-tree-element-subtitle");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 221 if (Element* titleElement = Traversal<SVGTitleElement>::firstChild(*this))
222 return titleElement->innerText();
    [all...]

Completed in 1445 milliseconds

1 2