Skip to content

Commit 47be2d5

Browse files
committed
squash 'resources/unpacked/devtools' changes from 61e53c7..ea1001a
ea1001a [DevTools] Support broken UMA metric from M49 frontend. e42e78a Revert of [DevTools] Added keyboard search while in sources (patchset #7 id:120001 of https://codereview.chromium.org/1831903002/ ) b3fb203 DevTools: teach SourceMapNamesResolver to resolve "this" object c0fed8a Revert of DevTools: extract CPU profile independent part of CPUProfileNode. (patchset #3 id:40001 of https://codereview.chromium.org/1873973002/ ) decf4d4 DevTools: improve identifier extraction in SourceMapNamesResolver e2ca0ad Rename Heap to ThreadHeap 8228bda Revert of Rename Heap to ThreadHeap (patchset #13 id:240001 of https://codereview.chromium.org/1845543002/ ) 2a81c34 DevTools: extract CPU profile independent part of CPUProfileNode. 53d311c Rename Heap to ThreadHeap b095eff [DevTools] Fix autocomplete for iframe in top context 81abc28 DevTools: add -webkit-user-select and -webkit-user-modify completions 93a9291 DevTools: cleanup occurences of selection.getRangeAt to avoid NPE bb4305f [DevTools] Fix console history for evaluated object literals 18c6c34 [DevTools] Fix condition in ElementsTreeElement.js 4264bde DevTools: workaround bug in Blink selection API 81e05cb DevTools: deprecate InspectorTest.runAfterPendingDispatches 2dda9ca [DevTools] Added keyboard search while in sources git-subtree-dir: resources/unpacked/devtools git-subtree-split: ea1001a
1 parent e99292e commit 47be2d5

20 files changed

+280
-85
lines changed

front_end/Tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ TestSuite.prototype.testPauseInSharedWorkerInitialization1 = function()
578578
function callback()
579579
{
580580
var target = WebInspector.targetManager.targetsWithJSContext()[0];
581-
target._connection.runAfterPendingDispatches(this.releaseControl.bind(this));
581+
target._connection.deprecatedRunAfterPendingDispatches(this.releaseControl.bind(this));
582582
}
583583
};
584584

front_end/common/Text.js

+10
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,16 @@ WebInspector.TextCursor.prototype = {
128128
return this._offset;
129129
},
130130

131+
/**
132+
* @param {number} offset
133+
*/
134+
resetTo: function(offset)
135+
{
136+
this._offset = offset;
137+
this._lineNumber = this._lineEndings.lowerBound(offset);
138+
this._columnNumber = this._lineNumber ? this._offset - this._lineEndings[this._lineNumber - 1] - 1 : this._offset;
139+
},
140+
131141
/**
132142
* @return {number}
133143
*/

front_end/devtools.js

