Title: [98006] trunk/Source/WebCore
Revision
98006
Author
commit-qu...@webkit.org
Date
2011-10-20 11:37:14 -0700 (Thu, 20 Oct 2011)

Log Message

Remove StyleBase::cssText().
https://bugs.webkit.org/show_bug.cgi?id=70521

Patch by Andreas Kling <kl...@webkit.org> on 2011-10-20
Reviewed by Antti Koivisto.

* css/StyleBase.cpp:
* css/StyleBase.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (98005 => 98006)


--- trunk/Source/WebCore/ChangeLog	2011-10-20 18:26:15 UTC (rev 98005)
+++ trunk/Source/WebCore/ChangeLog	2011-10-20 18:37:14 UTC (rev 98006)
@@ -1,3 +1,13 @@
+2011-10-20  Andreas Kling  <kl...@webkit.org>
+
+        Remove StyleBase::cssText().
+        https://bugs.webkit.org/show_bug.cgi?id=70521
+
+        Reviewed by Antti Koivisto.
+
+        * css/StyleBase.cpp:
+        * css/StyleBase.h:
+
 2011-10-20  Eugene Nalimov  <e...@chromium.org>
 
         Playing HTMLAudioElement can be garbage collected

Modified: trunk/Source/WebCore/css/StyleBase.cpp (98005 => 98006)


--- trunk/Source/WebCore/css/StyleBase.cpp	2011-10-20 18:26:15 UTC (rev 98005)
+++ trunk/Source/WebCore/css/StyleBase.cpp	2011-10-20 18:37:14 UTC (rev 98006)
@@ -30,11 +30,6 @@
 
 namespace WebCore {
 
-String StyleBase::cssText() const
-{
-    return "";
-}
-
 void StyleBase::checkLoaded()
 {
     if (parent())

Modified: trunk/Source/WebCore/css/StyleBase.h (98005 => 98006)


--- trunk/Source/WebCore/css/StyleBase.h	2011-10-20 18:26:15 UTC (rev 98005)
+++ trunk/Source/WebCore/css/StyleBase.h	2011-10-20 18:37:14 UTC (rev 98006)
@@ -53,8 +53,6 @@
         virtual bool isCSSStyleSheet() const { return false; }
         virtual bool isXSLStyleSheet() const { return false; }
 
-        virtual String cssText() const;
-
         virtual void checkLoaded();
 
         bool useStrictParsing() const { return !m_parent || m_parent->useStrictParsing(); }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to