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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DecodedDataDocumentParser.cpp 69 RefPtr<Element> titleElement = m_document->titleElement();
70 if (!titleElement
71 || titleElement->firstElementChild()
73 || !titleElement->textContent().containsOnlyLatin1())
75 CString originalBytes = titleElement->textContent().latin1();
78 titleElement->setTextContent(correctlyDecodedTitle, IGNORE_EXCEPTION);
Document.h 758 Element* titleElement() const { return m_titleElement.get(); }
759 void setTitleElement(const StringWithDirection&, Element* titleElement);
760 void removeTitle(Element* titleElement);
    [all...]
Document.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Placard.js 37 this.titleElement = document.createElement("div");
38 this.titleElement.className = "title";
44 this.element.appendChild(this.titleElement);
63 this.titleElement.textContent = x;
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;
StyleSheetOutlineDialog.js 90 * @param {Element} titleElement
93 renderItem: function(itemIndex, query, titleElement, subtitleElement)
96 titleElement.textContent = rule.selectorText;
97 this.highlightRanges(titleElement, query);
SidebarPane.js 38 this.titleElement = document.createElement("div");
39 this.titleElement.className = "sidebar-pane-toolbar";
115 this.element.appendChild(this._pane.titleElement);
196 pane.element.appendChild(pane.titleElement);
SidebarTreeElement.js 103 this.titleElement = document.createElement("span");
104 this.titleElement.className = "title";
105 this.titlesElement.appendChild(this.titleElement);
184 if (this.titleElement.textContent !== mainTitle)
185 this.titleElement.textContent = mainTitle;
EventListenersSidebarPane.js 62 this.titleElement.appendChild(this.settingsSelectElement);
228 this.titleElement.textContent = "document";
233 this.titleElement.textContent = node.appropriateSelectorFor();
237 this.titleElement.removeChildren();
238 this.titleElement.appendChild(WebInspector.DOMPresentationUtils.linkifyNodeReference(this.eventListener.node));
ConsoleMessage.js 359 var titleElement = document.createElement("span");
361 titleElement.createTextChild(description);
363 titleElement.addStyleClass("console-object-preview");
364 var lossless = this._appendObjectPreview(obj, description, titleElement);
366 elem.appendChild(titleElement);
370 var section = new WebInspector.ObjectPropertiesSection(obj, titleElement);
374 var note = section.titleElement.createChild("span", "object-info-state-note");
381 * @param {Element} titleElement
384 _appendObjectPreview: function(obj, description, titleElement)
390 titleElement.createTextChild(" ")
    [all...]
FilteredItemSelectionDialog.js 384 * @param {Element} titleElement
387 renderItem: function(itemIndex, query, titleElement, subtitleElement)
545 * @param {Element} titleElement
548 renderItem: function(itemIndex, query, titleElement, subtitleElement)
551 titleElement.textContent = item.name + (item.arguments ? item.arguments : "");
552 this.highlightRanges(titleElement, query);
658 * @param {Element} titleElement
661 renderItem: function(itemIndex, query, titleElement, subtitleElement)
665 titleElement.textContent = uiSourceCode.displayName() + (this._queryLineNumber ? this._queryLineNumber : "");
677 return WebInspector.highlightRangesWithStyleClass(titleElement, ranges, "highlight")
    [all...]
TabbedPane.js 771 _createIconElement: function(tabElement, titleElement)
777 tabElement.insertBefore(iconElement, titleElement);
791 var titleElement = tabElement.createChild("span", "tabbed-pane-header-tab-title");
792 titleElement.textContent = this.title;
793 titleElement.title = this.tooltip || "";
795 this._createIconElement(tabElement, titleElement);
797 this._titleElement = titleElement;
NavigatorView.js 459 this.titleElement = document.createElement("div");
460 this.titleElement.className = "base-navigator-tree-element-title";
463 this.titleElement.appendChild(this._titleTextNode);
464 this.listItemElement.appendChild(this.titleElement);
486 if (this.titleElement)
487 this.titleElement.textContent = this._titleText;
997 WebInspector.startEditing(this._treeElement.titleElement, editingConfig);
998 window.getSelection().setBaseAndExtent(this._treeElement.titleElement, 0, this._treeElement.titleElement, 1);
    [all...]
ResourcesPanel.js     [all...]
WatchExpressionsSidebarPane.js 46 this.titleElement.appendChild(refreshButton);
51 this.titleElement.appendChild(addButton);
ElementsPanel.js     [all...]
StylesSidebarPane.js 70 this.titleElement.appendChild(this.settingsSelectElement);
76 this.titleElement.appendChild(this._elementStateButton);
83 this.titleElement.appendChild(addButton);
    [all...]
DOMBreakpointsSidebarPane.js 362 WebInspector.View._assert(!pane.titleElement.firstChild, "Cannot create proxy for a sidebar pane with a toolbar");
BreakpointsSidebarPane.js 292 this.titleElement.appendChild(addButton);
  /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/Resources/pagepopups/
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/core/svg/
SVGElement.cpp 264 Element* titleElement = ElementTraversal::firstWithin(this);
265 for (; titleElement; titleElement = ElementTraversal::nextSkippingChildren(titleElement, this)) {
266 if (titleElement->hasTagName(SVGNames::titleTag) && titleElement->isSVGElement())
271 if (titleElement)
272 return titleElement->innerText();
    [all...]
  /external/chromium_org/chrome/browser/resources/local_ntp/
local_ntp.js 558 var titleElement = document.createElement('iframe');
559 titleElement.tabIndex = '-1';
575 titleElement.src = getMostVisitedIframeUrl(
580 titleElement.id = 'title-' + rid;
581 titleElement.hidden = true;
582 titleElement.onload = function() {
583 titleElement.hidden = false;
586 titleElement.className = CLASSES.TITLE;
587 tileElement.appendChild(titleElement);
  /external/chromium/chrome/browser/resources/
new_new_tab.js 828 var titleElement = content.firstElementChild;
829 titleElement.textContent = newMessage.title;
830 var messageElement = titleElement.nextElementSibling;
    [all...]

Completed in 629 milliseconds

1 2