+3
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,9 @@ InspectorFrontendHostImpl.prototype = {
525525
*/
526526
recordEnumeratedHistogram: function(actionName, actionCode, bucketSize)
527527
{
528+
// Support for M49 frontend.
529+
if (actionName === "DevTools.DrawerShown")
530+
return;
528531
DevToolsAPI.sendMessageToEmbedder("recordEnumeratedHistogram", [actionName, actionCode, bucketSize], null);
529532
},
530533

front_end/elements/ElementsTreeElement.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1281,7 +1281,7 @@ WebInspector.ElementsTreeElement.prototype = {
12811281
return anchor;
12821282
}
12831283

1284-
if (node && name === "src" || name === "href") {
1284+
if (node && (name === "src" || name === "href")) {
12851285
attrValueElement.appendChild(linkifyValue.call(this, value));
12861286
} else if (node && node.nodeName().toLowerCase() === "img" && name === "srcset") {
12871287
var sources = value.split(",");

front_end/es_tree/ESTreeWalker.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@
55
/**
66
* @constructor
77
* @param {function(!ESTree.Node)} beforeVisit
8-
* @param {function(!ESTree.Node)} afterVisit
8+
* @param {function(!ESTree.Node)=} afterVisit
99
*/
1010
WebInspector.ESTreeWalker = function(beforeVisit, afterVisit)
1111
{
1212
this._beforeVisit = beforeVisit;
13-
this._afterVisit = afterVisit;
13+
this._afterVisit = afterVisit || new Function();
1414
}
1515

16+
WebInspector.ESTreeWalker.SkipSubtree = {};
17+
1618
WebInspector.ESTreeWalker.prototype = {
1719
/**
1820
* @param {!ESTree.Node} ast
@@ -32,7 +34,10 @@ WebInspector.ESTreeWalker.prototype = {
3234
return;
3335
node.parent = parent;
3436

35-
this._beforeVisit.call(null, node);
37+
if (this._beforeVisit.call(null, node) === WebInspector.ESTreeWalker.SkipSubtree) {
38+
this._afterVisit.call(null, node);
39+
return;
40+
}
3641

3742
var walkOrder = WebInspector.ESTreeWalker._walkOrder[node.type];
3843
if (!walkOrder) {

front_end/externs.js

+2
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,8 @@ ESTree.Node = function()
683683
this.name;
684684
/** @type {(?ESTree.Node|undefined)} */
685685
this.id;
686+
/** @type {(number|undefined)} */
687+
this.length;
686688
}
687689

688690
/**

front_end/formatter_worker/FormatterWorker.js

+20-20
Original file line numberDiff line numberDiff line change
@@ -131,49 +131,49 @@ WebInspector.evaluatableJavaScriptSubstring = function(content)
131131
*/
132132
WebInspector.javaScriptIdentifiers = function(content)
133133
{
134-
var root = acorn.parse(content, {});
134+
var root = acorn.parse(content, { ranges: false, ecmaVersion: 6 });
135+
135136
/** @type {!Array<!ESTree.Node>} */
136137
var identifiers = [];
137-
var functionDeclarationCounter = 0;
138-
var walker = new WebInspector.ESTreeWalker(beforeVisit, afterVisit);
138+
var walker = new WebInspector.ESTreeWalker(beforeVisit);
139139

140140
/**
141141
* @param {!ESTree.Node} node
142142
* @return {boolean}
143143
*/
144144
function isFunction(node)
145145
{
146-
return node.type === "FunctionDeclaration" || node.type === "FunctionExpression";
146+
return node.type === "FunctionDeclaration" || node.type === "FunctionExpression" || node.type === "ArrowFunctionExpression";
147147
}
148148

149149
/**
150150
* @param {!ESTree.Node} node
151151
*/
152152
function beforeVisit(node)
153153
{
154-
if (isFunction(node))
155-
functionDeclarationCounter++;
154+
if (isFunction(node)) {
155+
if (node.id)
156+
identifiers.push(node.id);
157+
return WebInspector.ESTreeWalker.SkipSubtree;
158+
}
156159

157-
if (functionDeclarationCounter > 1)
160+
if (node.type !== "Identifier")
158161
return;
159162

160-
if (isFunction(node) && node.params)
161-
identifiers.pushAll(node.params);
162-
163-
if (node.type === "VariableDeclarator")
164-
identifiers.push(/** @type {!ESTree.Node} */(node.id));
163+
if (node.parent && node.parent.type === "MemberExpression" && node.parent.property === node && !node.parent.computed)
164+
return;
165+
identifiers.push(node);
165166
}
166167

167-
/**
168-
* @param {!ESTree.Node} node
169-
*/
170-
function afterVisit(node)
171-
{
172-
if (isFunction(node))
173-
functionDeclarationCounter--;
168+
if (!root || root.type !== "Program" || root.body.length !== 1 || !isFunction(root.body[0])) {
169+
postMessage([]);
170+
return;
174171
}
175172

176-
walker.walk(root);
173+
var functionNode = root.body[0];
174+
for (var param of functionNode.params)
175+
walker.walk(param);
176+
walker.walk(functionNode.body);
177177
var reduced = identifiers.map(id => ({name: id.name, offset: id.start}));
178178
postMessage(reduced);
179179
}

front_end/main/Main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ WebInspector.Main.prototype = {
592592
}
593593
}
594594

595-
this._mainConnection.runAfterPendingDispatches(invokeMethod);
595+
this._mainConnection.deprecatedRunAfterPendingDispatches(invokeMethod);
596596
}
597597
}
598598

front_end/platform/DOMExtension.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,8 @@ Node.prototype.isComponentSelectionCollapsed = function()
301301
{
302302
// FIXME: crbug.com/447523, use selection.isCollapsed when it is fixed for shadow dom.
303303
var selection = this.getComponentSelection();
304-
return selection && selection.rangeCount ? selection.getRangeAt(0).collapsed : true;
304+
var range = selection && selection.rangeCount ? selection.getRangeAt(0) : null;
305+
return range ? range.collapsed : true;
305306
}
306307

307308
/**
@@ -348,9 +349,10 @@ Element.prototype.removeChildren = function()
348349
Element.prototype.isInsertionCaretInside = function()
349350
{
350351
var selection = this.getComponentSelection();
351-
if (!selection.rangeCount || !selection.isCollapsed)
352+
// @see crbug.com/602541
353+
var selectionRange = selection && selection.rangeCount ? selection.getRangeAt(0) : null;
354+
if (!selectionRange || !selection.isCollapsed)
352355
return false;
353-
var selectionRange = selection.getRangeAt(0);
354356
return selectionRange.startContainer.isSelfOrDescendant(this);
355357
}
356358

front_end/platform/utilities.js

+13
Original file line numberDiff line numberDiff line change
@@ -1280,6 +1280,19 @@ Map.prototype.keysArray = function()
12801280
return Array.from(this.keys());
12811281
}
12821282

1283+
/**
1284+
* @return {!Multimap<!KEY, !VALUE>}
1285+
*/
1286+
Map.prototype.inverse = function()
1287+
{
1288+
var result = new Multimap();
1289+
for (var key of this.keys()) {
1290+
var value = this.get(key);
1291+
result.set(value, key);
1292+
}
1293+
return result;
1294+
}
1295+
12831296
/**
12841297
* @constructor
12851298
* @template K, V

front_end/sdk/CSSMetadata.js

+6
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,12 @@ WebInspector.CSSMetadata._propertyDataMap = {
601601
"-webkit-line-break": { values: [
602602
"auto", "loose", "normal", "strict"
603603
] },
604+
"-webkit-user-select": { values: [
605+
"none", "text", "all"
606+
] },
607+
"-webkit-user-modify": { values: [
608+
"read-only", "read-write", "read-write-plaintext-only"
609+
] },
604610
"text-align-last": { values: [
605611
"auto", "start", "end", "left", "right", "center", "justify"
606612
] },

front_end/sdk/ConsoleModel.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ WebInspector.ConsoleModel.prototype = {
190190
WebInspector.ConsoleModel.evaluateCommandInConsole = function(executionContext, text, useCommandLineAPI)
191191
{
192192
var target = executionContext.target();
193+
var requestedText = text;
193194

194195
var commandMessage = new WebInspector.ConsoleMessage(target, WebInspector.ConsoleMessage.MessageSource.JS, null, text, WebInspector.ConsoleMessage.MessageType.Command);
195196
commandMessage.setExecutionContextId(executionContext.id);
@@ -209,7 +210,7 @@ WebInspector.ConsoleModel.evaluateCommandInConsole = function(executionContext,
209210
WebInspector.console.showPromise().then(reportUponEvaluation);
210211
function reportUponEvaluation()
211212
{
212-
target.consoleModel.dispatchEventToListeners(WebInspector.ConsoleModel.Events.CommandEvaluated, {result: result, wasThrown: wasThrown, text: text, commandMessage: commandMessage, exceptionDetails: exceptionDetails});
213+
target.consoleModel.dispatchEventToListeners(WebInspector.ConsoleModel.Events.CommandEvaluated, {result: result, wasThrown: wasThrown, text: requestedText, commandMessage: commandMessage, exceptionDetails: exceptionDetails});
213214
}
214215
}
215216
if (/^\s*\{/.test(text) && /\}\s*$/.test(text))

front_end/sdk/DebuggerModel.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,6 @@ WebInspector.DebuggerModel.CallFrame.fromPayloadArray = function(debuggerModel,
10381038
}
10391039

10401040
WebInspector.DebuggerModel.CallFrame.prototype = {
1041-
10421041
/**
10431042
* @return {!WebInspector.Script}
10441043
*/
@@ -1205,6 +1204,14 @@ WebInspector.DebuggerModel.Scope = function(callFrame, ordinal)
12051204
}
12061205

