Title: [112220] trunk/Source/WebCore
Revision
112220
Author
m...@apple.com
Date
2012-03-27 00:57:02 -0700 (Tue, 27 Mar 2012)

Log Message

Reverted r112214, since it was not the right fix for the build.

* css/StylePropertySet.cpp:
(WebCore::StylePropertySet::asText):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (112219 => 112220)


--- trunk/Source/WebCore/ChangeLog	2012-03-27 07:54:01 UTC (rev 112219)
+++ trunk/Source/WebCore/ChangeLog	2012-03-27 07:57:02 UTC (rev 112220)
@@ -1,3 +1,10 @@
+2012-03-27  Dan Bernstein  <m...@apple.com>
+
+        Reverted r112214, since it was not the right fix for the build.
+
+        * css/StylePropertySet.cpp:
+        (WebCore::StylePropertySet::asText):
+
 2012-03-27  Kentaro Hara  <hara...@chromium.org>
 
         [V8][Performance] Optimize createTextNode(), createElement(), cloneNode(), etc

Modified: trunk/Source/WebCore/css/StylePropertySet.cpp (112219 => 112220)


--- trunk/Source/WebCore/css/StylePropertySet.cpp	2012-03-27 07:54:01 UTC (rev 112219)
+++ trunk/Source/WebCore/css/StylePropertySet.cpp	2012-03-27 07:57:02 UTC (rev 112220)
@@ -716,12 +716,12 @@
                 continue;
             if (!shorthandPropertyAppeared.get(shortPropertyIndex))
                 value = getPropertyValue(shorthandPropertyID);
-            shorthandPropertyAppeared.ensureSizeAndSet(static_cast<size_t>(shortPropertyIndex), static_cast<size_t>(numCSSProperties));
+            shorthandPropertyAppeared.ensureSizeAndSet(shortPropertyIndex, numCSSProperties);
         }
 
         if (!value.isNull()) {
             propertyID = shorthandPropertyID;
-            shorthandPropertyUsed.ensureSizeAndSet(static_cast<size_t>(shortPropertyIndex), static_cast<size_t>(numCSSProperties));
+            shorthandPropertyUsed.ensureSizeAndSet(shortPropertyIndex, numCSSProperties);
         } else
             value = prop.value()->cssText();
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to