Searched refs:textContent (Results 1 - 25 of 69) sorted by relevance

123

/external/webkit/WebCore/svg/
H A DSVGDescElement.cpp39 return textContent().simplifyWhiteSpace();
H A DSVGTitleElement.cpp38 document()->setTitle(textContent(), this);
51 document()->setTitle(textContent(), this);
H A DSVGTRefElement.cpp47 String textContent; local
49 textContent = static_cast<SVGElement*>(target)->textContent();
51 setTextContent(textContent, ignore);
/external/webkit/WebCore/inspector/front-end/
H A DSidebarTreeElement.js153 this.bubbleElement.textContent = x;
159 if (this.titleElement.textContent !== mainTitle)
160 this.titleElement.textContent = mainTitle;
164 if (this.subtitleElement.textContent !== subtitle)
165 this.subtitleElement.textContent = subtitle;
H A DPanelEnablerView.js44 this.headerElement.textContent = headingText;
66 this.disclaimerElement.textContent = disclaimerText;
71 this.enableButton.textContent = buttonTitle;
H A DDatabaseTableView.js65 emptyMsgElement.textContent = WebInspector.UIString("The ā€œ%sā€\ntable is empty.", this.tableName);
80 errorMsgElement.textContent = WebInspector.UIString("An error occurred trying to\nread the ā€œ%sā€ table.", this.tableName);
H A DWelcomeView.js51 this.headerElement.textContent = headingText;
65 // put it into elements using 'innerHTML', not 'textContent'.
H A DTextPrompt.js42 return this.element.textContent;
48 // Append a break element instead of setting textContent to make sure the selection is inside the prompt.
52 this.element.textContent = x;
118 var text = this.autoCompleteElement.textContent;
238 this.autoCompleteElement.textContent = suffixText;
300 if (focusNode.textContent.substring(0, selection.focusOffset).indexOf("\n") !== -1)
307 if (focusNode.textContent.indexOf("\n") !== -1)
322 if (focusNode.textContent.substring(selection.focusOffset).indexOf("\n") !== -1)
329 if (focusNode.textContent.indexOf("\n") !== -1)
H A DTextViewer.js428 var text = lineRow.lastChild.textContent;
443 column += node.textContent.length;
491 markNode.textContent = lineText.substring(startOffset, endOffset);
496 var text = textNode.textContent;
500 textNode.textContent = text.substring(boundary.offset + markLength);
511 textNode.textContent = text.substring(0, boundary.offset);
515 var text = textNode.textContent;
517 textNode.textContent = text.substring(markLength);
522 textNode.textContent = "";
548 this._lineNumberElement.textContent
[all...]
H A DBreakpointsSidebarPane.js37 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
101 sourceTextElement.textContent = breakpoint.sourceText;
165 sourceTextElement.textContent = breakpoint.sourceText;
H A DTimelineGrid.js102 dividerLabelBar._labelElement.textContent = calculator.formatValue(slice * i);
104 dividerLabelBar._labelElement.textContent = "";
H A DAuditLauncherView.js59 this._headerElement.textContent = WebInspector.UIString("No audits to run");
139 this._headerElement.textContent = WebInspector.UIString("Select audits to run");
206 this._launchButton.textContent = WebInspector.UIString("Running...");
208 this._launchButton.textContent = WebInspector.UIString("Run");
H A DDOMSyntaxHighlighter.js48 var lines = node.textContent.split("\n");
H A DImageView.js51 imageNameElement.textContent = this.resource.displayName;
H A DMetricsSidebarPane.js84 element.textContent = value;
134 widthElement.textContent = width;
139 heightElement.textContent = height;
150 labelElement.textContent = boxLabels[i];
H A DPlacard.js57 this.titleElement.textContent = x;
H A DSection.js71 this.titleElement.textContent = x;
H A DSidebarPane.js62 this.titleElement.textContent = x;
H A DWatchExpressionsSidebarPane.js48 addElement.textContent = WebInspector.UIString("Add");
53 refreshElement.textContent = WebInspector.UIString("Refresh");
248 this.nameElement.textContent = this.property.name.trim();
262 if (!this.nameElement.textContent)
H A DDatabaseQueryView.js172 commandTextElement.textContent = query;
182 resultElement.textContent = result;
H A DFontView.js38 this.fontStyleElement.textContent = "@font-face { font-family: \"" + uniqueFontName + "\"; src: url(" + this.resource.url + "); }";
H A DElementsTreeOutline.js561 var nodeName = tag.textContent.match(/^<(.*?)>$/)[1];
562 tag.textContent = '';
647 name.textContent = " ";
662 if (attributeElements[i].textContent === attributeName) {
732 this._htmlEditElement.textContent = initialValue;
750 commitCallback(this._htmlEditElement.textContent);
959 var showInlineText = textChild && textChild.textContent.length < Preferences.maxInlineTextChildLength;
973 newNode.textContent = node.textContent;
981 newNode.textContent
[all...]
H A DObjectPropertiesSection.js167 this.nameElement.textContent = this.property.name;
171 separatorElement.textContent = ": ";
175 this.valueElement.textContent = this.property.value.description;
H A DTimelinePanel.js512 separatorElement.textContent = " ";
529 this._typeElement.textContent = record.title;
532 this._dataElement.textContent = "(" + record.details + ")";
535 this._dataElement.textContent = "";
540 this._repeatCountElement.textContent = "\u2009\u00d7\u2009" + record.count;
542 this._repeatCountElement.textContent = "";
/external/webkit/WebCore/rendering/
H A DHitTestResult.h75 String textContent() const;

Completed in 422 milliseconds

123