Home
last modified time | relevance | path

Searched refs:_history (Results 1 – 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/inspector/front-end/
Dinspector.js1630 this._history = []; property in WebInspector.PanelHistory
1643 WebInspector.currentPanel = WebInspector.panels[this._history[--this._historyIterator]];
1649 return this._historyIterator < this._history.length - 1;
1655 WebInspector.currentPanel = WebInspector.panels[this._history[++this._historyIterator]];
1664 … this._history.splice(this._historyIterator + 1, this._history.length - this._historyIterator - 1);
1665 if (!this._history.length || this._history[this._history.length - 1] !== panelName)
1666 this._history.push(panelName);
1667 this._historyIterator = this._history.length - 1;