12071206
WebInspector.DebuggerModel.Scope.prototype = {
1207+
/**
1208+
* @return {!WebInspector.DebuggerModel.CallFrame}
1209+
*/
1210+
callFrame: function()
1211+
{
1212+
return this._callFrame;
1213+
},
1214+
12081215
/**
12091216
* @return {string}
12101217
*/

front_end/sdk/InspectorBackend.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ InspectorBackendClass.Connection.prototype = {
346346
console.log("time-stats: " + callback.methodName + " = " + (processingStartTime - callback.sendRequestTime) + " + " + (Date.now() - processingStartTime));
347347

348348
if (this._scripts && !this._pendingResponsesCount)
349-
this.runAfterPendingDispatches();
349+
this.deprecatedRunAfterPendingDispatches();
350350
return;
351351
} else {
352352
var method = messageObject.method.split(".");
@@ -376,7 +376,7 @@ InspectorBackendClass.Connection.prototype = {
376376
/**
377377
* @param {function()=} script
378378
*/
379-
runAfterPendingDispatches: function(script)
379+
deprecatedRunAfterPendingDispatches: function(script)
380380
{
381381
if (!this._scripts)
382382
this._scripts = [];
@@ -389,7 +389,7 @@ InspectorBackendClass.Connection.prototype = {
389389
if (!this._pendingResponsesCount)
390390
this._executeAfterPendingDispatches();
391391
else
392-
this.runAfterPendingDispatches();
392+
this.deprecatedRunAfterPendingDispatches();
393393
}.bind(this), 0);
394394
},
395395

front_end/sdk/RuntimeModel.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -495,8 +495,8 @@ WebInspector.ExecutionContext.prototype = {
495495
object = this;
496496

497497
var resultSet = {};
498-
for (var o = object; o; o = o.__proto__) {
499-
try {
498+
try {
499+
for (var o = object; o; o = o.__proto__) {
500500
if (type === "array" && o === object && ArrayBuffer.isView(o) && o.length > 9999)
501501
continue;
502502
var names = Object.getOwnPropertyNames(o);
@@ -507,8 +507,8 @@ WebInspector.ExecutionContext.prototype = {
507507
continue;
508508
resultSet[names[i]] = true;
509509
}
510-
} catch (e) {
511510
}
511+
} catch (e) {
512512
}
513513
return resultSet;
514514
}

front_end/sources/ScopeChainSidebarPane.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,16 @@ WebInspector.ScopeChainSidebarPane.prototype = {
4141
* @param {?WebInspector.DebuggerModel.CallFrame} callFrame
4242
*/
4343
update: function(callFrame)
44+
{
45+
WebInspector.SourceMapNamesResolver.resolveThisObject(callFrame)
46+
.then(this._innerUpdate.bind(this, callFrame));
47+
},
48+
49+
/**
50+
* @param {?WebInspector.DebuggerModel.CallFrame} callFrame
51+
* @param {?WebInspector.RemoteObject} thisObject
52+
*/
53+
_innerUpdate: function(callFrame, thisObject)
4454
{
4555
this.element.removeChildren();
4656

@@ -65,7 +75,6 @@ WebInspector.ScopeChainSidebarPane.prototype = {
6575
foundLocalScope = true;
6676
title = WebInspector.UIString("Local");
6777
emptyPlaceholder = WebInspector.UIString("No Variables");
68-
var thisObject = callFrame.thisObject();
6978
if (thisObject)
7079
extraProperties.push(new WebInspector.RemoteObjectProperty("this", thisObject));
7180
if (i == 0) {
@@ -122,7 +131,10 @@ WebInspector.ScopeChainSidebarPane.prototype = {
122131
section.element.classList.add("scope-chain-sidebar-pane-section");
123132
this.element.appendChild(section.element);
124133
}
134+
this._sidebarPaneUpdatedForTest();
125135
},
126136

137+
_sidebarPaneUpdatedForTest: function() { },
138+
127139
__proto__: WebInspector.SidebarPane.prototype
128140
}

0 commit comments

Comments
 (0)