/external/webkit/Source/WebCore/inspector/front-end/ |
NetworkItemView.js | 42 this._tabbedPane.appendTab("headers", WebInspector.UIString("Headers"), this._headersView); 47 this._tabbedPane.appendTab("content", WebInspector.UIString("Content"), contentView); 54 this._tabbedPane.appendTab("json", WebInspector.UIString("JSON"), jsonView); 60 this._tabbedPane.appendTab("cookies", WebInspector.UIString("Cookies"), this._cookiesView); 65 this._tabbedPane.appendTab("timing", WebInspector.UIString("Timing"), timingView);
|
ScopeChainSidebarPane.js | 28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Scope Variables")); 42 infoElement.textContent = WebInspector.UIString("Not Paused"); 71 title = WebInspector.UIString("Local"); 72 emptyPlaceholder = WebInspector.UIString("No Variables"); 78 title = WebInspector.UIString("Closure"); 79 emptyPlaceholder = WebInspector.UIString("No Variables"); 83 title = WebInspector.UIString("Catch"); 86 title = WebInspector.UIString("With Block"); 89 title = WebInspector.UIString("Global");
|
ResourceHeadersView.js | 79 this._requestPayloadTreeElement = new TreeElement(WebInspector.UIString("Request Payload"), null, true); 105 this._urlTreeElement.titleHTML = "<div class=\"header-name\">" + WebInspector.UIString("Request URL") + ":</div>" + 114 this._refreshParms(WebInspector.UIString("Query String Parameters"), queryParameters, this._queryStringTreeElement); 129 this._refreshParms(WebInspector.UIString("Form Data"), formParameters, this._formDataTreeElement); 156 headerCount.textContent = WebInspector.UIString(" (%d)", parms.length); 159 var toggleTitle = this._decodeRequestParameters ? WebInspector.UIString("view URL encoded") : WebInspector.UIString("view decoded"); 184 valueEscaped += " <span class=\"error-message\">" + WebInspector.UIString("(unable to decode value)").escapeHTML() + "</span>"; 218 this._refreshHeadersText(WebInspector.UIString("Request Headers"), this._resource.requestHeadersText, this._requestHeadersTreeElement); 220 this._refreshHeaders(WebInspector.UIString("Request Headers"), this._resource.sortedRequestHeaders, additionalRow, this._requestHeadersTreeEl (…) [all...] |
CallStackSidebarPane.js | 28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Call Stack")); 44 infoElement.textContent = WebInspector.UIString("Not Paused"); 51 var title = callFrame.functionName || WebInspector.UIString("(anonymous function)"); 57 subtitle = WebInspector.UIString("(internal script)"); 68 placard.subtitle = WebInspector.UIString("line %d", lineNumber + 1); 69 placard._text = WebInspector.UIString("%s() at %s", placard.title, placard.subtitle); 143 contextMenu.appendItem(WebInspector.UIString("Copy Stack Trace"), this._copyStackTrace.bind(this)); 167 section.addRelatedKeys([ nextCallFrame.name, prevCallFrame.name ], WebInspector.UIString("Next/previous call frame"));
|
DatabaseTableView.js | 36 this.refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item"); 65 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);
|
ResourceCookiesView.js | 49 this._emptyMsgElement.textContent = WebInspector.UIString("This request has no cookies."); 61 this._cookiesTable.addCookiesFolder(WebInspector.UIString("Request Cookies"), this._resource.requestCookies); 62 this._cookiesTable.addCookiesFolder(WebInspector.UIString("Response Cookies"), this._resource.responseCookies);
|
ImageView.js | 84 { name: WebInspector.UIString("Dimensions"), value: WebInspector.UIString("%d × %d", imagePreviewElement.naturalWidth, imagePreviewElement.naturalHeight) }, 85 { name: WebInspector.UIString("File size"), value: Number.bytesToString(resourceSize) }, 86 { name: WebInspector.UIString("MIME type"), value: this.resource.mimeType } 99 dt.textContent = WebInspector.UIString("URL");
|
WorkersSidebarPane.js | 33 WebInspector.SidebarPane.call(this, WebInspector.UIString("Workers")); 38 WebInspector.UIString("Debug"), 40 WebInspector.UIString("Allow debugging workers. Enabling this option will replace native workers with the iframe-based JavaScript implementation"));
|
ApplicationCacheItemsView.js | 35 this.deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-bar-item"); 41 this.refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item"); 68 this._emptyMsgElement.textContent = WebInspector.UIString("No Application Cache information available."); 129 this.connectivityMessage.textContent = WebInspector.UIString("Online"); 132 this.connectivityMessage.textContent = WebInspector.UIString("Offline"); 171 this._treeElement.subtitle = WebInspector.UIString("%s (%s)", lastPathComponent, totalSizeString); 175 // WebInspector.UIString("(%s) Created: %s Updated: %s", this._size, this._creationTime, this._updateTime); 181 columns[0].title = WebInspector.UIString("Resource"); 184 columns[1].title = WebInspector.UIString("Type"); 186 columns[2].title = WebInspector.UIString("Size") [all...] |
CookiesTable.js | 36 columns[0].title = WebInspector.UIString("Name"); 40 columns[1].title = WebInspector.UIString("Value"); 43 columns[2].title = WebInspector.UIString("Domain"); 46 columns[3].title = WebInspector.UIString("Path"); 49 columns[4].title = WebInspector.UIString("Expires"); 52 columns[5].title = WebInspector.UIString("Size"); 56 columns[6].title = WebInspector.UIString("HTTP"); 60 columns[7].title = WebInspector.UIString("Secure"); 189 (cookie.session ? WebInspector.UIString("Session") : new Date(cookie.expires).toGMTString());
|
ResourceTimingView.js | 48 this._emptyMsgElement.textContent = WebInspector.UIString("This request has no detailed timing info."); 88 addRow(WebInspector.UIString("Proxy"), "proxy", resource.timing.proxyStart, resource.timing.proxyEnd); 91 addRow(WebInspector.UIString("DNS Lookup"), "dns", resource.timing.dnsStart, resource.timing.dnsEnd); 95 addRow(WebInspector.UIString("Blocking"), "connecting", resource.timing.connectStart, resource.timing.connectEnd); 101 addRow(WebInspector.UIString("Connecting"), "connecting", connectStart, resource.timing.connectEnd); 106 addRow(WebInspector.UIString("SSL"), "ssl", resource.timing.sslStart, resource.timing.sslEnd); 112 addRow(WebInspector.UIString("Sending"), "sending", resource.timing.sendStart, resource.timing.sendEnd); 113 addRow(WebInspector.UIString("Waiting"), "waiting", resource.timing.sendEnd, resource.timing.receiveHeadersEnd); 114 addRow(WebInspector.UIString("Receiving"), "receiving", (resource.responseReceivedTime - resource.timing.requestTime) * 1000, (resource.endTime - resource.timing.requestTime) * 1000);
|
DetailedHeapshotView.js | 34 object: { title: WebInspector.UIString("Object"), disclosure: true, sortable: true, sort: "ascending" }, 35 shallowSize: { title: WebInspector.UIString("Shallow Size"), width: "90px", sortable: true }, 36 retainedSize: { title: WebInspector.UIString("Retained Size"), width: "90px", sortable: true } 116 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true }, 117 count: { title: WebInspector.UIString("#"), width: "45px", sortable: true }, 118 shallowSize: { title: WebInspector.UIString("Shallow Size"), width: "90px", sortable: true }, 119 retainedSize: { title: WebInspector.UIString("Retained Size"), width: "90px", sort: "descending", sortable: true } 161 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true }, 162 addedCount: { title: WebInspector.UIString("# New"), width: "72px", sortable: true, sort: "descending" }, 163 removedCount: { title: WebInspector.UIString("# Deleted"), width: "72px", sortable: true } [all...] |
TimelinePanel.js | 48 var itemsTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("RECORDS"), {}, true); 87 this._showShortRecordsTitleText = WebInspector.UIString("Show the records that are shorter than %s", shortRecordThresholdTitle); 88 this._hideShortRecordsTitleText = WebInspector.UIString("Hide the records that are shorter than %s", shortRecordThresholdTitle); 123 var timelinesOverviewItem = new WebInspector.SidebarTreeElement("resources-time-graph-sidebar-item", WebInspector.UIString("Timelines")); 128 var memoryOverviewItem = new WebInspector.SidebarTreeElement("resources-size-graph-sidebar-item", WebInspector.UIString("Memory")); 145 return WebInspector.UIString("Timeline"); 157 loading: new WebInspector.TimelineCategory("loading", WebInspector.UIString("Loading"), "rgb(47,102,236)"), 158 scripting: new WebInspector.TimelineCategory("scripting", WebInspector.UIString("Scripting"), "rgb(157,231,119)"), 159 rendering: new WebInspector.TimelineCategory("rendering", WebInspector.UIString("Rendering"), "rgb(164,60,255)") 175 recordStyles[recordTypes.EventDispatch] = { title: WebInspector.UIString("Event"), category: this.categories.scripting } [all...] |
BreakpointsSidebarPane.js | 28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Breakpoints")); 38 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints"); 60 var displayName = breakpoint.url ? WebInspector.displayNameForURL(breakpoint.url) : WebInspector.UIString("(program)"); 143 contextMenu.appendItem(WebInspector.UIString("Remove Breakpoint"), removeHandler); 204 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints"); 246 WebInspector.NativeBreakpointsSidebarPane.call(this, WebInspector.UIString("XHR Breakpoints")); 303 labelElement.textContent = WebInspector.UIString("Any XHR"); 305 labelElement.textContent = WebInspector.UIString("URL contains \"%s\"", url); 342 contextMenu.appendItem(WebInspector.UIString("Remove Breakpoint"), removeBreakpoint.bind(this)); 422 WebInspector.SidebarPane.call(this, WebInspector.UIString("Event Listener Breakpoints")) [all...] |
ShowMoreDataGridNode.js | 42 this.showNext.textContent = WebInspector.UIString("Show next %d", nextCount); 48 this.showAll.textContent = WebInspector.UIString("Show all %d", allCount);
|
GoToLineDialog.js | 43 dialogWindow.createChild("label").textContent = WebInspector.UIString("Go to line: "); 50 this._input.setAttribute("title", WebInspector.UIString("1 - %d", linesCount)); 56 go.textContent = WebInspector.UIString("Go");
|
ProfileView.js | 38 var columns = { "self": { title: WebInspector.UIString("Self"), width: "72px", sort: "descending", sortable: true }, 39 "total": { title: WebInspector.UIString("Total"), width: "72px", sortable: true }, 40 "average": { title: WebInspector.UIString("Average"), width: "72px", sortable: true }, 41 "calls": { title: WebInspector.UIString("Calls"), width: "54px", sortable: true }, 42 "function": { title: WebInspector.UIString("Function"), disclosure: true, sortable: true } }; 60 heavyViewOption.label = WebInspector.UIString("Heavy (Bottom Up)"); 62 treeViewOption.label = WebInspector.UIString("Tree (Top Down)"); 69 this.focusButton = new WebInspector.StatusBarButton(WebInspector.UIString("Focus selected function."), "focus-profile-node-status-bar-item"); 73 this.excludeButton = new WebInspector.StatusBarButton(WebInspector.UIString("Exclude selected function."), "exclude-profile-node-status-bar-item"); 77 this.resetButton = new WebInspector.StatusBarButton(WebInspector.UIString("Restore all functions."), "reset-profile-status-bar-item") [all...] |
HeapSnapshotView.js | 46 code: new WebInspector.ResourceCategory("code", WebInspector.UIString("Code"), "rgb(255,121,0)"), 47 data: new WebInspector.ResourceCategory("data", WebInspector.UIString("Objects"), "rgb(47,102,236)") 58 countsLabel.textContent = WebInspector.UIString("Count"); 67 sizesLabel.textContent = WebInspector.UIString("Size"); 74 cons: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true }, 75 count: { title: WebInspector.UIString("Count"), width: "54px", sortable: true }, 76 size: { title: WebInspector.UIString("Size"), width: "72px", sort: "descending", sortable: true }, 78 countDelta: { title: WebInspector.UIString("\xb1 Count"), width: "72px", sortable: true }, 79 sizeDelta: { title: WebInspector.UIString("\xb1 Size"), width: "72px", sortable: true } 481 title = WebInspector.UIString("Snapshot %d", title.substring(UserInitiatedProfileName.length + 1)) [all...] |
DOMStorageItemsView.js | 35 this.deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-bar-item"); 39 this.refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item"); 89 columns[0].title = WebInspector.UIString("Key"); 90 columns[1].title = WebInspector.UIString("Value");
|
DOMBreakpointsSidebarPane.js | 33 WebInspector.NativeBreakpointsSidebarPane.call(this, WebInspector.UIString("DOM Breakpoints")); 43 WebInspector.UIString("Subtree Modified"), 44 WebInspector.UIString("Attribute Modified"), 45 WebInspector.UIString("Node Removed") 48 WebInspector.UIString("Break on Subtree Modifications"), 49 WebInspector.UIString("Break on Attributes Modifications"), 50 WebInspector.UIString("Break on Node Removal") 225 contextMenu.appendItem(WebInspector.UIString("Remove Breakpoint"), removeBreakpoint.bind(this));
|
PanelEnablerView.js | 61 this.enabledForSession = enableOption(WebInspector.UIString("Only enable for this session"), true); 62 this.enabledAlways = enableOption(WebInspector.UIString("Always enable"));
|
PleaseWaitMessage.js | 35 this.element.textContent = WebInspector.UIString("Please wait\u2026"); 38 this.cancelButton.textContent = WebInspector.UIString("Cancel");
|
NetworkPanel.js | 92 return WebInspector.UIString("Network"); 147 columns.name.titleDOMFragment = this._makeHeaderFragment(WebInspector.UIString("Name"), WebInspector.UIString("Path")); 152 columns.method.title = WebInspector.UIString("Method"); 156 columns.status.titleDOMFragment = this._makeHeaderFragment(WebInspector.UIString("Status"), WebInspector.UIString("Text")); 160 columns.type.title = WebInspector.UIString("Type"); 164 columns.size.titleDOMFragment = this._makeHeaderFragment(WebInspector.UIString("Size"), WebInspector.UIString("Transfer")); 169 columns.time.titleDOMFragment = this._makeHeaderFragment(WebInspector.UIString("Time"), WebInspector.UIString("Latency")) [all...] |
AuditLauncherView.js | 51 this._headerElement.textContent = WebInspector.UIString("No audits to run"); 165 this._headerElement.textContent = WebInspector.UIString("Select audits to run"); 176 var categoryElement = this._createCategoryElement(WebInspector.UIString("Select All"), ""); 201 this._auditPresentStateLabelElement = document.createTextNode(WebInspector.UIString("Audit Present State")); 216 this._launchButton.textContent = WebInspector.UIString("Run"); 245 this._resourceProgressTextElement.textContent = WebInspector.UIString("Loading (%d of %d)", this._loadedResources, this._totalResources);
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
WebInspectorShims.js | 30 UIString: function(string) {
|