Title: [112214] trunk/Source/WebCore
- Revision
- 112214
- Author
- [email protected]
- Date
- 2012-03-27 00:17:36 -0700 (Tue, 27 Mar 2012)
Log Message
Tried to fix 32-bit builds.
* css/StylePropertySet.cpp:
(WebCore::StylePropertySet::asText):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (112213 => 112214)
--- trunk/Source/WebCore/ChangeLog 2012-03-27 07:05:08 UTC (rev 112213)
+++ trunk/Source/WebCore/ChangeLog 2012-03-27 07:17:36 UTC (rev 112214)
@@ -1,3 +1,10 @@
+2012-03-27 Dan Bernstein <[email protected]>
+
+ Tried to fix 32-bit builds.
+
+ * css/StylePropertySet.cpp:
+ (WebCore::StylePropertySet::asText):
+
2012-03-26 Sheriff Bot <[email protected]>
Unreviewed, rolling out r112199.
Modified: trunk/Source/WebCore/css/StylePropertySet.cpp (112213 => 112214)
--- trunk/Source/WebCore/css/StylePropertySet.cpp 2012-03-27 07:05:08 UTC (rev 112213)
+++ trunk/Source/WebCore/css/StylePropertySet.cpp 2012-03-27 07:17:36 UTC (rev 112214)
@@ -716,12 +716,12 @@
continue;
if (!shorthandPropertyAppeared.get(shortPropertyIndex))
value = getPropertyValue(shorthandPropertyID);
- shorthandPropertyAppeared.ensureSizeAndSet(shortPropertyIndex, numCSSProperties);
+ shorthandPropertyAppeared.ensureSizeAndSet(static_cast<size_t>(shortPropertyIndex), static_cast<size_t>(numCSSProperties));
}
if (!value.isNull()) {
propertyID = shorthandPropertyID;
- shorthandPropertyUsed.ensureSizeAndSet(shortPropertyIndex, numCSSProperties);
+ shorthandPropertyUsed.ensureSizeAndSet(static_cast<size_t>(shortPropertyIndex), static_cast<size_t>(numCSSProperties));
} else
value = prop.value()->cssText();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes