Home | History | Annotate | Download | only in network

Lines Matching refs:timing

39     this.element.classList.add("resource-timing-view");
50 if (!this._request.timing) {
52 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("This request has no detailed timing info."));
93 tableElement.className = "network-timing-table";
115 var timing = request.timing;
116 var blocking = firstPositive([timing.dnsStart, timing.connectStart, timing.sendStart]);
117 var endTime = firstPositive([request.endTime, request.responseReceivedTime, timing.requestTime]);
118 var total = (endTime - timing.requestTime) * 1000;
123 if (timing.proxyStart !== -1)
124 addRow(WebInspector.UIString("Proxy"), "proxy", timing.proxyStart, timing.proxyEnd);
126 if (timing.dnsStart !== -1)
127 addRow(WebInspector.UIString("DNS Lookup"), "dns", timing.dnsStart, timing.dnsEnd);
129 if (timing.connectStart !== -1)
130 addRow(WebInspector.UIString("Connecting"), "connecting", timing.connectStart, timing.connectEnd);
132 if (timing.sslStart !== -1)
133 addRow(WebInspector.UIString("SSL"), "ssl", timing.sslStart, timing.sslEnd);
135 addRow(WebInspector.UIString("Sending"), "sending", timing.sendStart, timing.sendEnd);
136 addRow(WebInspector.UIString("Waiting"), "waiting", timing.sendEnd, timing.receiveHeadersEnd);
139 addRow(WebInspector.UIString("Receiving"), "receiving", (request.responseReceivedTime - timing.requestTime) * 1000, total);
156 row.className = "network-timing-row";
160 bar.className = "network-timing-bar " + rows[i].className;
168 title.className = "network-timing-bar-title";