Changeset 106741 in webkit


Ignore:
Timestamp:
Feb 4, 2012 1:31:51 PM (12 years ago)
Author:
kling@webkit.org
Message:

Unreviewed test fix after r106740.
<http://webkit.org/b/77204>

Disable matched declaration caching for elements with attribute style until we can
figure out how it's supposed to work.

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::matchAllRules):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r106740 r106741  
     12012-02-04  Andreas Kling  <awesomekling@apple.com>
     2
     3        Unreviewed test fix after r106740.
     4        <http://webkit.org/b/77204>
     5
     6        Disable matched declaration caching for elements with attribute style until we can
     7        figure out how it's supposed to work.
     8
     9        * css/CSSStyleSelector.cpp:
     10        (WebCore::CSSStyleSelector::matchAllRules):
     11
    1122012-02-03  Andreas Kling  <awesomekling@apple.com>
    213
  • trunk/Source/WebCore/css/CSSStyleSelector.cpp

    r106740 r106741  
    10041004                    result.ranges.firstAuthorRule = result.ranges.lastAuthorRule;
    10051005                addMatchedDeclaration(attributeStyle->declaration());
     1006                result.isCacheable = false;
    10061007            }
    10071008        }
Note: See TracChangeset for help on using the changeset viewer.