diff options
Diffstat (limited to 'WebCore/rendering/style/StyleRareNonInheritedData.cpp')
-rw-r--r-- | WebCore/rendering/style/StyleRareNonInheritedData.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/WebCore/rendering/style/StyleRareNonInheritedData.cpp b/WebCore/rendering/style/StyleRareNonInheritedData.cpp index d5c9536..e293984 100644 --- a/WebCore/rendering/style/StyleRareNonInheritedData.cpp +++ b/WebCore/rendering/style/StyleRareNonInheritedData.cpp @@ -56,9 +56,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData() , m_perspective(RenderStyle::initialPerspective()) , m_perspectiveOriginX(RenderStyle::initialPerspectiveOriginX()) , m_perspectiveOriginY(RenderStyle::initialPerspectiveOriginY()) -#if ENABLE(XBL) - , bindingURI(0) -#endif , m_pageSize() , m_pageSizeType(PAGE_SIZE_AUTO) { @@ -97,9 +94,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited , m_perspective(o.m_perspective) , m_perspectiveOriginX(o.m_perspectiveOriginX) , m_perspectiveOriginY(o.m_perspectiveOriginY) -#if ENABLE(XBL) - , bindingURI(o.bindingURI ? o.bindingURI->copy() : 0) -#endif , m_pageSize(o.m_pageSize) , m_pageSizeType(o.m_pageSizeType) { @@ -109,18 +103,6 @@ StyleRareNonInheritedData::~StyleRareNonInheritedData() { } -#if ENABLE(XBL) -bool StyleRareNonInheritedData::bindingsEquivalent(const StyleRareNonInheritedData& o) const -{ - if (this == &o) return true; - if (!bindingURI && o.bindingURI || bindingURI && !o.bindingURI) - return false; - if (bindingURI && o.bindingURI && (*bindingURI != *o.bindingURI)) - return false; - return true; -} -#endif - bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) const { return lineClamp == o.lineClamp @@ -152,9 +134,6 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c && transitionDataEquivalent(o) && m_mask == o.m_mask && m_maskBoxImage == o.m_maskBoxImage -#if ENABLE(XBL) - && bindingsEquivalent(o) -#endif && (m_transformStyle3D == o.m_transformStyle3D) && (m_backfaceVisibility == o.m_backfaceVisibility) && (m_perspective == o.m_perspective) |