Title: [173630] trunk/Source/WebCore
- Revision
- 173630
- Author
- [email protected]
- Date
- 2014-09-15 14:40:28 -0700 (Mon, 15 Sep 2014)
Log Message
Unreviewed. Add an unimplemented case to handle CSSPropertyWebkitInitialLetter so we don't get an assertion failure.
* css/SVGCSSStyleSelector.cpp:
(WebCore::StyleResolver::applySVGProperty):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (173629 => 173630)
--- trunk/Source/WebCore/ChangeLog 2014-09-15 20:17:18 UTC (rev 173629)
+++ trunk/Source/WebCore/ChangeLog 2014-09-15 21:40:28 UTC (rev 173630)
@@ -1,3 +1,10 @@
+2014-09-15 Roger Fong <[email protected]>
+
+ Unreviewed. Add an unimplemented case to handle CSSPropertyWebkitInitialLetter so we don't get an assertion failure.
+
+ * css/SVGCSSStyleSelector.cpp:
+ (WebCore::StyleResolver::applySVGProperty):
+
2014-09-15 Jer Noble <[email protected]>
[Mac] Support audioSourceProvider() in MediaPlayerPrivateAVFoundationObjC
Modified: trunk/Source/WebCore/css/SVGCSSStyleSelector.cpp (173629 => 173630)
--- trunk/Source/WebCore/css/SVGCSSStyleSelector.cpp 2014-09-15 20:17:18 UTC (rev 173629)
+++ trunk/Source/WebCore/css/SVGCSSStyleSelector.cpp 2014-09-15 21:40:28 UTC (rev 173630)
@@ -562,6 +562,9 @@
// Silently ignoring this property for now
// http://bugs.webkit.org/show_bug.cgi?id=6022
break;
+ case CSSPropertyWebkitInitialLetter:
+ // Not Implemented
+ break;
case CSSPropertyWebkitSvgShadow: {
if (isInherit)
return svgStyle.setShadow(state.parentStyle()->svgStyle().shadow() ? std::make_unique<ShadowData>(*state.parentStyle()->svgStyle().shadow()) : nullptr);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes