Searched refs:titleElement (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DSection.js44 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;
H A DDOMBreakpointsSidebarPane.js400 WebInspector.View.__assert(!pane.titleElement.firstChild, "Cannot create proxy for a sidebar pane with a toolbar");
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dinitial_speech.js45 var titleElement = document.querySelector('head > title');
46 if (titleElement && titleElement.getAttribute('aria-hidden') == 'true') {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DStyleSheetOutlineDialog.js91 * @param {!Element} titleElement
94 renderItem: function(itemIndex, query, titleElement, subtitleElement)
97 titleElement.textContent = rule.selectorText || rule.atRule;
98 this.highlightRanges(titleElement, query);
H A DPlacard.js38 this.titleElement = this.element.createChild("div", "title");
58 this.titleElement.textContent = x;
H A DFilteredItemSelectionDialog.js450 * @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, range
[all...]
H A DNavigatorView.js707 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;
1302 WebInspector.InplaceEditor.startEditing(this._treeElement.titleElement, editingConfig);
1303 window.getSelection().setBaseAndExtent(this._treeElement.titleElement, 0, this._treeElement.titleElement, 1);
H A DWatchExpressionsSidebarPane.js46 this.titleElement.appendChild(refreshButton);
51 this.titleElement.appendChild(addButton);
H A DCallStackSidebarPane.js36 var asyncCheckbox = this.titleElement.appendChild(WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIString("Async"), WebInspector.settings.enableAsyncStackTraces, true, undefined, WebInspector.UIString("Capture async stack traces")));
H A DBreakpointsSidebarPane.js290 var addButton = this.titleElement.createChild("button", "pane-title-button add");
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DSidebarPane.js39 this.titleElement = document.createElementWithClass("div", "sidebar-pane-toolbar");
115 this.element.appendChild(this._pane.titleElement);
211 pane.element.appendChild(pane.titleElement);
H A DSidebarTreeElement.js94 this.titleElement = this.titleContainer.createChild("span", "title");
146 if (this.titleElement.textContent !== mainTitle)
147 this.titleElement.textContent = mainTitle;
H A DTabbedPane.js927 _createIconElement: function(tabElement, titleElement)
932 tabElement.insertBefore(iconElement, titleElement);
947 var titleElement = tabElement.createChild("span", "tabbed-pane-header-tab-title"); variable
948 titleElement.textContent = this.title;
949 titleElement.title = this.tooltip || "";
951 this._createIconElement(tabElement, titleElement);
953 this._titleElement = titleElement;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DEventListenersSidebarPane.js41 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));
H A DStylesSidebarPane.js44 this.titleElement.appendChild(this._elementStateButton);
51 this.titleElement.appendChild(addButton);
1266 this.titleElement.classList.add("styles-selector");
1273 this._mediaListElement = this.titleElement.createChild("div", "media-list");
1277 this.titleElement.appendChild(selectorContainer);
H A DElementsPanel.js1412 matchedStylePanesWrapper.appendChild(this.sidebarPanes.styles.titleElement);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLDocument.java52 final IElement titleElement = IElement.Factory.create (Tag.TITLE).setText (title, false);
53 m_head.add (titleElement);
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DsuggestionPicker.js95 var titleElement = createElement("span", "title", title);
96 content.appendChild(titleElement);
116 var titleElement = createElement("span", "title", title);
117 content.appendChild(titleElement);
H A DcalendarPicker.js2962 var titleElement = createElement("div", CalendarHeaderView.ClassNameCalendarTitle);
2963 this.element.appendChild(titleElement);
2969 this.monthPopupButton.attachTo(titleElement);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMImplementation.cpp333 RefPtrWillBeRawPtr<HTMLTitleElement> titleElement = HTMLTitleElement::create(*d); local
334 headElement->appendChild(titleElement);
335 titleElement->appendChild(d->createTextNode(title), ASSERT_NO_EXCEPTION);
H A DDocument.h720 Element* titleElement() const { return m_titleElement.get(); } function in class:blink::Document
722 void removeTitle(Element* titleElement);
H A DDocument.cpp1384 void Document::setTitleElement(Element* titleElement) argument
1387 if (m_titleElement && m_titleElement != titleElement) {
1394 m_titleElement = titleElement;
1403 void Document::removeTitle(Element* titleElement) argument
1405 if (m_titleElement != titleElement)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
H A DConsoleViewMessage.js445 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");
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DResourcesPanel.js855 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");
1204 this.listItemElement.insertBefore(this._statusElement, this.titleElement);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.cpp221 if (Element* titleElement = Traversal<SVGTitleElement>::firstChild(*this))
222 return titleElement->innerText();

Completed in 4122 milliseconds

12