Commit 0ae841b5 authored by ddkilzer's avatar ddkilzer

WebCore:

        Reviewed by Darin.  Patch by Mitz.

        - fix http://bugs.webkit.org/show_bug.cgi?id=12223
          REGRESSION: Leaks under CSSStyleSelector::applyProperty

        No test possible (no change to functionality).

        * rendering/RenderObject.h: Removed unused forward declaration.
        * rendering/RenderStyle.cpp:
        (WebCore::StyleRareNonInheritedData::~StyleRareNonInheritedData):
        Delete shadow data.



git-svn-id: svn://svn.chromium.org/blink/trunk@18810 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent e4a9489f
2007-01-12 Mitz Pettel <mitz@webkit.org>
Reviewed by Darin.
- fix http://bugs.webkit.org/show_bug.cgi?id=12223
REGRESSION: Leaks under CSSStyleSelector::applyProperty
No test possible (no change to functionality).
* rendering/RenderObject.h: Removed unused forward declaration.
* rendering/RenderStyle.cpp:
(WebCore::StyleRareNonInheritedData::~StyleRareNonInheritedData):
Delete shadow data.
2007-01-12 Anders Carlsson <acarlsson@apple.com> 2007-01-12 Anders Carlsson <acarlsson@apple.com>
Build fix. Build fix.
......
...@@ -34,7 +34,6 @@ ...@@ -34,7 +34,6 @@
namespace WebCore { namespace WebCore {
class AffineTransform; class AffineTransform;
class CollapsedBorderValue;
class Color; class Color;
class Document; class Document;
class Element; class Element;
......
...@@ -467,6 +467,7 @@ StyleRareNonInheritedData::~StyleRareNonInheritedData() ...@@ -467,6 +467,7 @@ StyleRareNonInheritedData::~StyleRareNonInheritedData()
{ {
delete m_content; delete m_content;
delete m_counterDirectives; delete m_counterDirectives;
delete m_boxShadow;
#ifdef XBL_SUPPORT #ifdef XBL_SUPPORT
delete bindingURI; delete bindingURI;
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment