Changeset 80710 in webkit


Ignore:
Timestamp:
Mar 10, 2011 5:28:32 AM (13 years ago)
Author:
apavlov@chromium.org
Message:

2011-03-09 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: [STYLES] Editing a property value adds a word for any property value that uses a paren
https://bugs.webkit.org/show_bug.cgi?id=56002

  • inspector/front-end/StylesSidebarPane.js: Introduce an additional check.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r80709 r80710  
     12011-03-09  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Web Inspector: [STYLES] Editing a property value adds a word for any property value that uses a paren
     6        https://bugs.webkit.org/show_bug.cgi?id=56002
     7
     8        * inspector/front-end/StylesSidebarPane.js: Introduce an additional check.
     9
    1102011-03-09  Pavel Podivilov  <podivilov@chromium.org>
    211
  • trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js

    r79009 r80710  
    19651965    {
    19661966        var prefix = wordRange.toString().toLowerCase();
     1967        if (!prefix && bestMatchOnly)
     1968            return;
     1969
    19671970        var results;
    19681971        if (bestMatchOnly) {
Note: See TracChangeset for help on using the changeset viewer.