| Index: third_party/WebKit/Source/devtools/front_end/console_model/ConsoleModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console_model/ConsoleModel.js b/third_party/WebKit/Source/devtools/front_end/console_model/ConsoleModel.js
|
| index 17a224b720a28250be5b0a2c32ed8c2e8dfad7d2..3831e39dca6d283cbbcb7d21d8cca694e1c8d25c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console_model/ConsoleModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console_model/ConsoleModel.js
|
| @@ -440,6 +440,12 @@ ConsoleModel.ConsoleMessage = class {
|
| }
|
| }
|
| }
|
| + if (!this.executionContextId && this._runtimeModel) {
|
| + if (this.scriptId)
|
| + this.executionContextId = this._runtimeModel.executionContextIdForScriptId(this.scriptId);
|
| + else if (this.stackTrace)
|
| + this.executionContextId = this._runtimeModel.executionContextForStackTrace(this.stackTrace);
|
| + }
|
| }
|
|
|
| /**
|
|
|