Searched refs:createChild (Results 1 - 25 of 132) sorted by path

123456

/external/chromium-trace/trace-viewer/src/ui/
H A Dcontainer_that_decorates_its_children_test.js11 function createChild() {
39 container.appendChild(createChild());
40 container.appendChild(createChild());
41 container.appendChild(createChild());
48 var c0 = createChild();
56 var c0 = createChild();
64 var c0 = createChild();
65 var c1 = createChild();
74 var c0 = createChild();
75 var c1 = createChild();
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DHTMLImportsController.cpp91 HTMLImportChild* HTMLImportsController::createChild(const KURL& url, HTMLImportLoader* loader, HTMLImport* parent, HTMLImportChildClient* client) function in class:blink::HTMLImportsController
112 HTMLImportChild* child = createChild(request.url(), loader, parent, client);
126 HTMLImportChild* child = createChild(request.url(), loader, parent, client);
H A DHTMLImportsController.h82 HTMLImportChild* createChild(const KURL&, HTMLImportLoader*, HTMLImport* parent, HTMLImportChildClient*);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
H A DAuditLauncherView.js270 this._categoriesElement = this._contentElement.createChild("fieldset", "audit-categories-container");
273 this._contentElement.createChild("div", "flexible-space");
275 this._buttonContainerElement = this._contentElement.createChild("div", "button-container");
277 var labelElement = this._buttonContainerElement.createChild("label");
278 this._auditPresentStateElement = labelElement.createChild("input");
285 labelElement = this._buttonContainerElement.createChild("label");
286 this._auditReloadedStateElement = labelElement.createChild("input");
291 this._launchButton = this._buttonContainerElement.createChild("button", "text-button");
295 this._clearButton = this._buttonContainerElement.createChild("button", "text-button");
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DDOMPresentationUtils.js86 container.createChild("span", "webkit-html-tag-name").textContent = match[1];
88 container.createChild("span", "webkit-html-attribute-value").textContent = match[2];
90 container.createChild("span", "webkit-html-attribute-name").textContent = match[3];
155 container.createChild("tr").createChild("td", "image-container").appendChild(imageElement);
157 container.createChild("tr").createChild("td").createChild("span", "description").textContent = description;
H A DFilterBar.js211 this._filterInputElement = /** @type {!HTMLInputElement} */ (this._filterElement.createChild("input", "search-replace toolbar-replace-control"));
227 this._regexCheckBox = this._filterElement.createChild("input");
232 this._regexLabel = this._filterElement.createChild("label");
472 this._filtersElement.createChild("div", "filter-bitset-filter-divider");
545 var typeFilterElement = this._filtersElement.createChild("li", name);
756 var label = this._filterElement.createChild("label");
757 var checkBorder = label.createChild("div", "checkbox-filter-checkbox");
758 this._checkElement = checkBorder.createChild("div", "checkbox-filter-checkbox-check");
760 var typeElement = label.createChild("span", "type");
H A DFlameChart.js60 this._canvas = this.element.createChild("canvas");
69 this._vScrollElement = this.element.createChild("div", "flame-chart-v-scroll");
70 this._vScrollContent = this._vScrollElement.createChild("div");
73 this._entryInfo = this.element.createChild("div", "profile-entry-info");
74 this._markerHighlighElement = this.element.createChild("div", "flame-chart-marker-highlight-element");
75 this._highlightElement = this.element.createChild("div", "flame-chart-highlight-element");
76 this._selectedElement = this.element.createChild("div", "flame-chart-selected-element");
1057 var row = infoTable.createChild("tr");
1058 row.createChild("td", "title").textContent = entryInfo[i].title;
1059 row.createChild("t
[all...]
H A DHelpScreen.js47 var mainWindow = this.element.createChild("div", "help-window-main");
48 var captionWindow = mainWindow.createChild("div", "help-window-caption");
50 this.contentElement = mainWindow.createChild("div", "help-content");
51 captionWindow.createChild("h1", "help-window-title").textContent = title;
126 var p = this.contentElement.createChild("p");
128 p.createChild("span").textContent = WebInspector.UIString("Remote debugging has been terminated with reason: ");
129 p.createChild("span", "error-message").textContent = reason;
130 p.createChild("br");
131 p.createChild("span").textContent = WebInspector.UIString("Please re-attach to the new target.");
145 var p = this.contentElement.createChild("
[all...]
H A DInspectorView.js59 this._leftToolbarElement = this._toolbarElement.createChild("div", "toolbar-controls-left");
61 this._rightToolbarElement = this._toolbarElement.createChild("div", "toolbar-controls-right");
65 var closeButtonElement = this._closeButtonToolbarItem.createChild("div", "close-button");
H A DObjectPopoverHelper.js79 var title = container.createChild("div", "function-popover-title source-code");
80 var functionName = title.createChild("span", "function-name");
H A DObjectPropertiesSection.js600 var element = rootElement.createChild("span");
H A DOverviewGrid.js173 this._overviewWindowElement = parentElement.createChild("div", "overview-grid-window");
175 this._overviewWindowBordersElement = parentElement.createChild("div", "overview-grid-window-rulers");
176 parentElement.createChild("div", "overview-grid-dividers-background");
178 this._leftResizeElement = parentElement.createChild("div", "overview-grid-window-resizer");
182 this._rightResizeElement = parentElement.createChild("div", "overview-grid-window-resizer overview-grid-window-resizer-right");
H A DPanel.js160 var sidebarTreeElement = this._sidebarElement.createChild("ol", "sidebar-tree");
H A DSearchableView.js44 this._footerElementContainer = this.element.createChild("div", "search-bar status-bar hidden");
47 this._footerElement = this._footerElementContainer.createChild("table", "toolbar-search");
50 this._firstRowElement = this._footerElement.createChild("tr");
51 this._secondRowElement = this._footerElement.createChild("tr", "hidden");
54 var searchControlElementColumn = this._firstRowElement.createChild("td");
55 this._searchControlElement = searchControlElementColumn.createChild("span", "toolbar-search-control");
56 this._searchInputElement = this._searchControlElement.createChild("input", "search-replace");
60 this._matchesElement = this._searchControlElement.createChild("label", "search-results-matches");
63 this._searchNavigationElement = this._searchControlElement.createChild("div", "toolbar-search-navigation-controls");
65 this._searchNavigationPrevElement = this._searchNavigationElement.createChild("di
[all...]
H A DShortcutsScreen.js70 view.element.createChild("header").createChild("h3").createTextChild(WebInspector.UIString("Shortcuts"));
71 var scrollPane = view.element.createChild("div", "help-container-wrapper");
72 var container = scrollPane.createChild("div");
77 var note = scrollPane.createChild("p", "help-footnote");
78 var noteLink = note.createChild("a");
148 var parent = container.createChild("div", "help-block");
150 var headLine = parent.createChild("div", "help-line");
151 headLine.createChild("div", "help-key-cell");
152 headLine.createChild("di
[all...]
H A DTargetsComboBoxController.js31 var option = this._selectElement.createChild("option");
H A DTimelineGrid.js38 this._dividersElement = this.element.createChild("div", "resources-dividers");
42 this._eventDividersElement = this._gridHeaderElement.createChild("div", "resources-event-dividers");
43 this._dividersLabelBarElement = this._gridHeaderElement.createChild("div", "resources-dividers-label-bar");
46 this._leftCurtainElement = this.element.createChild("div", "timeline-cpu-curtain-left");
47 this._rightCurtainElement = this.element.createChild("div", "timeline-cpu-curtain-right");
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
H A DConsoleView.js71 var statusBarElement = this._contentsElement.createChild("div", "console-status-bar");
74 this._filtersContainer = this._contentsElement.createChild("div", "console-filters-header hidden");
93 this._filterStatusTextElement = this._filterStatusMessageElement.createChild("span", "console-info");
95 var resetFiltersLink = this._filterStatusMessageElement.createChild("span", "console-info node-link");
102 this._promptElement = this._messagesElement.createChild("div", "source-code");
107 var selectAllFixer = this._messagesElement.createChild("div", "console-view-fix-select-all");
H A DConsoleViewMessage.js461 var note = section.titleElement.createChild("span", "object-info-state-note");
514 parentElement.createChild("span", "name").createTextChildren("\"", name.replace(/\n/g, "\u21B5"), "\"");
516 parentElement.createChild("span", "name").textContent = name;
523 parentElement.createChild("span").textContent = "\u2026";
549 parentElement.createChild("span").textContent = "\u2026";
702 var dataGridContainer = element.createChild("span");
763 var span = elem.createChild("span", "console-formatted-undefined");
820 var element = rootElement.createChild("span", "error-message");
1003 this.timestampElement = this._element.createChild("span", "console-timestamp");
1099 this._nestingLevelMarkers.push(this._wrapperElement.createChild("di
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/devices/
H A DDevicesView.js16 this._devicesHelp = this.element.createChild("div");
21 this.element.createChild("div", "devices-info").innerHTML = WebInspector.UIString("Click \"Try here\" button, to open the current page in the selected remote browser.");
22 this._devicesList = this.element.createChild("div");
123 deviceSection = this._devicesList.createChild("div", "device");
125 var deviceHeader = deviceSection.createChild("div", "device-header");
126 deviceHeader.createChild("div", "device-name");
127 var deviceSerial = deviceHeader.createChild("div", "device-serial");
129 deviceSection.createChild("div", "device-auth");
154 var browserName = browserSection.createChild("div", "browser-name");
160 var warningSection = browserSection.createChild("di
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
H A DDocumentationView.js84 var emptyPage = this.element.createChild("div", "documentation-empty-page fill");
85 var pageTitle = emptyPage.createChild("div", "documentation-not-found");
87 emptyPage.createChild("div", "documentation-empty-page-align");
116 var descriptionElement = this._element.createChild("div", "documentation-description");
126 var examplesTitle = this._element.createChild("div", "documentation-title");
128 descriptionElement = this._element.createChild("div", "documentation-description");
134 var remarksTitle = this._element.createChild("div", "documentation-title");
136 descriptionElement = this._element.createChild("div", "documentation-description");
168 var returnTypeElement = signature.createChild("span", "documentation-parameter-data-type-value");
171 var methodName = signature.createChild("spa
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DElementsPanel.js52 this.contentElement = stackElement.createChild("div");
62 var crumbsContainer = stackElement.createChild("div");
64 this.crumbsElement = crumbsContainer.createChild("div", "crumbs");
H A DElementsTreeOutline.js2256 var attrSpanElement = parentElement.createChild("span", "webkit-html-attribute");
2257 var attrNameElement = attrSpanElement.createChild("span", "webkit-html-attribute-name");
2263 var attrValueElement = attrSpanElement.createChild("span", "webkit-html-attribute-value");
2312 var pseudoElement = parentElement.createChild("span", "webkit-html-pseudo-element");
2330 var tagElement = parentElement.createChild("span", classes.join(" "));
2332 var tagNameElement = tagElement.createChild("span", isClosingTag ? "" : "webkit-html-tag-name");
2405 var textNodeElement = info.titleDOM.createChild("span", "webkit-html-text-node bogus");
2417 var textNodeElement = info.titleDOM.createChild("span", "webkit-html-text-node");
2429 var newNode = info.titleDOM.createChild("span", "webkit-html-text-node webkit-html-js-node");
2435 var newNode = info.titleDOM.createChild("spa
[all...]
H A DEventListenersSidebarPane.js41 var refreshButton = this.titleElement.createChild("button", "pane-title-button refresh");
45 this.settingsSelectElement = this.titleElement.createChild("select", "select-filter");
47 var option = this.settingsSelectElement.createChild("option");
51 option = this.settingsSelectElement.createChild("option");
136 body.createChild("div", "info").textContent = WebInspector.UIString("No Event Listeners");
181 this._eventBars = this.element.createChild("div", "event-bars");
H A DPlatformFontsSidebarPane.js43 this._fontStatsSection = this.bodyElement.createChild("div", "stats-section");
117 var fontStatElement = this._fontStatsSection.createChild("div", "font-stats-item");
119 var fontNameElement = fontStatElement.createChild("span", "font-name");
122 var fontDelimeterElement = fontStatElement.createChild("span", "delimeter");
125 var fontUsageElement = fontStatElement.createChild("span", "font-usage");

Completed in 527 milliseconds

123456