Home | History | Annotate | Download | only in documentation

Lines Matching refs:documentation

12     this.element.classList.add("documentation-view");
26 WebInspector.inspectorView.showCloseableViewInDrawer("documentation", WebInspector.UIString("Documentation"), view);
84 var emptyPage = this.element.createChild("div", "documentation-empty-page fill");
85 var pageTitle = emptyPage.createChild("div", "documentation-not-found");
86 pageTitle.textContent = WebInspector.UIString("No documentation 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");
149 var pageTitle = document.createElementWithClass("div", "documentation-page-title");
166 var signature = document.createElementWithClass("div", "documentation-method-signature monospace");
168 var returnTypeElement = signature.createChild("span", "documentation-parameter-data-type-value");
171 var methodName = signature.createChild("span", "documentation-method-name");
176 var parameterType = signature.createChild("span", "documentation-parameter-data-type-value");
178 var parameterName = signature.createChild("span", "documentation-parameter-name");
194 var table = document.createElementWithClass("table", "documentation-table");
196 var headerRow = tableBody.createChild("tr", "documentation-table-row");
197 var tableHeader = headerRow.createChild("th", "documentation-table-header");
201 var tableRow = tableBody.createChild("tr", "documentation-table-row");
202 var type = tableRow.createChild("td", "documentation-table-cell");
204 var name = tableRow.createChild("td", "documentation-table-cell");
207 var description = tableRow.createChild("td", "documentation-table-cell");
222 var section = document.createElementWithClass("div", "documentation-section");
225 var example = section.createChild("div", "documentation-example");
226 var exampleDescription = example.createChild("div", "documentation-example-description-section");
229 description.classList.add("documentation-text");
232 var code = example.createChild("div", "documentation-code source-code");
256 element = document.createElementWithClass("a", "documentation-link");
262 element = document.createElementWithClass("span", "documentation-code-tag");
265 element = document.createElementWithClass("pre", "documentation-code source-code");
272 element.classList.add("documentation-highlighted-text");
277 element.classList.add("documentation-paragraph");
304 var tableElement = document.createElementWithClass("table", "documentation-table");
306 var headerRow = tableBody.createChild("tr", "documentation-table-row");
308 var tableHeader = headerRow.createChild("th", "documentation-table-header");
312 var tableRow = tableBody.createChild("tr", "documentation-table-row");
315 var cell = tableRow.createChild("td", "documentation-table-cell");
344 var itemName = WebInspector.useLowerCaseMenuTitles() ? "Loading documentation..." : "Loading Documentation...";
353 var formatString = WebInspector.useLowerCaseMenuTitles() ? "Show documentation for %s.%s" : "Show Documentation for %s.%s";
358 var subMenuItem = contextMenu.appendSubMenuItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Show documentation for..." : "Show Documentation for..."));