Title: [135323] trunk/Source/WebCore
Revision
135323
Author
rn...@webkit.org
Date
2012-11-20 15:45:38 -0800 (Tue, 20 Nov 2012)

Log Message

Fix typos. Apparently XCode failed to text-replace earlier when it was busy making a snapshot :(

* dom/DynamicNodeList.cpp:
(WebCore::DynamicNodeListCacheBase::invalidateIdNameCacheMaps):
* dom/DynamicNodeList.h:
(WebCore::DynamicNodeListCacheBase::invalidateCache):
(DynamicNodeListCacheBase):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (135322 => 135323)


--- trunk/Source/WebCore/ChangeLog	2012-11-20 23:42:16 UTC (rev 135322)
+++ trunk/Source/WebCore/ChangeLog	2012-11-20 23:45:38 UTC (rev 135323)
@@ -1,3 +1,13 @@
+2012-11-20  Ryosuke Niwa  <rn...@webkit.org>
+
+        Fix typos. Apparently XCode failed to text-replace earlier when it was busy making a snapshot :(
+
+        * dom/DynamicNodeList.cpp:
+        (WebCore::DynamicNodeListCacheBase::invalidateIdNameCacheMaps):
+        * dom/DynamicNodeList.h:
+        (WebCore::DynamicNodeListCacheBase::invalidateCache):
+        (DynamicNodeListCacheBase):
+
 2012-11-20  Kentaro Hara  <hara...@chromium.org>
 
         [V8] Introduce GenerateConstructorHeader() to CodeGeneratorV8.pm

Modified: trunk/Source/WebCore/dom/DynamicNodeList.cpp (135322 => 135323)


--- trunk/Source/WebCore/dom/DynamicNodeList.cpp	2012-11-20 23:42:16 UTC (rev 135322)
+++ trunk/Source/WebCore/dom/DynamicNodeList.cpp	2012-11-20 23:45:38 UTC (rev 135323)
@@ -71,7 +71,7 @@
 #endif
 }
 
-void DynamicNodeListCacheBase::invalididateIdNameCacheMaps() const
+void DynamicNodeListCacheBase::invalidateIdNameCacheMaps() const
 {
     ASSERT(isNodeCollectionType(type()));
     const HTMLCollectionCacheBase* cacheBase = static_cast<const HTMLCollectionCacheBase*>(this);

Modified: trunk/Source/WebCore/dom/DynamicNodeList.h (135322 => 135323)


--- trunk/Source/WebCore/dom/DynamicNodeList.h	2012-11-20 23:42:16 UTC (rev 135322)
+++ trunk/Source/WebCore/dom/DynamicNodeList.h	2012-11-20 23:45:38 UTC (rev 135323)
@@ -77,10 +77,10 @@
         if (!attrName || shouldInvalidateTypeOnAttributeChange(invalidationType(), *attrName))
             invalidateCache();
         else if (isNodeCollectionType(type()) && (*attrName == HTMLNames::idAttr || *attrName == HTMLNames::nameAttr))
-            invalididateIdNameCacheMaps();
+            invalidateIdNameCacheMaps();
     }
     void invalidateCache() const;
-    void invalididateIdNameCacheMaps() const;
+    void invalidateIdNameCacheMaps() const;
 
     static bool shouldInvalidateTypeOnAttributeChange(NodeListInvalidationType, const QualifiedName&);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to