Home | History | Annotate | Download | only in front-end

Lines Matching refs:WebInspector

29 WebInspector.ConsolePanel = function()
31 WebInspector.Panel.call(this, "console");
34 WebInspector.ConsolePanel.prototype = {
37 return WebInspector.UIString("Console");
42 WebInspector.Panel.prototype.show.call(this);
44 this._previousConsoleState = WebInspector.drawer.state;
45 WebInspector.drawer.enterPanelMode();
46 WebInspector.showConsole();
64 WebInspector.Panel.prototype.hide.call(this);
66 if (this._previousConsoleState === WebInspector.Drawer.State.Hidden)
67 WebInspector.drawer.immediatelyExitPanelMode();
69 WebInspector.drawer.exitPanelMode();
86 WebInspector.ConsolePanel.prototype.__proto__ = WebInspector.Panel.prototype;