Title: [99010] trunk/Source/WebCore
- Revision
- 99010
- Author
- [email protected]
- Date
- 2011-11-01 16:31:23 -0700 (Tue, 01 Nov 2011)
Log Message
CSS: Remove unused virtual parseString() in style and keyframe rules.
https://bugs.webkit.org/show_bug.cgi?id=71300
Patch by Andreas Kling <[email protected]> on 2011-11-01
Reviewed by Darin Adler.
* css/CSSStyleRule.cpp:
* css/CSSStyleRule.h:
* css/WebKitCSSKeyframeRule.cpp:
* css/WebKitCSSKeyframeRule.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (99009 => 99010)
--- trunk/Source/WebCore/ChangeLog 2011-11-01 23:13:57 UTC (rev 99009)
+++ trunk/Source/WebCore/ChangeLog 2011-11-01 23:31:23 UTC (rev 99010)
@@ -1,3 +1,15 @@
+2011-11-01 Andreas Kling <[email protected]>
+
+ CSS: Remove unused virtual parseString() in style and keyframe rules.
+ https://bugs.webkit.org/show_bug.cgi?id=71300
+
+ Reviewed by Darin Adler.
+
+ * css/CSSStyleRule.cpp:
+ * css/CSSStyleRule.h:
+ * css/WebKitCSSKeyframeRule.cpp:
+ * css/WebKitCSSKeyframeRule.h:
+
2011-11-01 Emil A Eklund <[email protected]>
Switch RenderObject to layout abstraction
Modified: trunk/Source/WebCore/css/CSSStyleRule.cpp (99009 => 99010)
--- trunk/Source/WebCore/css/CSSStyleRule.cpp 2011-11-01 23:13:57 UTC (rev 99009)
+++ trunk/Source/WebCore/css/CSSStyleRule.cpp 2011-11-01 23:31:23 UTC (rev 99010)
@@ -92,12 +92,6 @@
return result;
}
-bool CSSStyleRule::parseString(const String& /*string*/, bool /*strict*/)
-{
- // FIXME
- return false;
-}
-
void CSSStyleRule::setDeclaration(PassRefPtr<CSSMutableStyleDeclaration> style)
{
m_style = style;
Modified: trunk/Source/WebCore/css/CSSStyleRule.h (99009 => 99010)
--- trunk/Source/WebCore/css/CSSStyleRule.h 2011-11-01 23:13:57 UTC (rev 99009)
+++ trunk/Source/WebCore/css/CSSStyleRule.h 2011-11-01 23:31:23 UTC (rev 99010)
@@ -47,9 +47,6 @@
virtual String cssText() const;
- // Not part of the CSSOM
- virtual bool parseString(const String&, bool = false);
-
void adoptSelectorVector(Vector<OwnPtr<CSSParserSelector> >& selectors) { m_selectorList.adoptSelectorVector(selectors); }
void setDeclaration(PassRefPtr<CSSMutableStyleDeclaration>);
Modified: trunk/Source/WebCore/css/WebKitCSSKeyframeRule.cpp (99009 => 99010)
--- trunk/Source/WebCore/css/WebKitCSSKeyframeRule.cpp 2011-11-01 23:13:57 UTC (rev 99009)
+++ trunk/Source/WebCore/css/WebKitCSSKeyframeRule.cpp 2011-11-01 23:31:23 UTC (rev 99010)
@@ -52,12 +52,6 @@
return result;
}
-bool WebKitCSSKeyframeRule::parseString(const String& /*string*/, bool /*strict*/)
-{
- // FIXME
- return false;
-}
-
void WebKitCSSKeyframeRule::setDeclaration(PassRefPtr<CSSMutableStyleDeclaration> style)
{
m_style = style;
Modified: trunk/Source/WebCore/css/WebKitCSSKeyframeRule.h (99009 => 99010)
--- trunk/Source/WebCore/css/WebKitCSSKeyframeRule.h 2011-11-01 23:13:57 UTC (rev 99009)
+++ trunk/Source/WebCore/css/WebKitCSSKeyframeRule.h 2011-11-01 23:31:23 UTC (rev 99010)
@@ -58,9 +58,6 @@
virtual String cssText() const;
- // Not part of the CSSOM
- virtual bool parseString(const String&, bool = false);
-
void setDeclaration(PassRefPtr<CSSMutableStyleDeclaration>);
CSSMutableStyleDeclaration* declaration() { return m_style.get(); }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes