| Index: Source/devtools/front_end/sdk/ResourceTreeModel.js
|
| diff --git a/Source/devtools/front_end/sdk/ResourceTreeModel.js b/Source/devtools/front_end/sdk/ResourceTreeModel.js
|
| index 2d8ac60e027992b880c753bbcfa195c0b3908980..0a3ff7e961fb958cc8dcdbed34a22c109ec6b7d3 100644
|
| --- a/Source/devtools/front_end/sdk/ResourceTreeModel.js
|
| +++ b/Source/devtools/front_end/sdk/ResourceTreeModel.js
|
| @@ -752,14 +752,14 @@ WebInspector.ResourceTreeFrame.prototype = {
|
| displayName: function()
|
| {
|
| if (!this._parentFrame)
|
| - return WebInspector.UIString("<top frame>");
|
| + return WebInspector.UIString("<top frame (JavaScript)>");
|
| var subtitle = new WebInspector.ParsedURL(this._url).displayName;
|
| if (subtitle) {
|
| if (!this._name)
|
| return subtitle;
|
| return this._name + "( " + subtitle + " )";
|
| }
|
| - return WebInspector.UIString("<iframe>");
|
| + return WebInspector.UIString("<iframe (JavaScript)>");
|
| }
|
| }
|
|
|
|
|