Changeset 85266 in webkit


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

2011-04-28 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r85101.
http://trac.webkit.org/changeset/85101
https://bugs.webkit.org/show_bug.cgi?id=59757

it'd be better to rollout the patch and do another one with

another property name. Current one will bring us to a problem
at first run after upgrade because it's type was changed from
int to string. (Requested by loislo on #webkit).

  • 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

    r85264 r85266  
     12011-04-28  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r85101.
     4        http://trac.webkit.org/changeset/85101
     5        https://bugs.webkit.org/show_bug.cgi?id=59757
     6
     7         it'd be better to rollout the patch and do another one with
     8        another property name. Current one will bring us to a problem
     9        at first run after upgrade because it's type was changed from
     10        int to string. (Requested by loislo on #webkit).
     11
     12        * inspector/front-end/ScriptsPanel.js:
     13        (WebInspector.ScriptsPanel.prototype._debuggerWasEnabled):
     14        (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions.callback):
     15        (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions):
     16
    1172011-04-28  Mike Reed  <reed@google.com>
    218
  • trunk/Source/WebCore/inspector/front-end/ScriptsPanel.js

    r85204 r85266  
    447447    _debuggerWasEnabled: function()
    448448    {
    449         this._setPauseOnExceptions(WebInspector.settings.pauseOnExceptionState);
     449        this._setPauseOnExceptions(WebInspector.settings.pauseOnExceptionStateString);
    450450
    451451        if (this._debuggerEnabled)
     
    716716
    717717            this._pauseOnExceptionButton.state = pauseOnExceptionsState;
    718             WebInspector.settings.pauseOnExceptionState = pauseOnExceptionsState;
     718            WebInspector.settings.pauseOnExceptionStateString = pauseOnExceptionsState;
    719719        }
    720720        DebuggerAgent.setPauseOnExceptions(pauseOnExceptionsState, callback.bind(this));
Note: See TracChangeset for help on using the changeset viewer.