Title: [135431] trunk/Source/WebCore
Revision
135431
Author
[email protected]
Date
2012-11-21 14:02:56 -0800 (Wed, 21 Nov 2012)

Log Message

EFL and GTK+ build fix after r135429.

* dom/Element.cpp:
(WebCore::ElementRareData::ensureCachedHTMLCollection):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (135430 => 135431)


--- trunk/Source/WebCore/ChangeLog	2012-11-21 21:52:18 UTC (rev 135430)
+++ trunk/Source/WebCore/ChangeLog	2012-11-21 22:02:56 UTC (rev 135431)
@@ -1,3 +1,10 @@
+2012-11-21  Ryosuke Niwa  <[email protected]>
+
+        EFL and GTK+ build fix after r135429.
+
+        * dom/Element.cpp:
+        (WebCore::ElementRareData::ensureCachedHTMLCollection):
+
 2012-11-20  Ryosuke Niwa  <[email protected]>
 
         HTMLCollection should use the same storage as DynamicNodeList

Modified: trunk/Source/WebCore/dom/Element.cpp (135430 => 135431)


--- trunk/Source/WebCore/dom/Element.cpp	2012-11-21 21:52:18 UTC (rev 135430)
+++ trunk/Source/WebCore/dom/Element.cpp	2012-11-21 22:02:56 UTC (rev 135431)
@@ -2433,7 +2433,7 @@
         ASSERT(element->hasTagName(formTag) || element->hasTagName(fieldsetTag));
         return ensureNodeLists()->addCacheWithAtomicName<HTMLFormControlsCollection>(element, type);
 #if ENABLE(MICRODATA)
-    } else if (nodeLists()->type == ItemProperties) {
+    } else if (type == ItemProperties) {
         return ensureNodeLists()->addCacheWithAtomicName<HTMLPropertiesCollection>(element, type);
 #endif
     }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to