Title: [105440] trunk/Source/WebCore
Revision
105440
Author
[email protected]
Date
2012-01-19 13:16:46 -0800 (Thu, 19 Jan 2012)

Log Message

Unreviewed debug build fix.

Remove ASSERT that the cached match is cacheable (we don't store that flag anymore.)

* css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::findFromMatchedDeclarationCache):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (105439 => 105440)


--- trunk/Source/WebCore/ChangeLog	2012-01-19 20:55:19 UTC (rev 105439)
+++ trunk/Source/WebCore/ChangeLog	2012-01-19 21:16:46 UTC (rev 105440)
@@ -1,3 +1,12 @@
+2012-01-19  Andreas Kling  <[email protected]>
+
+        Unreviewed debug build fix.
+
+        Remove ASSERT that the cached match is cacheable (we don't store that flag anymore.)
+
+        * css/CSSStyleSelector.cpp:
+        (WebCore::CSSStyleSelector::findFromMatchedDeclarationCache):
+
 2012-01-19  Robert Hogan  <[email protected]>
 
         Fix Debug build after r105433

Modified: trunk/Source/WebCore/css/CSSStyleSelector.cpp (105439 => 105440)


--- trunk/Source/WebCore/css/CSSStyleSelector.cpp	2012-01-19 20:55:19 UTC (rev 105439)
+++ trunk/Source/WebCore/css/CSSStyleSelector.cpp	2012-01-19 21:16:46 UTC (rev 105440)
@@ -2365,8 +2365,7 @@
     if (it == m_matchedStyleDeclarationCache.end())
         return 0;
     MatchedStyleDeclarationCacheItem& cacheItem = it->second;
-    ASSERT(cacheItem.matchResult.isCacheable);
-    
+
     size_t size = m_matchedDecls.size();
     if (size != cacheItem.matchedStyleDeclarations.size())
         return 0;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to