Changeset 117794 in webkit


Ignore:
Timestamp:
May 21, 2012 9:36:10 AM (12 years ago)
Author:
apavlov@chromium.org
Message:

Web Inspector: [Styles] Cannot tab from selector of inherited rule, which in turn has leading inherited properties
https://bugs.webkit.org/show_bug.cgi?id=87014

Reviewed by Yury Semikhatsky.

  • inspector/front-end/StylesSidebarPane.js:

(WebInspector.StylePropertiesSection.prototype._moveEditorFromSelector):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r117793 r117794  
     12012-05-21  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Web Inspector: [Styles] Cannot tab from selector of inherited rule, which in turn has leading inherited properties
     4        https://bugs.webkit.org/show_bug.cgi?id=87014
     5
     6        Reviewed by Yury Semikhatsky.
     7
     8        * inspector/front-end/StylesSidebarPane.js:
     9        (WebInspector.StylePropertiesSection.prototype._moveEditorFromSelector):
     10
    1112012-05-21  Greg Billock  <gbillock@google.com>
    212
  • trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js

    r117587 r117794  
    13021302            this.expand();
    13031303            var firstChild = this.propertiesTreeOutline.children[0];
     1304            while (firstChild && firstChild.inherited)
     1305                firstChild = firstChild.nextSibling;
    13041306            if (!firstChild)
    13051307                this.addNewBlankProperty().startEditing();
Note: See TracChangeset for help on using the changeset viewer.