2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* David Hyatt <hyatt@netscape.com>
|
|
|
|
* Daniel Glazman <glazman@netscape.com>
|
2008-06-02 20:17:35 -07:00
|
|
|
* L. David Baron <dbaron@dbaron.org>, Mozilla Corporation
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* representation of CSS style rules (selectors+declaration), CSS
|
|
|
|
* selectors, and DOM objects for style rules, selectors, and
|
|
|
|
* declarations
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsCSSRule.h"
|
|
|
|
#include "nsICSSStyleRule.h"
|
|
|
|
#include "nsICSSGroupRule.h"
|
2010-06-28 15:49:35 -07:00
|
|
|
#include "mozilla/css/Declaration.h"
|
2010-05-11 13:41:47 -07:00
|
|
|
#include "nsCSSStyleSheet.h"
|
2010-06-28 15:49:35 -07:00
|
|
|
#include "mozilla/css/Loader.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIURL.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDeviceContext.h"
|
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsCRT.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsStyleUtil.h"
|
|
|
|
#include "nsIFontMetrics.h"
|
|
|
|
#include "nsIDOMCSSStyleSheet.h"
|
|
|
|
#include "nsICSSStyleRuleDOMWrapper.h"
|
|
|
|
#include "nsIDOMCSSStyleDeclaration.h"
|
|
|
|
#include "nsDOMCSSDeclaration.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsXMLNameSpaceMap.h"
|
|
|
|
#include "nsILookAndFeel.h"
|
|
|
|
#include "nsRuleNode.h"
|
|
|
|
#include "nsUnicharUtils.h"
|
|
|
|
#include "nsCSSPseudoElements.h"
|
2007-05-02 18:15:53 -07:00
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
2008-06-02 20:17:35 -07:00
|
|
|
#include "nsCSSPseudoClasses.h"
|
2009-10-07 20:22:42 -07:00
|
|
|
#include "nsCSSAnonBoxes.h"
|
2009-02-19 13:55:48 -08:00
|
|
|
#include "nsTArray.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsContentErrors.h"
|
2008-04-11 10:29:06 -07:00
|
|
|
#include "mozAutoDocUpdate.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-12-10 23:37:40 -08:00
|
|
|
#include "prlog.h"
|
|
|
|
|
2010-06-28 15:49:35 -07:00
|
|
|
namespace css = mozilla::css;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_IF_CLONE(member_) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
if (member_) { \
|
|
|
|
result->member_ = member_->Clone(); \
|
|
|
|
if (!result->member_) { \
|
|
|
|
delete result; \
|
|
|
|
return nsnull; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
PR_END_MACRO
|
|
|
|
|
|
|
|
#define NS_IF_DELETE(ptr) \
|
|
|
|
PR_BEGIN_MACRO \
|
2008-10-17 01:13:16 -07:00
|
|
|
delete ptr; \
|
|
|
|
ptr = nsnull; \
|
2007-03-22 10:30:00 -07:00
|
|
|
PR_END_MACRO
|
|
|
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
nsAtomList::nsAtomList(nsIAtom* aAtom)
|
|
|
|
: mAtom(aAtom),
|
|
|
|
mNext(nsnull)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsAtomList);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAtomList::nsAtomList(const nsString& aAtomValue)
|
|
|
|
: mAtom(nsnull),
|
|
|
|
mNext(nsnull)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsAtomList);
|
|
|
|
mAtom = do_GetAtom(aAtomValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAtomList*
|
|
|
|
nsAtomList::Clone(PRBool aDeep) const
|
|
|
|
{
|
|
|
|
nsAtomList *result = new nsAtomList(mAtom);
|
|
|
|
if (!result)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
if (aDeep)
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_CLONE_LIST_MEMBER(nsAtomList, this, mNext, result, (PR_FALSE));
|
2007-03-22 10:30:00 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAtomList::~nsAtomList(void)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsAtomList);
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_DELETE_LIST_MEMBER(nsAtomList, this, mNext);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-12-10 23:37:41 -08:00
|
|
|
nsPseudoClassList::nsPseudoClassList(nsIAtom* aAtom,
|
|
|
|
nsCSSPseudoClasses::Type aType)
|
2008-06-02 20:17:35 -07:00
|
|
|
: mAtom(aAtom),
|
2009-12-10 23:37:41 -08:00
|
|
|
mType(aType),
|
2008-06-02 20:17:35 -07:00
|
|
|
mNext(nsnull)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!nsCSSPseudoClasses::HasStringArg(aAtom) &&
|
|
|
|
!nsCSSPseudoClasses::HasNthPairArg(aAtom),
|
|
|
|
"unexpected pseudo-class");
|
|
|
|
MOZ_COUNT_CTOR(nsPseudoClassList);
|
|
|
|
u.mMemory = nsnull;
|
|
|
|
}
|
|
|
|
|
2009-12-10 23:37:41 -08:00
|
|
|
nsPseudoClassList::nsPseudoClassList(nsIAtom* aAtom,
|
|
|
|
nsCSSPseudoClasses::Type aType,
|
|
|
|
const PRUnichar* aString)
|
2007-03-22 10:30:00 -07:00
|
|
|
: mAtom(aAtom),
|
2009-12-10 23:37:41 -08:00
|
|
|
mType(aType),
|
2007-03-22 10:30:00 -07:00
|
|
|
mNext(nsnull)
|
|
|
|
{
|
2008-06-02 20:17:35 -07:00
|
|
|
NS_ASSERTION(nsCSSPseudoClasses::HasStringArg(aAtom),
|
|
|
|
"unexpected pseudo-class");
|
|
|
|
NS_ASSERTION(aString, "string expected");
|
|
|
|
MOZ_COUNT_CTOR(nsPseudoClassList);
|
|
|
|
u.mString = NS_strdup(aString);
|
|
|
|
}
|
|
|
|
|
2009-12-10 23:37:41 -08:00
|
|
|
nsPseudoClassList::nsPseudoClassList(nsIAtom* aAtom,
|
|
|
|
nsCSSPseudoClasses::Type aType,
|
|
|
|
const PRInt32* aIntPair)
|
2008-06-02 20:17:35 -07:00
|
|
|
: mAtom(aAtom),
|
2009-12-10 23:37:41 -08:00
|
|
|
mType(aType),
|
2008-06-02 20:17:35 -07:00
|
|
|
mNext(nsnull)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(nsCSSPseudoClasses::HasNthPairArg(aAtom),
|
|
|
|
"unexpected pseudo-class");
|
|
|
|
NS_ASSERTION(aIntPair, "integer pair expected");
|
2008-06-02 20:17:35 -07:00
|
|
|
MOZ_COUNT_CTOR(nsPseudoClassList);
|
2008-06-02 20:17:35 -07:00
|
|
|
u.mNumbers =
|
|
|
|
static_cast<PRInt32*>(nsMemory::Clone(aIntPair, sizeof(PRInt32) * 2));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-04-23 19:59:47 -07:00
|
|
|
// adopts aSelectorList
|
|
|
|
nsPseudoClassList::nsPseudoClassList(nsIAtom* aAtom,
|
|
|
|
nsCSSPseudoClasses::Type aType,
|
|
|
|
nsCSSSelectorList* aSelectorList)
|
|
|
|
: mAtom(aAtom),
|
|
|
|
mType(aType),
|
|
|
|
mNext(nsnull)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(nsCSSPseudoClasses::HasSelectorListArg(aAtom),
|
|
|
|
"unexpected pseudo-class");
|
|
|
|
NS_ASSERTION(aSelectorList, "selector list expected");
|
|
|
|
MOZ_COUNT_CTOR(nsPseudoClassList);
|
|
|
|
u.mSelectors = aSelectorList;
|
|
|
|
}
|
|
|
|
|
2008-06-02 20:17:35 -07:00
|
|
|
nsPseudoClassList*
|
|
|
|
nsPseudoClassList::Clone(PRBool aDeep) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-06-02 20:17:35 -07:00
|
|
|
nsPseudoClassList *result;
|
|
|
|
if (!u.mMemory) {
|
2009-12-10 23:37:41 -08:00
|
|
|
result = new nsPseudoClassList(mAtom, mType);
|
2008-06-02 20:17:35 -07:00
|
|
|
} else if (nsCSSPseudoClasses::HasStringArg(mAtom)) {
|
2009-12-10 23:37:41 -08:00
|
|
|
result = new nsPseudoClassList(mAtom, mType, u.mString);
|
2010-04-23 19:59:47 -07:00
|
|
|
} else if (nsCSSPseudoClasses::HasNthPairArg(mAtom)) {
|
|
|
|
result = new nsPseudoClassList(mAtom, mType, u.mNumbers);
|
2008-06-02 20:17:35 -07:00
|
|
|
} else {
|
2010-04-23 19:59:47 -07:00
|
|
|
NS_ASSERTION(nsCSSPseudoClasses::HasSelectorListArg(mAtom),
|
2008-06-02 20:17:35 -07:00
|
|
|
"unexpected pseudo-class");
|
2010-04-23 19:59:47 -07:00
|
|
|
// This constructor adopts its selector list argument.
|
|
|
|
result = new nsPseudoClassList(mAtom, mType, u.mSelectors->Clone());
|
2008-06-02 20:17:35 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (aDeep)
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_CLONE_LIST_MEMBER(nsPseudoClassList, this, mNext, result,
|
|
|
|
(PR_FALSE));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2008-06-02 20:17:35 -07:00
|
|
|
nsPseudoClassList::~nsPseudoClassList(void)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-06-02 20:17:35 -07:00
|
|
|
MOZ_COUNT_DTOR(nsPseudoClassList);
|
2010-04-23 19:59:47 -07:00
|
|
|
if (nsCSSPseudoClasses::HasSelectorListArg(mAtom)) {
|
|
|
|
delete u.mSelectors;
|
|
|
|
} else if (u.mMemory) {
|
2008-06-02 20:17:35 -07:00
|
|
|
NS_Free(u.mMemory);
|
2010-04-23 19:59:47 -07:00
|
|
|
}
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_DELETE_LIST_MEMBER(nsPseudoClassList, this, mNext);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsAttrSelector::nsAttrSelector(PRInt32 aNameSpace, const nsString& aAttr)
|
2009-05-13 01:26:48 -07:00
|
|
|
: mValue(),
|
|
|
|
mNext(nsnull),
|
2009-09-28 23:07:45 -07:00
|
|
|
mLowercaseAttr(nsnull),
|
|
|
|
mCasedAttr(nsnull),
|
2009-05-13 01:26:48 -07:00
|
|
|
mNameSpace(aNameSpace),
|
2007-03-22 10:30:00 -07:00
|
|
|
mFunction(NS_ATTR_FUNC_SET),
|
2009-05-13 01:26:48 -07:00
|
|
|
mCaseSensitive(1)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsAttrSelector);
|
|
|
|
|
2009-09-28 23:07:45 -07:00
|
|
|
nsAutoString lowercase;
|
2010-08-02 15:19:04 -07:00
|
|
|
nsContentUtils::ASCIIToLower(aAttr, lowercase);
|
2009-09-28 23:07:45 -07:00
|
|
|
|
|
|
|
mCasedAttr = do_GetAtom(aAttr);
|
|
|
|
mLowercaseAttr = do_GetAtom(lowercase);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsAttrSelector::nsAttrSelector(PRInt32 aNameSpace, const nsString& aAttr, PRUint8 aFunction,
|
|
|
|
const nsString& aValue, PRBool aCaseSensitive)
|
2009-05-13 01:26:48 -07:00
|
|
|
: mValue(aValue),
|
|
|
|
mNext(nsnull),
|
2009-09-28 23:07:45 -07:00
|
|
|
mLowercaseAttr(nsnull),
|
|
|
|
mCasedAttr(nsnull),
|
2009-05-13 01:26:48 -07:00
|
|
|
mNameSpace(aNameSpace),
|
2007-03-22 10:30:00 -07:00
|
|
|
mFunction(aFunction),
|
2009-05-13 01:26:48 -07:00
|
|
|
mCaseSensitive(aCaseSensitive)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsAttrSelector);
|
|
|
|
|
2009-09-28 23:07:45 -07:00
|
|
|
nsAutoString lowercase;
|
2010-08-02 15:19:04 -07:00
|
|
|
nsContentUtils::ASCIIToLower(aAttr, lowercase);
|
2009-09-28 23:07:45 -07:00
|
|
|
|
|
|
|
mCasedAttr = do_GetAtom(aAttr);
|
|
|
|
mLowercaseAttr = do_GetAtom(lowercase);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-28 23:07:45 -07:00
|
|
|
nsAttrSelector::nsAttrSelector(PRInt32 aNameSpace, nsIAtom* aLowercaseAttr,
|
|
|
|
nsIAtom* aCasedAttr, PRUint8 aFunction,
|
|
|
|
const nsString& aValue, PRBool aCaseSensitive)
|
2009-05-13 01:26:48 -07:00
|
|
|
: mValue(aValue),
|
|
|
|
mNext(nsnull),
|
2009-09-28 23:07:45 -07:00
|
|
|
mLowercaseAttr(aLowercaseAttr),
|
|
|
|
mCasedAttr(aCasedAttr),
|
2009-05-13 01:26:48 -07:00
|
|
|
mNameSpace(aNameSpace),
|
2007-03-22 10:30:00 -07:00
|
|
|
mFunction(aFunction),
|
2009-05-13 01:26:48 -07:00
|
|
|
mCaseSensitive(aCaseSensitive)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsAttrSelector);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAttrSelector*
|
|
|
|
nsAttrSelector::Clone(PRBool aDeep) const
|
|
|
|
{
|
|
|
|
nsAttrSelector *result =
|
2009-09-28 23:07:45 -07:00
|
|
|
new nsAttrSelector(mNameSpace, mLowercaseAttr, mCasedAttr,
|
|
|
|
mFunction, mValue, mCaseSensitive);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (aDeep)
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_CLONE_LIST_MEMBER(nsAttrSelector, this, mNext, result, (PR_FALSE));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAttrSelector::~nsAttrSelector(void)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsAttrSelector);
|
|
|
|
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_DELETE_LIST_MEMBER(nsAttrSelector, this, mNext);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// -- nsCSSSelector -------------------------------
|
|
|
|
|
|
|
|
nsCSSSelector::nsCSSSelector(void)
|
2009-08-01 08:53:40 -07:00
|
|
|
: mLowercaseTag(nsnull),
|
|
|
|
mCasedTag(nsnull),
|
2009-05-13 01:26:48 -07:00
|
|
|
mIDList(nsnull),
|
|
|
|
mClassList(nsnull),
|
2007-03-22 10:30:00 -07:00
|
|
|
mPseudoClassList(nsnull),
|
2009-05-13 01:26:48 -07:00
|
|
|
mAttrList(nsnull),
|
2007-03-22 10:30:00 -07:00
|
|
|
mNegations(nsnull),
|
2009-05-13 01:26:48 -07:00
|
|
|
mNext(nsnull),
|
|
|
|
mNameSpace(kNameSpaceID_Unknown),
|
2009-12-10 23:37:40 -08:00
|
|
|
mOperator(0),
|
|
|
|
mPseudoType(nsCSSPseudoElements::ePseudo_NotPseudoElement)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsCSSSelector);
|
2009-12-10 23:37:40 -08:00
|
|
|
// Make sure mPseudoType can hold all nsCSSPseudoElements::Type values
|
|
|
|
PR_STATIC_ASSERT(nsCSSPseudoElements::ePseudo_MAX < PR_INT16_MAX);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCSSSelector*
|
|
|
|
nsCSSSelector::Clone(PRBool aDeepNext, PRBool aDeepNegations) const
|
|
|
|
{
|
|
|
|
nsCSSSelector *result = new nsCSSSelector();
|
|
|
|
if (!result)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
result->mNameSpace = mNameSpace;
|
2009-08-01 08:53:40 -07:00
|
|
|
result->mLowercaseTag = mLowercaseTag;
|
|
|
|
result->mCasedTag = mCasedTag;
|
2009-05-28 17:41:27 -07:00
|
|
|
result->mOperator = mOperator;
|
2009-12-10 23:37:40 -08:00
|
|
|
result->mPseudoType = mPseudoType;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IF_CLONE(mIDList);
|
|
|
|
NS_IF_CLONE(mClassList);
|
|
|
|
NS_IF_CLONE(mPseudoClassList);
|
|
|
|
NS_IF_CLONE(mAttrList);
|
|
|
|
|
|
|
|
// No need to worry about multiple levels of recursion since an
|
|
|
|
// mNegations can't have an mNext.
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_ASSERTION(!mNegations || !mNegations->mNext,
|
|
|
|
"mNegations can't have non-null mNext");
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aDeepNegations) {
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_CLONE_LIST_MEMBER(nsCSSSelector, this, mNegations, result,
|
|
|
|
(PR_TRUE, PR_FALSE));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aDeepNext) {
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_CLONE_LIST_MEMBER(nsCSSSelector, this, mNext, result,
|
|
|
|
(PR_FALSE, PR_TRUE));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCSSSelector::~nsCSSSelector(void)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsCSSSelector);
|
|
|
|
Reset();
|
|
|
|
// No need to worry about multiple levels of recursion since an
|
|
|
|
// mNegations can't have an mNext.
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_DELETE_LIST_MEMBER(nsCSSSelector, this, mNext);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsCSSSelector::Reset(void)
|
|
|
|
{
|
|
|
|
mNameSpace = kNameSpaceID_Unknown;
|
2009-08-01 08:53:40 -07:00
|
|
|
mLowercaseTag = nsnull;
|
|
|
|
mCasedTag = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IF_DELETE(mIDList);
|
|
|
|
NS_IF_DELETE(mClassList);
|
|
|
|
NS_IF_DELETE(mPseudoClassList);
|
|
|
|
NS_IF_DELETE(mAttrList);
|
|
|
|
// No need to worry about multiple levels of recursion since an
|
|
|
|
// mNegations can't have an mNext.
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_ASSERTION(!mNegations || !mNegations->mNext,
|
|
|
|
"mNegations can't have non-null mNext");
|
|
|
|
NS_CSS_DELETE_LIST_MEMBER(nsCSSSelector, this, mNegations);
|
2007-03-22 10:30:00 -07:00
|
|
|
mOperator = PRUnichar(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsCSSSelector::SetNameSpace(PRInt32 aNameSpace)
|
|
|
|
{
|
|
|
|
mNameSpace = aNameSpace;
|
|
|
|
}
|
|
|
|
|
2009-09-28 23:07:45 -07:00
|
|
|
void nsCSSSelector::SetTag(const nsString& aTag)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-08-01 08:53:40 -07:00
|
|
|
if (aTag.IsEmpty()) {
|
|
|
|
mLowercaseTag = mCasedTag = nsnull;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mCasedTag = do_GetAtom(aTag);
|
|
|
|
|
2009-09-28 23:07:45 -07:00
|
|
|
nsAutoString lowercase;
|
2010-08-02 15:19:04 -07:00
|
|
|
nsContentUtils::ASCIIToLower(aTag, lowercase);
|
2009-09-28 23:07:45 -07:00
|
|
|
mLowercaseTag = do_GetAtom(lowercase);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsCSSSelector::AddID(const nsString& aID)
|
|
|
|
{
|
|
|
|
if (!aID.IsEmpty()) {
|
|
|
|
nsAtomList** list = &mIDList;
|
|
|
|
while (nsnull != *list) {
|
|
|
|
list = &((*list)->mNext);
|
|
|
|
}
|
|
|
|
*list = new nsAtomList(aID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsCSSSelector::AddClass(const nsString& aClass)
|
|
|
|
{
|
|
|
|
if (!aClass.IsEmpty()) {
|
|
|
|
nsAtomList** list = &mClassList;
|
|
|
|
while (nsnull != *list) {
|
|
|
|
list = &((*list)->mNext);
|
|
|
|
}
|
|
|
|
*list = new nsAtomList(aClass);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-10 23:37:41 -08:00
|
|
|
void nsCSSSelector::AddPseudoClass(nsIAtom* aPseudoClass,
|
|
|
|
nsCSSPseudoClasses::Type aType)
|
2008-06-02 20:17:35 -07:00
|
|
|
{
|
2009-12-10 23:37:41 -08:00
|
|
|
AddPseudoClassInternal(new nsPseudoClassList(aPseudoClass, aType));
|
2008-06-02 20:17:35 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void nsCSSSelector::AddPseudoClass(nsIAtom* aPseudoClass,
|
2009-12-10 23:37:41 -08:00
|
|
|
nsCSSPseudoClasses::Type aType,
|
2007-03-22 10:30:00 -07:00
|
|
|
const PRUnichar* aString)
|
|
|
|
{
|
2009-12-10 23:37:41 -08:00
|
|
|
AddPseudoClassInternal(new nsPseudoClassList(aPseudoClass, aType, aString));
|
2008-06-02 20:17:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsCSSSelector::AddPseudoClass(nsIAtom* aPseudoClass,
|
2009-12-10 23:37:41 -08:00
|
|
|
nsCSSPseudoClasses::Type aType,
|
2008-06-02 20:17:35 -07:00
|
|
|
const PRInt32* aIntPair)
|
|
|
|
{
|
2009-12-10 23:37:41 -08:00
|
|
|
AddPseudoClassInternal(new nsPseudoClassList(aPseudoClass, aType, aIntPair));
|
2008-06-02 20:17:35 -07:00
|
|
|
}
|
|
|
|
|
2010-04-23 19:59:47 -07:00
|
|
|
void nsCSSSelector::AddPseudoClass(nsIAtom* aPseudoClass,
|
|
|
|
nsCSSPseudoClasses::Type aType,
|
|
|
|
nsCSSSelectorList* aSelectorList)
|
|
|
|
{
|
|
|
|
// Take ownership of nsCSSSelectorList instead of copying.
|
|
|
|
AddPseudoClassInternal(new nsPseudoClassList(aPseudoClass, aType,
|
|
|
|
aSelectorList));
|
|
|
|
}
|
|
|
|
|
2008-06-02 20:17:35 -07:00
|
|
|
void nsCSSSelector::AddPseudoClassInternal(nsPseudoClassList *aPseudoClass)
|
|
|
|
{
|
|
|
|
nsPseudoClassList** list = &mPseudoClassList;
|
|
|
|
while (nsnull != *list) {
|
|
|
|
list = &((*list)->mNext);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-06-02 20:17:35 -07:00
|
|
|
*list = aPseudoClass;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsCSSSelector::AddAttribute(PRInt32 aNameSpace, const nsString& aAttr)
|
|
|
|
{
|
|
|
|
if (!aAttr.IsEmpty()) {
|
|
|
|
nsAttrSelector** list = &mAttrList;
|
|
|
|
while (nsnull != *list) {
|
|
|
|
list = &((*list)->mNext);
|
|
|
|
}
|
|
|
|
*list = new nsAttrSelector(aNameSpace, aAttr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsCSSSelector::AddAttribute(PRInt32 aNameSpace, const nsString& aAttr, PRUint8 aFunc,
|
|
|
|
const nsString& aValue, PRBool aCaseSensitive)
|
|
|
|
{
|
|
|
|
if (!aAttr.IsEmpty()) {
|
|
|
|
nsAttrSelector** list = &mAttrList;
|
|
|
|
while (nsnull != *list) {
|
|
|
|
list = &((*list)->mNext);
|
|
|
|
}
|
|
|
|
*list = new nsAttrSelector(aNameSpace, aAttr, aFunc, aValue, aCaseSensitive);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsCSSSelector::SetOperator(PRUnichar aOperator)
|
|
|
|
{
|
|
|
|
mOperator = aOperator;
|
|
|
|
}
|
|
|
|
|
2009-01-16 19:44:21 -08:00
|
|
|
PRInt32 nsCSSSelector::CalcWeightWithoutNegations() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
PRInt32 weight = 0;
|
|
|
|
|
2009-08-01 08:53:40 -07:00
|
|
|
if (nsnull != mLowercaseTag) {
|
2007-03-22 10:30:00 -07:00
|
|
|
weight += 0x000001;
|
|
|
|
}
|
|
|
|
nsAtomList* list = mIDList;
|
|
|
|
while (nsnull != list) {
|
|
|
|
weight += 0x010000;
|
|
|
|
list = list->mNext;
|
|
|
|
}
|
|
|
|
list = mClassList;
|
|
|
|
while (nsnull != list) {
|
|
|
|
weight += 0x000100;
|
|
|
|
list = list->mNext;
|
|
|
|
}
|
2010-04-23 19:59:47 -07:00
|
|
|
// FIXME (bug 561154): This is incorrect for :-moz-any(), which isn't
|
|
|
|
// really a pseudo-class. In order to handle :-moz-any() correctly,
|
|
|
|
// we need to compute specificity after we match, based on which
|
|
|
|
// option we matched with (and thus also need to try the
|
|
|
|
// highest-specificity options first).
|
2008-06-02 20:17:35 -07:00
|
|
|
nsPseudoClassList *plist = mPseudoClassList;
|
2007-03-22 10:30:00 -07:00
|
|
|
while (nsnull != plist) {
|
|
|
|
weight += 0x000100;
|
|
|
|
plist = plist->mNext;
|
|
|
|
}
|
|
|
|
nsAttrSelector* attr = mAttrList;
|
|
|
|
while (nsnull != attr) {
|
|
|
|
weight += 0x000100;
|
|
|
|
attr = attr->mNext;
|
|
|
|
}
|
2009-01-16 19:44:21 -08:00
|
|
|
return weight;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 nsCSSSelector::CalcWeight() const
|
|
|
|
{
|
|
|
|
// Loop over this selector and all its negations.
|
|
|
|
PRInt32 weight = 0;
|
|
|
|
for (const nsCSSSelector *n = this; n; n = n->mNegations) {
|
|
|
|
weight += n->CalcWeightWithoutNegations();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return weight;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Builds the textual representation of a selector. Called by DOM 2 CSS
|
|
|
|
// StyleRule:selectorText
|
|
|
|
//
|
|
|
|
void
|
2010-05-11 13:41:47 -07:00
|
|
|
nsCSSSelector::ToString(nsAString& aString, nsCSSStyleSheet* aSheet,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool aAppend) const
|
|
|
|
{
|
|
|
|
if (!aAppend)
|
|
|
|
aString.Truncate();
|
2009-02-19 13:55:48 -08:00
|
|
|
|
|
|
|
// selectors are linked from right-to-left, so the next selector in
|
|
|
|
// the linked list actually precedes this one in the resulting string
|
|
|
|
nsAutoTArray<const nsCSSSelector*, 8> stack;
|
|
|
|
for (const nsCSSSelector *s = this; s; s = s->mNext) {
|
|
|
|
stack.AppendElement(s);
|
|
|
|
}
|
2010-03-31 11:08:09 -07:00
|
|
|
|
2009-02-19 13:55:48 -08:00
|
|
|
while (!stack.IsEmpty()) {
|
|
|
|
PRUint32 index = stack.Length() - 1;
|
|
|
|
const nsCSSSelector *s = stack.ElementAt(index);
|
|
|
|
stack.RemoveElementAt(index);
|
|
|
|
|
|
|
|
s->AppendToStringWithoutCombinators(aString, aSheet);
|
|
|
|
|
|
|
|
// Append the combinator, if needed.
|
|
|
|
if (!stack.IsEmpty()) {
|
|
|
|
const nsCSSSelector *next = stack.ElementAt(index - 1);
|
2010-03-31 11:08:09 -07:00
|
|
|
PRUnichar oper = s->mOperator;
|
|
|
|
if (next->IsPseudoElement()) {
|
|
|
|
NS_ASSERTION(oper == PRUnichar('>'),
|
|
|
|
"improperly chained pseudo element");
|
|
|
|
} else {
|
|
|
|
NS_ASSERTION(oper != PRUnichar(0),
|
|
|
|
"compound selector without combinator");
|
|
|
|
|
2009-02-19 13:55:48 -08:00
|
|
|
aString.Append(PRUnichar(' '));
|
2010-03-31 11:08:09 -07:00
|
|
|
if (oper != PRUnichar(' ')) {
|
2009-02-19 13:55:48 -08:00
|
|
|
aString.Append(oper);
|
|
|
|
aString.Append(PRUnichar(' '));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsCSSSelector::AppendToStringWithoutCombinators
|
2010-05-11 13:41:47 -07:00
|
|
|
(nsAString& aString, nsCSSStyleSheet* aSheet) const
|
2009-02-19 13:55:48 -08:00
|
|
|
{
|
|
|
|
AppendToStringWithoutCombinatorsOrNegations(aString, aSheet, PR_FALSE);
|
|
|
|
|
|
|
|
for (const nsCSSSelector* negation = mNegations; negation;
|
|
|
|
negation = negation->mNegations) {
|
|
|
|
aString.AppendLiteral(":not(");
|
|
|
|
negation->AppendToStringWithoutCombinatorsOrNegations(aString, aSheet,
|
|
|
|
PR_TRUE);
|
|
|
|
aString.Append(PRUnichar(')'));
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-02-19 13:55:48 -08:00
|
|
|
void
|
|
|
|
nsCSSSelector::AppendToStringWithoutCombinatorsOrNegations
|
2010-05-11 13:41:47 -07:00
|
|
|
(nsAString& aString, nsCSSStyleSheet* aSheet,
|
2009-02-19 13:55:48 -08:00
|
|
|
PRBool aIsNegated) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsAutoString temp;
|
2009-08-01 08:53:40 -07:00
|
|
|
PRBool isPseudoElement = IsPseudoElement();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// For non-pseudo-element selectors or for lone pseudo-elements, deal with
|
|
|
|
// namespace prefixes.
|
|
|
|
PRBool wroteNamespace = PR_FALSE;
|
|
|
|
if (!isPseudoElement || !mNext) {
|
|
|
|
// append the namespace prefix if needed
|
2008-11-11 19:36:20 -08:00
|
|
|
nsXMLNameSpaceMap *sheetNS = aSheet ? aSheet->GetNameSpaceMap() : nsnull;
|
|
|
|
|
|
|
|
// sheetNS is non-null if and only if we had an @namespace rule. If it's
|
|
|
|
// null, that means that the only namespaces we could have are the
|
|
|
|
// wildcard namespace (which can be implicit in this case) and the "none"
|
|
|
|
// namespace, which then needs to be explicitly specified.
|
|
|
|
if (!sheetNS) {
|
|
|
|
NS_ASSERTION(mNameSpace == kNameSpaceID_Unknown ||
|
|
|
|
mNameSpace == kNameSpaceID_None,
|
|
|
|
"How did we get this namespace?");
|
|
|
|
if (mNameSpace == kNameSpaceID_None) {
|
|
|
|
aString.Append(PRUnichar('|'));
|
|
|
|
wroteNamespace = PR_TRUE;
|
|
|
|
}
|
|
|
|
} else if (sheetNS->FindNameSpaceID(nsnull) == mNameSpace) {
|
|
|
|
// We have the default namespace (possibly including the wildcard
|
|
|
|
// namespace). Do nothing.
|
|
|
|
NS_ASSERTION(mNameSpace == kNameSpaceID_Unknown ||
|
|
|
|
CanBeNamespaced(aIsNegated),
|
|
|
|
"How did we end up with this namespace?");
|
2009-02-19 13:55:48 -08:00
|
|
|
} else if (mNameSpace == kNameSpaceID_None) {
|
|
|
|
NS_ASSERTION(CanBeNamespaced(aIsNegated),
|
|
|
|
"How did we end up with this namespace?");
|
|
|
|
aString.Append(PRUnichar('|'));
|
|
|
|
wroteNamespace = PR_TRUE;
|
2008-11-11 19:36:20 -08:00
|
|
|
} else if (mNameSpace != kNameSpaceID_Unknown) {
|
|
|
|
NS_ASSERTION(CanBeNamespaced(aIsNegated),
|
|
|
|
"How did we end up with this namespace?");
|
|
|
|
nsIAtom *prefixAtom = sheetNS->FindPrefix(mNameSpace);
|
|
|
|
NS_ASSERTION(prefixAtom, "how'd we get a non-default namespace "
|
|
|
|
"without a prefix?");
|
2010-03-08 07:45:00 -08:00
|
|
|
nsStyleUtil::AppendEscapedCSSIdent(nsDependentAtomString(prefixAtom),
|
|
|
|
aString);
|
2007-03-22 10:30:00 -07:00
|
|
|
aString.Append(PRUnichar('|'));
|
|
|
|
wroteNamespace = PR_TRUE;
|
|
|
|
} else {
|
2008-11-11 19:36:20 -08:00
|
|
|
// A selector for an element in any namespace, while the default
|
|
|
|
// namespace is something else. :not() is special in that the default
|
|
|
|
// namespace is not implied for non-type selectors, so if this is a
|
|
|
|
// negated non-type selector we don't need to output an explicit wildcard
|
|
|
|
// namespace here, since those default to a wildcard namespace.
|
|
|
|
if (CanBeNamespaced(aIsNegated)) {
|
|
|
|
aString.AppendLiteral("*|");
|
|
|
|
wroteNamespace = PR_TRUE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-01 08:53:40 -07:00
|
|
|
if (!mLowercaseTag) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// Universal selector: avoid writing the universal selector when we
|
|
|
|
// can avoid it, especially since we're required to avoid it for the
|
|
|
|
// inside of :not()
|
|
|
|
if (wroteNamespace ||
|
|
|
|
(!mIDList && !mClassList && !mPseudoClassList && !mAttrList &&
|
|
|
|
(aIsNegated || !mNegations))) {
|
|
|
|
aString.Append(PRUnichar('*'));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Append the tag name
|
2010-02-04 12:49:29 -08:00
|
|
|
nsAutoString tag;
|
|
|
|
(isPseudoElement ? mLowercaseTag : mCasedTag)->ToString(tag);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (isPseudoElement) {
|
|
|
|
if (!mNext) {
|
|
|
|
// Lone pseudo-element selector -- toss in a wildcard type selector
|
|
|
|
// XXXldb Why?
|
|
|
|
aString.Append(PRUnichar('*'));
|
|
|
|
}
|
2009-08-01 08:53:40 -07:00
|
|
|
if (!nsCSSPseudoElements::IsCSS2PseudoElement(mLowercaseTag)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
aString.Append(PRUnichar(':'));
|
|
|
|
}
|
2010-02-04 12:49:29 -08:00
|
|
|
// This should not be escaped since (a) the pseudo-element string
|
|
|
|
// has a ":" that can't be escaped and (b) all pseudo-elements at
|
|
|
|
// this point are known, and therefore we know they don't need
|
|
|
|
// escaping.
|
|
|
|
aString.Append(tag);
|
|
|
|
} else {
|
|
|
|
nsStyleUtil::AppendEscapedCSSIdent(tag, aString);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append the id, if there is one
|
|
|
|
if (mIDList) {
|
|
|
|
nsAtomList* list = mIDList;
|
|
|
|
while (list != nsnull) {
|
|
|
|
list->mAtom->ToString(temp);
|
|
|
|
aString.Append(PRUnichar('#'));
|
2010-02-04 12:49:29 -08:00
|
|
|
nsStyleUtil::AppendEscapedCSSIdent(temp, aString);
|
2007-03-22 10:30:00 -07:00
|
|
|
list = list->mNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append each class in the linked list
|
|
|
|
if (mClassList) {
|
|
|
|
nsAtomList* list = mClassList;
|
|
|
|
while (list != nsnull) {
|
|
|
|
list->mAtom->ToString(temp);
|
|
|
|
aString.Append(PRUnichar('.'));
|
2010-02-04 12:49:29 -08:00
|
|
|
nsStyleUtil::AppendEscapedCSSIdent(temp, aString);
|
2007-03-22 10:30:00 -07:00
|
|
|
list = list->mNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append each attribute selector in the linked list
|
|
|
|
if (mAttrList) {
|
|
|
|
nsAttrSelector* list = mAttrList;
|
|
|
|
while (list != nsnull) {
|
|
|
|
aString.Append(PRUnichar('['));
|
|
|
|
// Append the namespace prefix
|
2009-10-20 10:27:47 -07:00
|
|
|
if (list->mNameSpace == kNameSpaceID_Unknown) {
|
|
|
|
aString.Append(PRUnichar('*'));
|
|
|
|
aString.Append(PRUnichar('|'));
|
|
|
|
} else if (list->mNameSpace != kNameSpaceID_None) {
|
2007-04-12 09:23:43 -07:00
|
|
|
if (aSheet) {
|
|
|
|
nsXMLNameSpaceMap *sheetNS = aSheet->GetNameSpaceMap();
|
|
|
|
nsIAtom *prefixAtom = sheetNS->FindPrefix(list->mNameSpace);
|
2009-10-20 10:27:47 -07:00
|
|
|
// Default namespaces don't apply to attribute selectors, so
|
|
|
|
// we must have a useful prefix.
|
|
|
|
NS_ASSERTION(prefixAtom,
|
|
|
|
"How did we end up with a namespace if the prefix "
|
|
|
|
"is unknown?");
|
|
|
|
nsAutoString prefix;
|
|
|
|
prefixAtom->ToString(prefix);
|
2010-02-04 12:49:29 -08:00
|
|
|
nsStyleUtil::AppendEscapedCSSIdent(prefix, aString);
|
2009-10-20 10:27:47 -07:00
|
|
|
aString.Append(PRUnichar('|'));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Append the attribute name
|
2009-09-28 23:07:45 -07:00
|
|
|
list->mCasedAttr->ToString(temp);
|
2010-02-04 12:49:29 -08:00
|
|
|
nsStyleUtil::AppendEscapedCSSIdent(temp, aString);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (list->mFunction != NS_ATTR_FUNC_SET) {
|
|
|
|
// Append the function
|
|
|
|
if (list->mFunction == NS_ATTR_FUNC_INCLUDES)
|
|
|
|
aString.Append(PRUnichar('~'));
|
|
|
|
else if (list->mFunction == NS_ATTR_FUNC_DASHMATCH)
|
|
|
|
aString.Append(PRUnichar('|'));
|
|
|
|
else if (list->mFunction == NS_ATTR_FUNC_BEGINSMATCH)
|
|
|
|
aString.Append(PRUnichar('^'));
|
|
|
|
else if (list->mFunction == NS_ATTR_FUNC_ENDSMATCH)
|
|
|
|
aString.Append(PRUnichar('$'));
|
|
|
|
else if (list->mFunction == NS_ATTR_FUNC_CONTAINSMATCH)
|
|
|
|
aString.Append(PRUnichar('*'));
|
|
|
|
|
|
|
|
aString.Append(PRUnichar('='));
|
|
|
|
|
|
|
|
// Append the value
|
2009-03-05 20:05:00 -08:00
|
|
|
nsStyleUtil::AppendEscapedCSSString(list->mValue, aString);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
aString.Append(PRUnichar(']'));
|
|
|
|
|
|
|
|
list = list->mNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append each pseudo-class in the linked list
|
2009-10-07 20:22:42 -07:00
|
|
|
if (isPseudoElement) {
|
|
|
|
#ifdef MOZ_XUL
|
|
|
|
if (mPseudoClassList) {
|
|
|
|
NS_ABORT_IF_FALSE(nsCSSAnonBoxes::IsTreePseudoElement(mLowercaseTag),
|
|
|
|
"must be tree pseudo-element");
|
|
|
|
aString.Append(PRUnichar('('));
|
|
|
|
for (nsPseudoClassList* list = mPseudoClassList; list;
|
|
|
|
list = list->mNext) {
|
|
|
|
list->mAtom->ToString(temp);
|
2010-02-04 12:49:29 -08:00
|
|
|
nsStyleUtil::AppendEscapedCSSIdent(temp, aString);
|
2009-10-07 20:22:42 -07:00
|
|
|
NS_ABORT_IF_FALSE(!list->u.mMemory, "data not expected");
|
|
|
|
aString.Append(PRUnichar(','));
|
|
|
|
}
|
|
|
|
// replace the final comma with a close-paren
|
|
|
|
aString.Replace(aString.Length() - 1, 1, PRUnichar(')'));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
NS_ABORT_IF_FALSE(!mPseudoClassList, "unexpected pseudo-class list");
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
for (nsPseudoClassList* list = mPseudoClassList; list; list = list->mNext) {
|
2007-03-22 10:30:00 -07:00
|
|
|
list->mAtom->ToString(temp);
|
2010-02-04 12:49:29 -08:00
|
|
|
// This should not be escaped since (a) the pseudo-class string
|
|
|
|
// has a ":" that can't be escaped and (b) all pseudo-classes at
|
|
|
|
// this point are known, and therefore we know they don't need
|
|
|
|
// escaping.
|
2007-03-22 10:30:00 -07:00
|
|
|
aString.Append(temp);
|
2008-06-02 20:17:35 -07:00
|
|
|
if (list->u.mMemory) {
|
2007-03-22 10:30:00 -07:00
|
|
|
aString.Append(PRUnichar('('));
|
2008-06-02 20:17:35 -07:00
|
|
|
if (nsCSSPseudoClasses::HasStringArg(list->mAtom)) {
|
2010-02-04 12:49:29 -08:00
|
|
|
nsStyleUtil::AppendEscapedCSSIdent(
|
|
|
|
nsDependentString(list->u.mString), aString);
|
2010-04-23 19:59:47 -07:00
|
|
|
} else if (nsCSSPseudoClasses::HasNthPairArg(list->mAtom)) {
|
2008-06-02 20:17:35 -07:00
|
|
|
PRInt32 a = list->u.mNumbers[0],
|
|
|
|
b = list->u.mNumbers[1];
|
|
|
|
temp.Truncate();
|
|
|
|
if (a != 0) {
|
|
|
|
if (a == -1) {
|
|
|
|
temp.Append(PRUnichar('-'));
|
|
|
|
} else if (a != 1) {
|
|
|
|
temp.AppendInt(a);
|
|
|
|
}
|
|
|
|
temp.Append(PRUnichar('n'));
|
|
|
|
}
|
|
|
|
if (b != 0 || a == 0) {
|
|
|
|
if (b >= 0 && a != 0) // check a != 0 for whether we printed above
|
|
|
|
temp.Append(PRUnichar('+'));
|
|
|
|
temp.AppendInt(b);
|
|
|
|
}
|
|
|
|
aString.Append(temp);
|
2010-04-23 19:59:47 -07:00
|
|
|
} else {
|
|
|
|
NS_ASSERTION(nsCSSPseudoClasses::HasSelectorListArg(list->mAtom),
|
|
|
|
"unexpected pseudo-class");
|
|
|
|
nsString tmp;
|
|
|
|
list->u.mSelectors->ToString(tmp, aSheet);
|
|
|
|
aString.Append(tmp);
|
2008-06-02 20:17:35 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
aString.Append(PRUnichar(')'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-11 19:36:20 -08:00
|
|
|
PRBool
|
|
|
|
nsCSSSelector::CanBeNamespaced(PRBool aIsNegated) const
|
|
|
|
{
|
|
|
|
return !aIsNegated ||
|
|
|
|
(!mIDList && !mClassList && !mPseudoClassList && !mAttrList);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// -- nsCSSSelectorList -------------------------------
|
|
|
|
|
|
|
|
nsCSSSelectorList::nsCSSSelectorList(void)
|
|
|
|
: mSelectors(nsnull),
|
|
|
|
mWeight(0),
|
|
|
|
mNext(nsnull)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsCSSSelectorList);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCSSSelectorList::~nsCSSSelectorList()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsCSSSelectorList);
|
2008-10-17 01:13:16 -07:00
|
|
|
delete mSelectors;
|
|
|
|
NS_CSS_DELETE_LIST_MEMBER(nsCSSSelectorList, this, mNext);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-31 11:08:09 -07:00
|
|
|
nsCSSSelector*
|
|
|
|
nsCSSSelectorList::AddSelector(PRUnichar aOperator)
|
|
|
|
{
|
|
|
|
nsCSSSelector* newSel = new nsCSSSelector();
|
|
|
|
|
|
|
|
if (mSelectors) {
|
|
|
|
NS_ASSERTION(aOperator != PRUnichar(0), "chaining without combinator");
|
|
|
|
mSelectors->SetOperator(aOperator);
|
|
|
|
} else {
|
|
|
|
NS_ASSERTION(aOperator == PRUnichar(0), "combinator without chaining");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-03-31 11:08:09 -07:00
|
|
|
|
|
|
|
newSel->mNext = mSelectors;
|
|
|
|
mSelectors = newSel;
|
|
|
|
return newSel;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-05-11 13:41:47 -07:00
|
|
|
nsCSSSelectorList::ToString(nsAString& aResult, nsCSSStyleSheet* aSheet)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
aResult.Truncate();
|
|
|
|
nsCSSSelectorList *p = this;
|
|
|
|
for (;;) {
|
|
|
|
p->mSelectors->ToString(aResult, aSheet, PR_TRUE);
|
|
|
|
p = p->mNext;
|
|
|
|
if (!p)
|
|
|
|
break;
|
|
|
|
aResult.AppendLiteral(", ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCSSSelectorList*
|
|
|
|
nsCSSSelectorList::Clone(PRBool aDeep) const
|
|
|
|
{
|
|
|
|
nsCSSSelectorList *result = new nsCSSSelectorList();
|
|
|
|
result->mWeight = mWeight;
|
|
|
|
NS_IF_CLONE(mSelectors);
|
|
|
|
|
|
|
|
if (aDeep) {
|
2008-10-17 01:13:16 -07:00
|
|
|
NS_CSS_CLONE_LIST_MEMBER(nsCSSSelectorList, this, mNext, result,
|
|
|
|
(PR_FALSE));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- CSSImportantRule -------------------------------
|
|
|
|
|
|
|
|
class CSSStyleRuleImpl;
|
|
|
|
|
|
|
|
class CSSImportantRule : public nsIStyleRule {
|
|
|
|
public:
|
2010-07-23 11:00:52 -07:00
|
|
|
CSSImportantRule(css::Declaration *aDeclaration);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIStyleRule interface
|
2010-05-19 19:28:00 -07:00
|
|
|
virtual void MapRuleInfoInto(nsRuleData* aRuleData);
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef DEBUG
|
2010-05-19 19:28:00 -07:00
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~CSSImportantRule(void);
|
|
|
|
|
2010-07-23 11:00:52 -07:00
|
|
|
// Not an owning reference; the CSSStyleRuleImpl that owns this
|
|
|
|
// CSSImportantRule also owns the mDeclaration, and any rule node
|
|
|
|
// pointing to this rule keeps that CSSStyleRuleImpl alive as well.
|
|
|
|
css::Declaration* mDeclaration;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
friend class CSSStyleRuleImpl;
|
|
|
|
};
|
|
|
|
|
2010-07-23 11:00:52 -07:00
|
|
|
CSSImportantRule::CSSImportantRule(css::Declaration* aDeclaration)
|
|
|
|
: mDeclaration(aDeclaration)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CSSImportantRule::~CSSImportantRule(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(CSSImportantRule, nsIStyleRule)
|
|
|
|
|
2010-05-19 19:28:00 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
CSSImportantRule::MapRuleInfoInto(nsRuleData* aRuleData)
|
|
|
|
{
|
2010-07-23 11:00:52 -07:00
|
|
|
mDeclaration->MapImportantRuleInfoInto(aRuleData);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2010-05-19 19:28:00 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
CSSImportantRule::List(FILE* out, PRInt32 aIndent) const
|
|
|
|
{
|
|
|
|
// Indent
|
|
|
|
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
|
|
|
|
|
2010-07-23 11:00:52 -07:00
|
|
|
fprintf(out, "! Important declaration=%p\n",
|
|
|
|
static_cast<void*>(mDeclaration));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// --------------------------------------------------------
|
|
|
|
|
|
|
|
class DOMCSSStyleRuleImpl;
|
|
|
|
|
|
|
|
class DOMCSSDeclarationImpl : public nsDOMCSSDeclaration
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DOMCSSDeclarationImpl(nsICSSStyleRule *aRule);
|
|
|
|
virtual ~DOMCSSDeclarationImpl(void);
|
|
|
|
|
|
|
|
NS_IMETHOD GetParentRule(nsIDOMCSSRule **aParent);
|
2009-07-13 04:14:57 -07:00
|
|
|
void DropReference(void);
|
2010-07-23 11:00:47 -07:00
|
|
|
virtual css::Declaration* GetCSSDeclaration(PRBool aAllocate);
|
|
|
|
virtual nsresult SetCSSDeclaration(css::Declaration* aDecl);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual nsresult GetCSSParsingEnvironment(nsIURI** aSheetURI,
|
|
|
|
nsIURI** aBaseURI,
|
2007-05-02 18:15:53 -07:00
|
|
|
nsIPrincipal** aSheetPrincipal,
|
2010-03-02 13:00:53 -08:00
|
|
|
mozilla::css::Loader** aCSSLoader);
|
2009-12-11 08:13:19 -08:00
|
|
|
virtual nsIDocument* DocToUpdate();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Override |AddRef| and |Release| for being a member of
|
|
|
|
// |DOMCSSStyleRuleImpl|.
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void);
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void);
|
|
|
|
|
2009-10-05 16:16:22 -07:00
|
|
|
virtual nsINode *GetParentObject()
|
2009-07-13 04:14:57 -07:00
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
friend class DOMCSSStyleRuleImpl;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// This reference is not reference-counted. The rule object tells us
|
|
|
|
// when it's about to go away.
|
|
|
|
nsICSSStyleRule *mRule;
|
|
|
|
|
|
|
|
inline DOMCSSStyleRuleImpl* DomRule();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
|
|
|
// This object cannot be allocated on its own. It must be a member of
|
|
|
|
// DOMCSSStyleRuleImpl.
|
|
|
|
void* operator new(size_t size) CPP_THROW_NEW;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DOMCSSStyleRuleImpl : public nsICSSStyleRuleDOMWrapper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DOMCSSStyleRuleImpl(nsICSSStyleRule *aRule);
|
|
|
|
virtual ~DOMCSSStyleRuleImpl();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
NS_DECL_NSIDOMCSSSTYLERULE
|
|
|
|
|
|
|
|
// nsICSSStyleRuleDOMWrapper
|
|
|
|
NS_IMETHOD GetCSSStyleRule(nsICSSStyleRule **aResult);
|
|
|
|
|
|
|
|
DOMCSSDeclarationImpl* DOMDeclaration() { return &mDOMDeclaration; }
|
|
|
|
|
|
|
|
friend class DOMCSSDeclarationImpl;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
DOMCSSDeclarationImpl mDOMDeclaration;
|
|
|
|
|
|
|
|
nsICSSStyleRule* Rule() {
|
|
|
|
return mDOMDeclaration.mRule;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
DOMCSSDeclarationImpl::DOMCSSDeclarationImpl(nsICSSStyleRule *aRule)
|
|
|
|
: mRule(aRule)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(DOMCSSDeclarationImpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
DOMCSSDeclarationImpl::~DOMCSSDeclarationImpl(void)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!mRule, "DropReference not called.");
|
|
|
|
|
|
|
|
MOZ_COUNT_DTOR(DOMCSSDeclarationImpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline DOMCSSStyleRuleImpl* DOMCSSDeclarationImpl::DomRule()
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
return reinterpret_cast<DOMCSSStyleRuleImpl*>
|
|
|
|
(reinterpret_cast<char*>(this) -
|
2007-03-22 10:30:00 -07:00
|
|
|
offsetof(DOMCSSStyleRuleImpl, mDOMDeclaration));
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF_USING_AGGREGATOR(DOMCSSDeclarationImpl, DomRule())
|
|
|
|
NS_IMPL_RELEASE_USING_AGGREGATOR(DOMCSSDeclarationImpl, DomRule())
|
|
|
|
|
|
|
|
void
|
|
|
|
DOMCSSDeclarationImpl::DropReference(void)
|
|
|
|
{
|
|
|
|
mRule = nsnull;
|
|
|
|
}
|
|
|
|
|
2010-07-23 11:00:34 -07:00
|
|
|
css::Declaration*
|
|
|
|
DOMCSSDeclarationImpl::GetCSSDeclaration(PRBool aAllocate)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mRule) {
|
2010-07-23 11:00:34 -07:00
|
|
|
return mRule->GetDeclaration();
|
|
|
|
} else {
|
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a utility function. It will only fail if it can't get a
|
|
|
|
* parser. This means it can return NS_OK without aURI or aCSSLoader
|
|
|
|
* being initialized.
|
|
|
|
*/
|
|
|
|
nsresult
|
2010-03-02 12:59:32 -08:00
|
|
|
DOMCSSDeclarationImpl::GetCSSParsingEnvironment(nsIURI** aSheetURI,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIURI** aBaseURI,
|
2007-05-02 18:15:53 -07:00
|
|
|
nsIPrincipal** aSheetPrincipal,
|
2010-03-02 13:00:53 -08:00
|
|
|
mozilla::css::Loader** aCSSLoader)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// null out the out params since some of them may not get initialized below
|
|
|
|
*aSheetURI = nsnull;
|
|
|
|
*aBaseURI = nsnull;
|
2007-05-02 18:15:53 -07:00
|
|
|
*aSheetPrincipal = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
*aCSSLoader = nsnull;
|
2010-03-02 12:59:32 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIStyleSheet> sheet;
|
|
|
|
if (mRule) {
|
2010-07-18 07:39:20 -07:00
|
|
|
sheet = mRule->GetStyleSheet();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (sheet) {
|
2010-05-17 21:00:39 -07:00
|
|
|
NS_IF_ADDREF(*aSheetURI = sheet->GetSheetURI());
|
|
|
|
NS_IF_ADDREF(*aBaseURI = sheet->GetBaseURI());
|
2007-05-02 18:15:53 -07:00
|
|
|
|
2010-05-11 13:41:47 -07:00
|
|
|
nsRefPtr<nsCSSStyleSheet> cssSheet(do_QueryObject(sheet));
|
2007-05-02 18:15:53 -07:00
|
|
|
if (cssSheet) {
|
|
|
|
NS_ADDREF(*aSheetPrincipal = cssSheet->Principal());
|
|
|
|
}
|
|
|
|
|
2010-05-17 21:00:40 -07:00
|
|
|
nsIDocument* document = sheet->GetOwningDocument();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (document) {
|
|
|
|
NS_ADDREF(*aCSSLoader = document->CSSLoader());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-02 12:59:32 -08:00
|
|
|
nsresult result = NS_OK;
|
|
|
|
if (!*aSheetPrincipal) {
|
2007-05-02 18:15:53 -07:00
|
|
|
result = CallCreateInstance("@mozilla.org/nullprincipal;1",
|
|
|
|
aSheetPrincipal);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSDeclarationImpl::GetParentRule(nsIDOMCSSRule **aParent)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aParent);
|
|
|
|
|
|
|
|
if (!mRule) {
|
|
|
|
*aParent = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mRule->GetDOMRule(aParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2010-07-23 11:00:47 -07:00
|
|
|
DOMCSSDeclarationImpl::SetCSSDeclaration(css::Declaration* aDecl)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(mRule,
|
|
|
|
"can only be called when |GetCSSDeclaration| returned a declaration");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> owningDoc;
|
2010-07-18 07:39:20 -07:00
|
|
|
nsCOMPtr<nsIStyleSheet> sheet = mRule->GetStyleSheet();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (sheet) {
|
2010-05-12 13:18:47 -07:00
|
|
|
owningDoc = sheet->GetOwningDocument();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
mozAutoDocUpdate updateBatch(owningDoc, UPDATE_STYLE, PR_TRUE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsICSSStyleRule> oldRule = mRule;
|
2010-07-23 11:00:47 -07:00
|
|
|
mRule = oldRule->DeclarationChanged(aDecl, PR_TRUE).get();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!mRule)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
nsrefcnt cnt = mRule->Release();
|
|
|
|
if (cnt == 0) {
|
|
|
|
NS_NOTREACHED("container didn't take ownership");
|
|
|
|
mRule = nsnull;
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (owningDoc) {
|
|
|
|
owningDoc->StyleRuleChanged(sheet, oldRule, mRule);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-12-11 08:13:19 -08:00
|
|
|
nsIDocument*
|
|
|
|
DOMCSSDeclarationImpl::DocToUpdate()
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
DOMCSSStyleRuleImpl::DOMCSSStyleRuleImpl(nsICSSStyleRule* aRule)
|
|
|
|
: mDOMDeclaration(aRule)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DOMCSSStyleRuleImpl::~DOMCSSStyleRuleImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-01-12 05:08:43 -08:00
|
|
|
DOMCI_DATA(CSSStyleRule, DOMCSSStyleRuleImpl)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN(DOMCSSStyleRuleImpl)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsICSSStyleRuleDOMWrapper)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMCSSStyleRule)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMCSSRule)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
2010-03-17 08:09:05 -07:00
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(CSSStyleRule)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(DOMCSSStyleRuleImpl)
|
|
|
|
NS_IMPL_RELEASE(DOMCSSStyleRuleImpl)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSStyleRuleImpl::GetType(PRUint16* aType)
|
|
|
|
{
|
|
|
|
*aType = nsIDOMCSSRule::STYLE_RULE;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSStyleRuleImpl::GetCssText(nsAString& aCssText)
|
|
|
|
{
|
|
|
|
if (!Rule()) {
|
|
|
|
aCssText.Truncate();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return Rule()->GetCssText(aCssText);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSStyleRuleImpl::SetCssText(const nsAString& aCssText)
|
|
|
|
{
|
|
|
|
if (!Rule()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return Rule()->SetCssText(aCssText);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSStyleRuleImpl::GetParentStyleSheet(nsIDOMCSSStyleSheet** aSheet)
|
|
|
|
{
|
|
|
|
if (!Rule()) {
|
|
|
|
*aSheet = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-05-11 13:41:47 -07:00
|
|
|
nsRefPtr<nsCSSStyleSheet> sheet;
|
2007-03-22 10:30:00 -07:00
|
|
|
Rule()->GetParentStyleSheet(getter_AddRefs(sheet));
|
2010-05-31 16:51:06 -07:00
|
|
|
NS_IF_ADDREF(*aSheet = sheet);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSStyleRuleImpl::GetParentRule(nsIDOMCSSRule** aParentRule)
|
|
|
|
{
|
|
|
|
if (!Rule()) {
|
|
|
|
*aParentRule = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsICSSGroupRule> rule;
|
|
|
|
Rule()->GetParentRule(getter_AddRefs(rule));
|
|
|
|
if (!rule) {
|
|
|
|
*aParentRule = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return rule->GetDOMRule(aParentRule);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSStyleRuleImpl::GetSelectorText(nsAString& aSelectorText)
|
|
|
|
{
|
|
|
|
if (!Rule()) {
|
|
|
|
aSelectorText.Truncate();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return Rule()->GetSelectorText(aSelectorText);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSStyleRuleImpl::SetSelectorText(const nsAString& aSelectorText)
|
|
|
|
{
|
|
|
|
if (!Rule()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return Rule()->SetSelectorText(aSelectorText);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSStyleRuleImpl::GetStyle(nsIDOMCSSStyleDeclaration** aStyle)
|
|
|
|
{
|
|
|
|
*aStyle = &mDOMDeclaration;
|
|
|
|
NS_ADDREF(*aStyle);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMCSSStyleRuleImpl::GetCSSStyleRule(nsICSSStyleRule **aResult)
|
|
|
|
{
|
|
|
|
*aResult = Rule();
|
|
|
|
NS_IF_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- nsCSSStyleRule -------------------------------
|
|
|
|
|
|
|
|
class CSSStyleRuleImpl : public nsCSSRule,
|
|
|
|
public nsICSSStyleRule
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CSSStyleRuleImpl(nsCSSSelectorList* aSelector,
|
2010-06-28 15:49:35 -07:00
|
|
|
css::Declaration *aDeclaration);
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
|
|
|
// for |Clone|
|
2010-07-23 11:00:47 -07:00
|
|
|
CSSStyleRuleImpl(const CSSStyleRuleImpl& aCopy);
|
2007-03-22 10:30:00 -07:00
|
|
|
// for |DeclarationChanged|
|
|
|
|
CSSStyleRuleImpl(CSSStyleRuleImpl& aCopy,
|
2010-07-23 11:00:47 -07:00
|
|
|
css::Declaration *aDeclaration);
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
virtual nsCSSSelectorList* Selector(void);
|
|
|
|
|
|
|
|
virtual PRUint32 GetLineNumber(void) const;
|
|
|
|
virtual void SetLineNumber(PRUint32 aLineNumber);
|
|
|
|
|
2010-06-28 15:49:35 -07:00
|
|
|
virtual css::Declaration* GetDeclaration(void) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-12-10 14:36:02 -08:00
|
|
|
virtual nsIStyleRule* GetImportantRule(void);
|
2009-12-11 08:13:19 -08:00
|
|
|
virtual void RuleMatched();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-18 07:39:20 -07:00
|
|
|
virtual already_AddRefed<nsIStyleSheet> GetStyleSheet() const;
|
|
|
|
virtual void SetStyleSheet(nsCSSStyleSheet* aSheet);
|
2010-07-23 11:00:47 -07:00
|
|
|
|
2010-07-18 07:39:20 -07:00
|
|
|
virtual void SetParentRule(nsICSSGroupRule* aRule);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual nsresult GetCssText(nsAString& aCssText);
|
|
|
|
virtual nsresult SetCssText(const nsAString& aCssText);
|
2010-05-11 13:41:47 -07:00
|
|
|
virtual nsresult GetParentStyleSheet(nsCSSStyleSheet** aSheet);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual nsresult GetParentRule(nsICSSGroupRule** aParentRule);
|
|
|
|
virtual nsresult GetSelectorText(nsAString& aSelectorText);
|
|
|
|
virtual nsresult SetSelectorText(const nsAString& aSelectorText);
|
|
|
|
|
2010-07-18 07:39:20 -07:00
|
|
|
virtual PRInt32 GetType() const;
|
2010-08-15 08:19:34 -07:00
|
|
|
virtual already_AddRefed<nsICSSRule> Clone() const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-22 07:31:14 -07:00
|
|
|
nsIDOMCSSRule* GetDOMRuleWeak(nsresult* aResult);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual already_AddRefed<nsICSSStyleRule>
|
2010-07-23 11:00:47 -07:00
|
|
|
DeclarationChanged(css::Declaration* aDecl, PRBool aHandleContainer);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// The new mapping function.
|
2010-05-19 19:28:00 -07:00
|
|
|
virtual void MapRuleInfoInto(nsRuleData* aRuleData);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2010-05-19 19:28:00 -07:00
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
2010-07-23 11:00:47 -07:00
|
|
|
private:
|
|
|
|
// These are not supported and are not implemented!
|
|
|
|
CSSStyleRuleImpl& operator=(const CSSStyleRuleImpl& aCopy);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~CSSStyleRuleImpl(void);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsCSSSelectorList* mSelector; // null for style attribute
|
2010-06-28 15:49:35 -07:00
|
|
|
css::Declaration* mDeclaration;
|
2010-07-23 11:00:52 -07:00
|
|
|
CSSImportantRule* mImportantRule; // initialized by RuleMatched
|
2010-06-28 15:49:35 -07:00
|
|
|
DOMCSSStyleRuleImpl* mDOMRule;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 mLineNumber;
|
2010-08-02 15:40:35 -07:00
|
|
|
PRPackedBool mWasMatched;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
CSSStyleRuleImpl::CSSStyleRuleImpl(nsCSSSelectorList* aSelector,
|
2010-06-28 15:49:35 -07:00
|
|
|
css::Declaration* aDeclaration)
|
2007-03-22 10:30:00 -07:00
|
|
|
: nsCSSRule(),
|
|
|
|
mSelector(aSelector),
|
2010-06-28 15:49:35 -07:00
|
|
|
mDeclaration(aDeclaration),
|
2007-03-22 10:30:00 -07:00
|
|
|
mImportantRule(nsnull),
|
|
|
|
mDOMRule(nsnull),
|
2010-08-02 15:40:35 -07:00
|
|
|
mLineNumber(0),
|
|
|
|
mWasMatched(PR_FALSE)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// for |Clone|
|
|
|
|
CSSStyleRuleImpl::CSSStyleRuleImpl(const CSSStyleRuleImpl& aCopy)
|
|
|
|
: nsCSSRule(aCopy),
|
|
|
|
mSelector(aCopy.mSelector ? aCopy.mSelector->Clone() : nsnull),
|
2010-07-23 11:00:52 -07:00
|
|
|
mDeclaration(new css::Declaration(*aCopy.mDeclaration)),
|
2007-03-22 10:30:00 -07:00
|
|
|
mImportantRule(nsnull),
|
|
|
|
mDOMRule(nsnull),
|
2010-08-02 15:40:35 -07:00
|
|
|
mLineNumber(aCopy.mLineNumber),
|
|
|
|
mWasMatched(PR_FALSE)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// rest is constructed lazily on existing data
|
|
|
|
}
|
|
|
|
|
2010-07-23 11:00:47 -07:00
|
|
|
// for |SetCSSDeclaration|
|
2007-03-22 10:30:00 -07:00
|
|
|
CSSStyleRuleImpl::CSSStyleRuleImpl(CSSStyleRuleImpl& aCopy,
|
2010-06-28 15:49:35 -07:00
|
|
|
css::Declaration* aDeclaration)
|
2007-03-22 10:30:00 -07:00
|
|
|
: nsCSSRule(aCopy),
|
|
|
|
mSelector(aCopy.mSelector),
|
|
|
|
mDeclaration(aDeclaration),
|
|
|
|
mImportantRule(nsnull),
|
|
|
|
mDOMRule(aCopy.mDOMRule),
|
2010-08-02 15:40:35 -07:00
|
|
|
mLineNumber(aCopy.mLineNumber),
|
|
|
|
mWasMatched(PR_FALSE)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// The DOM rule is replacing |aCopy| with |this|, so transfer
|
|
|
|
// the reverse pointer as well (and transfer ownership).
|
|
|
|
aCopy.mDOMRule = nsnull;
|
|
|
|
|
2010-07-23 11:00:52 -07:00
|
|
|
// Similarly for the selector.
|
2007-03-22 10:30:00 -07:00
|
|
|
aCopy.mSelector = nsnull;
|
2010-07-23 11:00:52 -07:00
|
|
|
|
|
|
|
// We are probably replacing the old declaration with |aDeclaration|
|
|
|
|
// instead of taking ownership of the old declaration; only null out
|
|
|
|
// aCopy.mDeclaration if we are taking ownership.
|
|
|
|
if (mDeclaration == aCopy.mDeclaration) {
|
|
|
|
// This should only ever happen if the declaration was modifiable.
|
|
|
|
mDeclaration->AssertMutable();
|
|
|
|
aCopy.mDeclaration = nsnull;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
CSSStyleRuleImpl::~CSSStyleRuleImpl(void)
|
|
|
|
{
|
2010-07-23 11:00:52 -07:00
|
|
|
delete mSelector;
|
|
|
|
delete mDeclaration;
|
|
|
|
NS_IF_RELEASE(mImportantRule);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (mDOMRule) {
|
|
|
|
mDOMRule->DOMDeclaration()->DropReference();
|
|
|
|
NS_RELEASE(mDOMRule);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryInterface implementation for CSSStyleRuleImpl
|
|
|
|
NS_INTERFACE_MAP_BEGIN(CSSStyleRuleImpl)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsICSSStyleRule)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsICSSRule)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIStyleRule)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsICSSStyleRule)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF_INHERITED(CSSStyleRuleImpl, nsCSSRule)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(CSSStyleRuleImpl, nsCSSRule)
|
|
|
|
|
|
|
|
nsCSSSelectorList* CSSStyleRuleImpl::Selector(void)
|
|
|
|
{
|
|
|
|
return mSelector;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 CSSStyleRuleImpl::GetLineNumber(void) const
|
|
|
|
{
|
|
|
|
return mLineNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSSStyleRuleImpl::SetLineNumber(PRUint32 aLineNumber)
|
|
|
|
{
|
|
|
|
mLineNumber = aLineNumber;
|
|
|
|
}
|
|
|
|
|
2010-06-28 15:49:35 -07:00
|
|
|
css::Declaration* CSSStyleRuleImpl::GetDeclaration(void) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return mDeclaration;
|
|
|
|
}
|
|
|
|
|
2009-12-10 14:36:02 -08:00
|
|
|
nsIStyleRule* CSSStyleRuleImpl::GetImportantRule(void)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return mImportantRule;
|
|
|
|
}
|
|
|
|
|
2009-12-11 08:13:19 -08:00
|
|
|
/* virtual */ void
|
|
|
|
CSSStyleRuleImpl::RuleMatched()
|
|
|
|
{
|
2010-08-02 15:40:35 -07:00
|
|
|
if (!mWasMatched) {
|
2010-07-23 11:00:52 -07:00
|
|
|
NS_ABORT_IF_FALSE(!mImportantRule, "should not have important rule yet");
|
2009-12-11 08:13:20 -08:00
|
|
|
|
2010-08-02 15:40:35 -07:00
|
|
|
mWasMatched = PR_TRUE;
|
2010-07-23 11:00:52 -07:00
|
|
|
mDeclaration->SetImmutable();
|
|
|
|
if (mDeclaration->HasImportantData()) {
|
|
|
|
NS_ADDREF(mImportantRule = new CSSImportantRule(mDeclaration));
|
|
|
|
}
|
2009-12-11 08:13:19 -08:00
|
|
|
}
|
2009-12-11 08:13:19 -08:00
|
|
|
}
|
|
|
|
|
2010-07-18 07:39:20 -07:00
|
|
|
/* virtual */ already_AddRefed<nsIStyleSheet>
|
|
|
|
CSSStyleRuleImpl::GetStyleSheet() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// XXX What about inner, etc.
|
2010-07-18 07:39:20 -07:00
|
|
|
return nsCSSRule::GetStyleSheet();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-18 07:39:20 -07:00
|
|
|
/* virtual */ void
|
2010-05-11 13:41:47 -07:00
|
|
|
CSSStyleRuleImpl::SetStyleSheet(nsCSSStyleSheet* aSheet)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-07-18 07:39:20 -07:00
|
|
|
nsCSSRule::SetStyleSheet(aSheet);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-18 07:39:20 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
CSSStyleRuleImpl::SetParentRule(nsICSSGroupRule* aRule)
|
|
|
|
{
|
2010-07-18 07:39:20 -07:00
|
|
|
nsCSSRule::SetParentRule(aRule);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-18 07:39:20 -07:00
|
|
|
/* virtual */ PRInt32
|
|
|
|
CSSStyleRuleImpl::GetType() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-07-18 07:39:20 -07:00
|
|
|
return nsICSSRule::STYLE_RULE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-08-15 08:19:34 -07:00
|
|
|
/* virtual */ already_AddRefed<nsICSSRule>
|
|
|
|
CSSStyleRuleImpl::Clone() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-08-15 08:19:34 -07:00
|
|
|
nsCOMPtr<nsICSSRule> clone = new CSSStyleRuleImpl(*this);
|
|
|
|
return clone.forget();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-10-22 07:31:14 -07:00
|
|
|
nsIDOMCSSRule*
|
|
|
|
CSSStyleRuleImpl::GetDOMRuleWeak(nsresult *aResult)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-22 07:31:14 -07:00
|
|
|
*aResult = NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!mSheet) {
|
|
|
|
// inline style rules aren't supposed to have a DOM rule object, only
|
|
|
|
// a declaration.
|
2008-10-22 07:31:14 -07:00
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (!mDOMRule) {
|
|
|
|
mDOMRule = new DOMCSSStyleRuleImpl(this);
|
|
|
|
if (!mDOMRule) {
|
2008-10-22 07:31:14 -07:00
|
|
|
*aResult = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
NS_ADDREF(mDOMRule);
|
|
|
|
}
|
2008-10-22 07:31:14 -07:00
|
|
|
return mDOMRule;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ already_AddRefed<nsICSSStyleRule>
|
2010-07-23 11:00:47 -07:00
|
|
|
CSSStyleRuleImpl::DeclarationChanged(css::Declaration* aDecl,
|
|
|
|
PRBool aHandleContainer)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-07-23 11:00:47 -07:00
|
|
|
CSSStyleRuleImpl* clone = new CSSStyleRuleImpl(*this, aDecl);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!clone) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ADDREF(clone); // for return
|
|
|
|
|
|
|
|
if (aHandleContainer) {
|
|
|
|
NS_ASSERTION(mSheet, "rule must be in a sheet");
|
|
|
|
if (mParentRule) {
|
|
|
|
mSheet->ReplaceRuleInGroup(mParentRule, this, clone);
|
|
|
|
} else {
|
|
|
|
mSheet->ReplaceStyleRule(this, clone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return clone;
|
|
|
|
}
|
|
|
|
|
2010-05-19 19:28:00 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
CSSStyleRuleImpl::MapRuleInfoInto(nsRuleData* aRuleData)
|
|
|
|
{
|
2010-08-02 15:40:35 -07:00
|
|
|
NS_ABORT_IF_FALSE(mWasMatched,
|
2009-12-11 08:13:20 -08:00
|
|
|
"somebody forgot to call nsICSSStyleRule::RuleMatched");
|
2010-07-23 11:00:52 -07:00
|
|
|
mDeclaration->MapNormalRuleInfoInto(aRuleData);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2010-05-19 19:28:00 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
CSSStyleRuleImpl::List(FILE* out, PRInt32 aIndent) const
|
|
|
|
{
|
|
|
|
// Indent
|
|
|
|
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
|
|
|
|
|
|
|
|
nsAutoString buffer;
|
|
|
|
if (mSelector)
|
|
|
|
mSelector->ToString(buffer, mSheet);
|
|
|
|
|
|
|
|
buffer.AppendLiteral(" ");
|
|
|
|
fputs(NS_LossyConvertUTF16toASCII(buffer).get(), out);
|
|
|
|
if (nsnull != mDeclaration) {
|
|
|
|
mDeclaration->List(out);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fputs("{ null declaration }", out);
|
|
|
|
}
|
|
|
|
fputs("\n", out);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* virtual */ nsresult
|
|
|
|
CSSStyleRuleImpl::GetCssText(nsAString& aCssText)
|
|
|
|
{
|
|
|
|
if (mSelector) {
|
|
|
|
mSelector->ToString(aCssText, mSheet);
|
|
|
|
aCssText.Append(PRUnichar(' '));
|
|
|
|
}
|
|
|
|
aCssText.Append(PRUnichar('{'));
|
|
|
|
aCssText.Append(PRUnichar(' '));
|
|
|
|
if (mDeclaration)
|
|
|
|
{
|
|
|
|
nsAutoString tempString;
|
|
|
|
mDeclaration->ToString( tempString );
|
|
|
|
aCssText.Append( tempString );
|
|
|
|
}
|
|
|
|
aCssText.Append(PRUnichar(' '));
|
|
|
|
aCssText.Append(PRUnichar('}'));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsresult
|
|
|
|
CSSStyleRuleImpl::SetCssText(const nsAString& aCssText)
|
|
|
|
{
|
|
|
|
// XXX TBI - need to re-parse rule & declaration
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsresult
|
2010-05-11 13:41:47 -07:00
|
|
|
CSSStyleRuleImpl::GetParentStyleSheet(nsCSSStyleSheet** aSheet)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
*aSheet = mSheet;
|
|
|
|
NS_IF_ADDREF(*aSheet);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsresult
|
|
|
|
CSSStyleRuleImpl::GetParentRule(nsICSSGroupRule** aParentRule)
|
|
|
|
{
|
|
|
|
*aParentRule = mParentRule;
|
|
|
|
NS_IF_ADDREF(*aParentRule);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsresult
|
|
|
|
CSSStyleRuleImpl::GetSelectorText(nsAString& aSelectorText)
|
|
|
|
{
|
|
|
|
if (mSelector)
|
|
|
|
mSelector->ToString(aSelectorText, mSheet);
|
|
|
|
else
|
|
|
|
aSelectorText.Truncate();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsresult
|
|
|
|
CSSStyleRuleImpl::SetSelectorText(const nsAString& aSelectorText)
|
|
|
|
{
|
|
|
|
// XXX TBI - get a parser and re-parse the selectors,
|
|
|
|
// XXX then need to re-compute the cascade
|
|
|
|
// XXX and dirty sheet
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-23 11:00:34 -07:00
|
|
|
already_AddRefed<nsICSSStyleRule>
|
|
|
|
NS_NewCSSStyleRule(nsCSSSelectorList* aSelector,
|
2010-06-28 15:49:35 -07:00
|
|
|
css::Declaration* aDeclaration)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aDeclaration, "must have a declaration");
|
|
|
|
CSSStyleRuleImpl *it = new CSSStyleRuleImpl(aSelector, aDeclaration);
|
2010-07-23 11:00:34 -07:00
|
|
|
NS_ADDREF(it);
|
|
|
|
return it;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|