Changeset 76266 in webkit


Ignore:
Timestamp:
Jan 20, 2011 10:31:01 AM (13 years ago)
Author:
apavlov@chromium.org
Message:

2011-01-20 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: [REGRESSION] Canceling of CSS numeric values increment/decrement is broken
https://bugs.webkit.org/show_bug.cgi?id=52816

  • inspector/front-end/StylesSidebarPane.js: (WebInspector.StylePropertyTreeElement.prototype):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r76265 r76266  
     12011-01-20  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Web Inspector: [REGRESSION] Canceling of CSS numeric values increment/decrement is broken
     6        https://bugs.webkit.org/show_bug.cgi?id=52816
     7
     8        * inspector/front-end/StylesSidebarPane.js:
     9        (WebInspector.StylePropertyTreeElement.prototype):
     10
    1112011-01-20  Dawit Alemayehu  <adawit@kde.org>
    212
  • trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js

    r76116 r76266  
    17281728    editingCancelled: function(element, context)
    17291729    {
    1730         this.editingEnded(context);
    17311730        if ("originalPropertyText" in this)
    17321731            this.applyStyleText(this.originalPropertyText, true);
     
    17371736                this.updateTitle();
    17381737        }
     1738
     1739        // This should happen last, as it clears the info necessary to restore the property value after [Page]Up/Down changes.
     1740        this.editingEnded(context);
    17391741    },
    17401742
Note: See TracChangeset for help on using the changeset viewer.