Changeset 85101 in webkit


Ignore:
Timestamp:
Apr 27, 2011 3:00:06 PM (13 years ago)
Author:
loislo@chromium.org
Message:

2011-04-27 Ilya Tikhonovsky <loislo@chromium.org>

Reviewed by Brian Weinstein.

Web Inspector: Stop on Exception state does not persist.

A wrong property name was used when we persist PauseOnExceptionState property to Local Storage.
https://bugs.webkit.org/show_bug.cgi?id=59630

  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._debuggerWasEnabled): (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions.callback): (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r85100 r85101  
     12011-04-27  Ilya Tikhonovsky  <loislo@chromium.org>
     2
     3        Reviewed by Brian Weinstein.
     4
     5        Web Inspector: Stop on Exception state does not persist.
     6
     7        A wrong property name was used when we persist PauseOnExceptionState property to Local Storage.
     8        https://bugs.webkit.org/show_bug.cgi?id=59630
     9
     10        * inspector/front-end/ScriptsPanel.js:
     11        (WebInspector.ScriptsPanel.prototype._debuggerWasEnabled):
     12        (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions.callback):
     13        (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions):
     14
    1152011-04-27  Adrienne Walker  <enne@google.com>
    216
  • trunk/Source/WebCore/inspector/front-end/ScriptsPanel.js

    r85042 r85101  
    443443    _debuggerWasEnabled: function()
    444444    {
    445         this._setPauseOnExceptions(WebInspector.settings.pauseOnExceptionStateString);
     445        this._setPauseOnExceptions(WebInspector.settings.pauseOnExceptionState);
    446446
    447447        if (this._debuggerEnabled)
     
    712712
    713713            this._pauseOnExceptionButton.state = pauseOnExceptionsState;
    714             WebInspector.settings.pauseOnExceptionStateString = pauseOnExceptionsState;
     714            WebInspector.settings.pauseOnExceptionState = pauseOnExceptionsState;
    715715        }
    716716        DebuggerAgent.setPauseOnExceptions(pauseOnExceptionsState, callback.bind(this));
Note: See TracChangeset for help on using the changeset viewer.