Title: [134357] trunk/Source/WebCore
- Revision
- 134357
- Author
- [email protected]
- Date
- 2012-11-12 21:32:59 -0800 (Mon, 12 Nov 2012)
Log Message
Some CSS properties are not handled on StyleResolver::applyProperty
https://bugs.webkit.org/show_bug.cgi?id=102027
Patch by KyungTae Kim <[email protected]> on 2012-11-12
Reviewed by Gyuyoung Kim.
The CSSPropertyMaxZoom, CSSPropertyMinZoom, CSSPropertyOrientation and CSSPropertyUserZoom
need to be handled on StyleResolver::applyProperty.
* css/StyleResolver.cpp:
(WebCore::StyleResolver::applyProperty):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (134356 => 134357)
--- trunk/Source/WebCore/ChangeLog 2012-11-13 05:24:49 UTC (rev 134356)
+++ trunk/Source/WebCore/ChangeLog 2012-11-13 05:32:59 UTC (rev 134357)
@@ -1,3 +1,16 @@
+2012-11-12 KyungTae Kim <[email protected]>
+
+ Some CSS properties are not handled on StyleResolver::applyProperty
+ https://bugs.webkit.org/show_bug.cgi?id=102027
+
+ Reviewed by Gyuyoung Kim.
+
+ The CSSPropertyMaxZoom, CSSPropertyMinZoom, CSSPropertyOrientation and CSSPropertyUserZoom
+ need to be handled on StyleResolver::applyProperty.
+
+ * css/StyleResolver.cpp:
+ (WebCore::StyleResolver::applyProperty):
+
2012-11-12 Simon Fraser <[email protected]>
Avoid calling calculateLayerBounds() and convertToLayerCoords() more than once per layer paint
Modified: trunk/Source/WebCore/css/StyleResolver.cpp (134356 => 134357)
--- trunk/Source/WebCore/css/StyleResolver.cpp 2012-11-13 05:24:49 UTC (rev 134356)
+++ trunk/Source/WebCore/css/StyleResolver.cpp 2012-11-13 05:32:59 UTC (rev 134357)
@@ -3892,6 +3892,12 @@
case CSSPropertyWordWrap:
case CSSPropertyZIndex:
case CSSPropertyZoom:
+#if ENABLE(CSS_DEVICE_ADAPTATION)
+ case CSSPropertyMaxZoom:
+ case CSSPropertyMinZoom:
+ case CSSPropertyOrientation:
+ case CSSPropertyUserZoom:
+#endif
ASSERT_NOT_REACHED();
return;
#if ENABLE(SVG)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes