Skip to content

Commit 61a9afd

Browse files
committed
squash 'resources/unpacked/devtools' changes from 4a9a2eb..e189b9c
e189b9c DevTools: add test for for page reload with screenshots not stopping recording 6cf74fa Don't call the decomposed thing a "Cipher Suite". 663ee79 DevTools: continue recording network activity after load git-subtree-dir: resources/unpacked/devtools git-subtree-split: e189b9c
1 parent 046d5af commit 61a9afd

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

front_end/network/NetworkPanel.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ WebInspector.NetworkPanel = function()
105105
WebInspector.DataSaverInfobar.maybeShowInPanel(this);
106106
}
107107

108+
WebInspector.NetworkPanel.displayScreenshotDelay = 1000;
109+
108110
WebInspector.NetworkPanel.prototype = {
109111
/**
110112
* @param {!WebInspector.Event} event
@@ -273,7 +275,13 @@ WebInspector.NetworkPanel.prototype = {
273275
_load: function(event)
274276
{
275277
if (this._filmStripRecorder && this._filmStripRecorder.isRecording())
276-
this._pendingStopTimer = setTimeout(this._toggleRecord.bind(this, false), 1000);
278+
this._pendingStopTimer = setTimeout(this._stopFilmStripRecording.bind(this), WebInspector.NetworkPanel.displayScreenshotDelay);
279+
},
280+
281+
_stopFilmStripRecording: function()
282+
{
283+
this._filmStripRecorder.stopRecording(this._filmStripAvailable.bind(this));
284+
delete this._pendingStopTimer;
277285
},
278286

279287
_toggleLargerRequests: function()

front_end/security/SecurityPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ WebInspector.SecurityOriginView = function(panel, origin, originState)
868868
table.addRow("Key Exchange", originState.securityDetails.keyExchange);
869869
if (originState.securityDetails.keyExchangeGroup)
870870
table.addRow("Key Exchange Group", originState.securityDetails.keyExchangeGroup);
871-
table.addRow("Cipher Suite", originState.securityDetails.cipher + (originState.securityDetails.mac ? " with " + originState.securityDetails.mac : ""));
871+
table.addRow("Cipher", originState.securityDetails.cipher + (originState.securityDetails.mac ? " with " + originState.securityDetails.mac : ""));
872872

873873
// Create the certificate section outside the callback, so that it appears in the right place.
874874
var certificateSection = this.element.createChild("div", "origin-view-section");

0 commit comments

Comments
 (0)