| Index: third_party/WebKit/Source/devtools/front_end/ui/Panel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Panel.js b/third_party/WebKit/Source/devtools/front_end/ui/Panel.js
|
| index c03b3e39b201bf0874c6700304bad2fac3fc1546..c69463b23e7c9f2b6321497c18500fe82c7e5c99 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/Panel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/Panel.js
|
| @@ -26,6 +26,9 @@
|
| * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| +// For testing.
|
| +WebInspector.panels = [];
|
| +
|
| /**
|
| * @extends {WebInspector.VBox}
|
| * @constructor
|
| @@ -40,6 +43,9 @@ WebInspector.Panel = function(name)
|
| this.element.classList.add(name);
|
| this._panelName = name;
|
|
|
| + // For testing.
|
| + WebInspector.panels[name] = this;
|
| +
|
| this._shortcuts = /** !Object.<number, function(Event=):boolean> */ ({});
|
| }
|
|
|
|
|