Commit 3497dbb2 authored by timothy@apple.com's avatar timothy@apple.com

Reveal current execution line once SourceFrame content is loaded.

        https://bugs.webkit.org/show_bug.cgi?id=25448

        Reviewed by Timothy Hatcher.

        * inspector/front-end/SourceFrame.js:
        (WebInspector.SourceFrame.prototype._loaded):

git-svn-id: svn://svn.chromium.org/blink/trunk@42997 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent a024281b
2009-04-29 Yury Semikhatsky <yurys@chromium.org>
Reveal current execution line once SourceFrame content is loaded.
https://bugs.webkit.org/show_bug.cgi?id=25448
Reviewed by Timothy Hatcher.
* inspector/front-end/SourceFrame.js:
(WebInspector.SourceFrame.prototype._loaded):
2009-04-29 Ariya Hidayat <ariya.hidayat@nokia.com> 2009-04-29 Ariya Hidayat <ariya.hidayat@nokia.com>
Reviewed by Simon Fraser. Reviewed by Simon Fraser.
...@@ -233,6 +233,8 @@ WebInspector.SourceFrame.prototype = { ...@@ -233,6 +233,8 @@ WebInspector.SourceFrame.prototype = {
this._addExistingMessagesToSource(); this._addExistingMessagesToSource();
this._addExistingBreakpointsToSource(); this._addExistingBreakpointsToSource();
this._updateExecutionLine(); this._updateExecutionLine();
if (this._executionLine)
this.revealLine(this._executionLine);
if (this.autoSizesToFitContentHeight) if (this.autoSizesToFitContentHeight)
this.sizeToFitContentHeight(); this.sizeToFitContentHeight();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment