1998-04-14 00:24:54 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* 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.
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-04-14 00:24:54 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2000-02-03 01:24:56 +03:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
2000-05-31 18:09:34 +04:00
|
|
|
* IBM Corp.
|
2001-02-13 17:06:29 +03:00
|
|
|
* Daniel Glazman <glazman@netscape.com>
|
1998-04-14 00:24:54 +04:00
|
|
|
*/
|
1999-02-27 04:35:51 +03:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsICSSStyleSheet.h"
|
|
|
|
#include "nsIArena.h"
|
|
|
|
#include "nsCRT.h"
|
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsIURL.h"
|
1999-06-18 21:34:08 +04:00
|
|
|
#include "nsIServiceManager.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsISupportsArray.h"
|
1998-05-21 00:34:17 +04:00
|
|
|
#include "nsHashtable.h"
|
2001-02-16 00:25:31 +03:00
|
|
|
#include "nsICSSPseudoComparator.h"
|
1999-10-08 07:09:31 +04:00
|
|
|
#include "nsICSSStyleRuleProcessor.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsICSSStyleRule.h"
|
1999-06-10 09:29:22 +04:00
|
|
|
#include "nsICSSNameSpaceRule.h"
|
|
|
|
#include "nsICSSMediaRule.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsIHTMLContent.h"
|
1998-05-19 04:09:29 +04:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIPresContext.h"
|
1999-02-27 10:17:52 +03:00
|
|
|
#include "nsIEventStateManager.h"
|
1998-05-19 04:09:29 +04:00
|
|
|
#include "nsHTMLAtoms.h"
|
1998-12-02 03:37:32 +03:00
|
|
|
#include "nsLayoutAtoms.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsString.h"
|
1998-11-26 04:34:53 +03:00
|
|
|
#include "nsVoidArray.h"
|
2001-01-27 19:58:15 +03:00
|
|
|
#include "nsIUnicharInputStream.h"
|
1998-09-05 08:00:06 +04:00
|
|
|
#include "nsHTMLIIDs.h"
|
2000-06-02 08:27:47 +04:00
|
|
|
#include "nsIDOMHTMLAnchorElement.h"
|
2000-06-22 03:48:21 +04:00
|
|
|
#include "nsIDOMHTMLLinkElement.h"
|
|
|
|
#include "nsIDOMHTMLAreaElement.h"
|
2000-04-26 17:58:56 +04:00
|
|
|
#include "nsIDOMStyleSheetList.h"
|
1998-10-06 05:39:33 +04:00
|
|
|
#include "nsIDOMCSSStyleSheet.h"
|
|
|
|
#include "nsIDOMCSSStyleRule.h"
|
2000-04-26 17:58:56 +04:00
|
|
|
#include "nsIDOMCSSRuleList.h"
|
|
|
|
#include "nsIDOMMediaList.h"
|
1998-11-26 04:34:53 +03:00
|
|
|
#include "nsIDOMNode.h"
|
2000-04-26 17:58:56 +04:00
|
|
|
#include "nsDOMError.h"
|
1998-10-06 05:39:33 +04:00
|
|
|
#include "nsIScriptObjectOwner.h"
|
|
|
|
#include "nsIScriptGlobalObject.h"
|
|
|
|
#include "nsICSSParser.h"
|
1998-12-11 05:50:43 +03:00
|
|
|
#include "nsCSSAtoms.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
1999-06-10 09:29:22 +04:00
|
|
|
#include "nsINameSpace.h"
|
1999-09-11 04:08:30 +04:00
|
|
|
#include "nsITextContent.h"
|
1998-12-03 23:20:35 +03:00
|
|
|
#include "prlog.h"
|
2000-03-31 11:08:36 +04:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIStyleSet.h"
|
|
|
|
#include "nsISizeOfHandler.h"
|
2000-07-28 03:17:53 +04:00
|
|
|
#include "nsStyleUtil.h"
|
2001-02-22 06:01:34 +03:00
|
|
|
#ifdef MOZ_XUL
|
2001-01-27 08:48:41 +03:00
|
|
|
#include "nsIXULContent.h"
|
|
|
|
#endif
|
2000-03-31 11:08:36 +04:00
|
|
|
|
1999-04-20 18:22:37 +04:00
|
|
|
//#define DEBUG_RULES
|
2000-03-31 11:08:36 +04:00
|
|
|
//#define EVENT_DEBUG
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
|
1998-05-21 00:34:17 +04:00
|
|
|
// ----------------------
|
|
|
|
// Rule hash key
|
|
|
|
//
|
1999-05-27 03:55:12 +04:00
|
|
|
class AtomKey: public nsHashKey {
|
1998-05-21 00:34:17 +04:00
|
|
|
public:
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey(nsIAtom* aAtom);
|
|
|
|
AtomKey(const AtomKey& aKey);
|
|
|
|
virtual ~AtomKey(void);
|
2000-08-10 10:19:37 +04:00
|
|
|
virtual PRUint32 HashCode(void) const;
|
1998-05-21 00:34:17 +04:00
|
|
|
virtual PRBool Equals(const nsHashKey *aKey) const;
|
|
|
|
virtual nsHashKey *Clone(void) const;
|
|
|
|
nsIAtom* mAtom;
|
|
|
|
};
|
|
|
|
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey::AtomKey(nsIAtom* aAtom)
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
|
|
|
mAtom = aAtom;
|
|
|
|
NS_ADDREF(mAtom);
|
|
|
|
}
|
|
|
|
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey::AtomKey(const AtomKey& aKey)
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
|
|
|
mAtom = aKey.mAtom;
|
|
|
|
NS_ADDREF(mAtom);
|
|
|
|
}
|
|
|
|
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey::~AtomKey(void)
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
|
|
|
NS_RELEASE(mAtom);
|
|
|
|
}
|
|
|
|
|
2000-08-10 10:19:37 +04:00
|
|
|
PRUint32 AtomKey::HashCode(void) const
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
|
|
|
return (PRUint32)mAtom;
|
|
|
|
}
|
|
|
|
|
1999-05-27 03:55:12 +04:00
|
|
|
PRBool AtomKey::Equals(const nsHashKey* aKey) const
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
1999-05-27 03:55:12 +04:00
|
|
|
return PRBool (((AtomKey*)aKey)->mAtom == mAtom);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
1999-05-27 03:55:12 +04:00
|
|
|
nsHashKey* AtomKey::Clone(void) const
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
1999-05-27 03:55:12 +04:00
|
|
|
return new AtomKey(*this);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct RuleValue {
|
|
|
|
RuleValue(nsICSSStyleRule* aRule, PRInt32 aIndex)
|
|
|
|
{
|
|
|
|
mRule = aRule;
|
|
|
|
mIndex = aIndex;
|
|
|
|
mNext = nsnull;
|
|
|
|
}
|
|
|
|
~RuleValue(void)
|
|
|
|
{
|
1998-12-11 05:50:43 +03:00
|
|
|
if ((nsnull != mNext) && (nsnull != mNext->mNext)) {
|
|
|
|
delete mNext; // don't delete that last in the chain, it's shared
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsICSSStyleRule* mRule;
|
|
|
|
PRInt32 mIndex;
|
|
|
|
RuleValue* mNext;
|
|
|
|
};
|
|
|
|
|
|
|
|
// ------------------------------
|
|
|
|
// Rule hash table
|
|
|
|
//
|
|
|
|
|
|
|
|
// Enumerator callback function.
|
|
|
|
typedef void (*RuleEnumFunc)(nsICSSStyleRule* aRule, void *aData);
|
|
|
|
|
|
|
|
class RuleHash {
|
|
|
|
public:
|
|
|
|
RuleHash(void);
|
|
|
|
~RuleHash(void);
|
|
|
|
void AppendRule(nsICSSStyleRule* aRule);
|
1998-12-11 05:50:43 +03:00
|
|
|
void EnumerateAllRules(nsIAtom* aTag, nsIAtom* aID, const nsVoidArray& aClassList,
|
1998-05-21 00:34:17 +04:00
|
|
|
RuleEnumFunc aFunc, void* aData);
|
|
|
|
void EnumerateTagRules(nsIAtom* aTag,
|
|
|
|
RuleEnumFunc aFunc, void* aData);
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1998-05-21 00:34:17 +04:00
|
|
|
protected:
|
|
|
|
void AppendRuleToTable(nsHashtable& aTable, nsIAtom* aAtom, nsICSSStyleRule* aRule);
|
|
|
|
|
|
|
|
PRInt32 mRuleCount;
|
|
|
|
nsHashtable mTagTable;
|
|
|
|
nsHashtable mIdTable;
|
|
|
|
nsHashtable mClassTable;
|
1998-12-11 05:50:43 +03:00
|
|
|
|
|
|
|
RuleValue** mEnumList;
|
|
|
|
PRInt32 mEnumListSize;
|
|
|
|
RuleValue mEndValue;
|
1998-05-21 00:34:17 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
RuleHash::RuleHash(void)
|
|
|
|
: mRuleCount(0),
|
1998-12-11 05:50:43 +03:00
|
|
|
mTagTable(), mIdTable(), mClassTable(),
|
|
|
|
mEnumList(nsnull), mEnumListSize(0),
|
|
|
|
mEndValue(nsnull, -1)
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-05-03 03:07:11 +04:00
|
|
|
static PRBool PR_CALLBACK DeleteValue(nsHashKey* aKey, void* aValue, void* closure)
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
|
|
|
delete ((RuleValue*)aValue);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RuleHash::~RuleHash(void)
|
|
|
|
{
|
|
|
|
mTagTable.Enumerate(DeleteValue);
|
|
|
|
mIdTable.Enumerate(DeleteValue);
|
|
|
|
mClassTable.Enumerate(DeleteValue);
|
1998-12-11 05:50:43 +03:00
|
|
|
if (nsnull != mEnumList) {
|
|
|
|
delete [] mEnumList;
|
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void RuleHash::AppendRuleToTable(nsHashtable& aTable, nsIAtom* aAtom, nsICSSStyleRule* aRule)
|
|
|
|
{
|
1998-12-11 05:50:43 +03:00
|
|
|
NS_ASSERTION(nsnull != aAtom, "null hash key");
|
|
|
|
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey key(aAtom);
|
1998-05-21 00:34:17 +04:00
|
|
|
RuleValue* value = (RuleValue*)aTable.Get(&key);
|
|
|
|
|
|
|
|
if (nsnull == value) {
|
|
|
|
value = new RuleValue(aRule, mRuleCount++);
|
|
|
|
aTable.Put(&key, value);
|
1998-12-11 05:50:43 +03:00
|
|
|
value->mNext = &mEndValue;
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
else {
|
1998-12-11 05:50:43 +03:00
|
|
|
while (&mEndValue != value->mNext) {
|
1998-05-21 00:34:17 +04:00
|
|
|
value = value->mNext;
|
|
|
|
}
|
|
|
|
value->mNext = new RuleValue(aRule, mRuleCount++);
|
1998-12-11 05:50:43 +03:00
|
|
|
value->mNext->mNext = &mEndValue;
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
mEndValue.mIndex = mRuleCount;
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void RuleHash::AppendRule(nsICSSStyleRule* aRule)
|
|
|
|
{
|
|
|
|
nsCSSSelector* selector = aRule->FirstSelector();
|
2001-02-13 17:06:29 +03:00
|
|
|
if (nsnull != selector->mIDList) {
|
|
|
|
AppendRuleToTable(mIdTable, selector->mIDList->mAtom, aRule);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
else if (nsnull != selector->mClassList) {
|
|
|
|
AppendRuleToTable(mClassTable, selector->mClassList->mAtom, aRule);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
else if (nsnull != selector->mTag) {
|
|
|
|
AppendRuleToTable(mTagTable, selector->mTag, aRule);
|
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
else { // universal tag selector
|
|
|
|
AppendRuleToTable(mTagTable, nsCSSAtoms::universalSelector, aRule);
|
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
1998-12-11 05:50:43 +03:00
|
|
|
void RuleHash::EnumerateAllRules(nsIAtom* aTag, nsIAtom* aID, const nsVoidArray& aClassList,
|
1998-05-21 00:34:17 +04:00
|
|
|
RuleEnumFunc aFunc, void* aData)
|
|
|
|
{
|
1998-12-11 05:50:43 +03:00
|
|
|
PRInt32 classCount = aClassList.Count();
|
|
|
|
PRInt32 testCount = classCount + 1; // + 1 for universal selector
|
1998-05-21 01:28:36 +04:00
|
|
|
if (nsnull != aTag) {
|
1998-12-11 05:50:43 +03:00
|
|
|
testCount++;
|
1998-05-21 01:28:36 +04:00
|
|
|
}
|
|
|
|
if (nsnull != aID) {
|
1998-12-11 05:50:43 +03:00
|
|
|
testCount++;
|
1998-05-21 01:28:36 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
|
|
|
|
if (mEnumListSize < testCount) {
|
|
|
|
delete [] mEnumList;
|
|
|
|
mEnumList = new RuleValue*[testCount];
|
|
|
|
mEnumListSize = testCount;
|
1998-05-21 01:28:36 +04:00
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
|
1998-12-11 05:50:43 +03:00
|
|
|
PRInt32 index;
|
|
|
|
PRInt32 valueCount = 0;
|
1998-05-21 00:34:17 +04:00
|
|
|
|
1998-12-11 05:50:43 +03:00
|
|
|
{ // universal tag rules
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey universalKey(nsCSSAtoms::universalSelector);
|
1998-12-21 08:58:31 +03:00
|
|
|
RuleValue* value = (RuleValue*)mTagTable.Get(&universalKey);
|
1998-12-11 05:50:43 +03:00
|
|
|
if (nsnull != value) {
|
|
|
|
mEnumList[valueCount++] = value;
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
}
|
|
|
|
if (nsnull != aTag) {
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey tagKey(aTag);
|
1998-12-21 08:58:31 +03:00
|
|
|
RuleValue* value = (RuleValue*)mTagTable.Get(&tagKey);
|
1998-12-11 05:50:43 +03:00
|
|
|
if (nsnull != value) {
|
|
|
|
mEnumList[valueCount++] = value;
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
}
|
|
|
|
if (nsnull != aID) {
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey idKey(aID);
|
1998-12-21 08:58:31 +03:00
|
|
|
RuleValue* value = (RuleValue*)mIdTable.Get(&idKey);
|
1998-12-11 05:50:43 +03:00
|
|
|
if (nsnull != value) {
|
|
|
|
mEnumList[valueCount++] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (index = 0; index < classCount; index++) {
|
|
|
|
nsIAtom* classAtom = (nsIAtom*)aClassList.ElementAt(index);
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey classKey(classAtom);
|
1998-12-21 08:58:31 +03:00
|
|
|
RuleValue* value = (RuleValue*)mClassTable.Get(&classKey);
|
1998-12-11 05:50:43 +03:00
|
|
|
if (nsnull != value) {
|
|
|
|
mEnumList[valueCount++] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_ASSERTION(valueCount <= testCount, "values exceeded list size");
|
|
|
|
|
|
|
|
if (1 < valueCount) {
|
|
|
|
PRInt32 ruleIndex = mRuleCount;
|
|
|
|
PRInt32 valueIndex = -1;
|
|
|
|
|
|
|
|
for (index = 0; index < valueCount; index++) {
|
|
|
|
if (mEnumList[index]->mIndex < ruleIndex) {
|
|
|
|
ruleIndex = mEnumList[index]->mIndex;
|
|
|
|
valueIndex = index;
|
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
do {
|
|
|
|
(*aFunc)(mEnumList[valueIndex]->mRule, aData);
|
|
|
|
mEnumList[valueIndex] = mEnumList[valueIndex]->mNext;
|
|
|
|
ruleIndex = mEnumList[valueIndex]->mIndex;
|
|
|
|
for (index = 0; index < valueCount; index++) {
|
|
|
|
if (mEnumList[index]->mIndex < ruleIndex) {
|
|
|
|
ruleIndex = mEnumList[index]->mIndex;
|
|
|
|
valueIndex = index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (ruleIndex < mRuleCount);
|
|
|
|
}
|
|
|
|
else if (0 < valueCount) { // fast loop over single value
|
|
|
|
RuleValue* value = mEnumList[0];
|
|
|
|
do {
|
|
|
|
(*aFunc)(value->mRule, aData);
|
|
|
|
value = value->mNext;
|
|
|
|
} while (&mEndValue != value);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RuleHash::EnumerateTagRules(nsIAtom* aTag, RuleEnumFunc aFunc, void* aData)
|
|
|
|
{
|
1999-05-27 03:55:12 +04:00
|
|
|
AtomKey tagKey(aTag);
|
|
|
|
AtomKey universalKey(nsCSSAtoms::universalSelector);
|
1998-12-21 08:58:31 +03:00
|
|
|
RuleValue* tagValue = (RuleValue*)mTagTable.Get(&tagKey);
|
|
|
|
RuleValue* uniValue = (RuleValue*)mTagTable.Get(&universalKey);
|
1998-12-11 05:50:43 +03:00
|
|
|
|
|
|
|
if (nsnull == tagValue) {
|
|
|
|
if (nsnull != uniValue) {
|
|
|
|
do {
|
|
|
|
(*aFunc)(uniValue->mRule, aData);
|
|
|
|
uniValue = uniValue->mNext;
|
|
|
|
} while (&mEndValue != uniValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (nsnull == uniValue) {
|
|
|
|
do {
|
|
|
|
(*aFunc)(tagValue->mRule, aData);
|
|
|
|
tagValue = tagValue->mNext;
|
|
|
|
} while (&mEndValue != tagValue);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
do {
|
|
|
|
if (tagValue->mIndex < uniValue->mIndex) {
|
|
|
|
(*aFunc)(tagValue->mRule, aData);
|
|
|
|
tagValue = tagValue->mNext;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
(*aFunc)(uniValue->mRule, aData);
|
|
|
|
uniValue = uniValue->mNext;
|
|
|
|
}
|
|
|
|
} while ((&mEndValue != tagValue) || (&mEndValue != uniValue));
|
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
//--------------------------------
|
|
|
|
|
|
|
|
struct RuleCascadeData {
|
|
|
|
RuleCascadeData(void)
|
|
|
|
: mWeightedRules(nsnull),
|
|
|
|
mRuleHash(),
|
|
|
|
mStateSelectors()
|
|
|
|
{
|
|
|
|
NS_NewISupportsArray(&mWeightedRules);
|
|
|
|
}
|
|
|
|
|
|
|
|
~RuleCascadeData(void)
|
|
|
|
{
|
|
|
|
NS_IF_RELEASE(mWeightedRules);
|
|
|
|
}
|
|
|
|
nsISupportsArray* mWeightedRules;
|
|
|
|
RuleHash mRuleHash;
|
|
|
|
nsVoidArray mStateSelectors;
|
|
|
|
};
|
|
|
|
|
|
|
|
// -------------------------------
|
|
|
|
// CSS Style Rule processor
|
|
|
|
//
|
|
|
|
|
|
|
|
class CSSRuleProcessor: public nsICSSStyleRuleProcessor {
|
|
|
|
public:
|
|
|
|
CSSRuleProcessor(void);
|
|
|
|
virtual ~CSSRuleProcessor(void);
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
public:
|
|
|
|
// nsICSSStyleRuleProcessor
|
|
|
|
NS_IMETHOD AppendStyleSheet(nsICSSStyleSheet* aStyleSheet);
|
|
|
|
|
|
|
|
NS_IMETHOD ClearRuleCascades(void);
|
|
|
|
|
|
|
|
// nsIStyleRuleProcessor
|
|
|
|
NS_IMETHOD RulesMatching(nsIPresContext* aPresContext,
|
|
|
|
nsIAtom* aMedium,
|
|
|
|
nsIContent* aContent,
|
|
|
|
nsIStyleContext* aParentContext,
|
|
|
|
nsISupportsArray* aResults);
|
|
|
|
|
|
|
|
NS_IMETHOD RulesMatching(nsIPresContext* aPresContext,
|
|
|
|
nsIAtom* aMedium,
|
|
|
|
nsIContent* aParentContent,
|
|
|
|
nsIAtom* aPseudoTag,
|
|
|
|
nsIStyleContext* aParentContext,
|
2001-02-16 00:25:31 +03:00
|
|
|
nsICSSPseudoComparator* aComparator,
|
1999-10-14 04:59:21 +04:00
|
|
|
nsISupportsArray* aResults);
|
|
|
|
|
|
|
|
NS_IMETHOD HasStateDependentStyle(nsIPresContext* aPresContext,
|
|
|
|
nsIAtom* aMedium,
|
|
|
|
nsIContent* aContent);
|
|
|
|
|
2000-03-31 11:08:36 +04:00
|
|
|
virtual void SizeOf(nsISizeOfHandler *aSizeofHandler, PRUint32 &aSize);
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
protected:
|
|
|
|
RuleCascadeData* GetRuleCascade(nsIAtom* aMedium);
|
|
|
|
|
|
|
|
static PRBool CascadeSheetRulesInto(nsISupports* aSheet, void* aData);
|
|
|
|
|
|
|
|
nsISupportsArray* mSheets;
|
|
|
|
|
|
|
|
nsHashtable* mMediumCascadeTable;
|
|
|
|
};
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
// -------------------------------
|
|
|
|
// CSS Style Sheet Inner Data Container
|
|
|
|
//
|
|
|
|
|
|
|
|
class CSSStyleSheetInner {
|
|
|
|
public:
|
|
|
|
CSSStyleSheetInner(nsICSSStyleSheet* aParentSheet);
|
|
|
|
CSSStyleSheetInner(CSSStyleSheetInner& aCopy, nsICSSStyleSheet* aParentSheet);
|
|
|
|
virtual ~CSSStyleSheetInner(void);
|
|
|
|
|
|
|
|
virtual CSSStyleSheetInner* CloneFor(nsICSSStyleSheet* aParentSheet);
|
|
|
|
virtual void AddSheet(nsICSSStyleSheet* aParentSheet);
|
|
|
|
virtual void RemoveSheet(nsICSSStyleSheet* aParentSheet);
|
|
|
|
|
1999-06-15 10:20:46 +04:00
|
|
|
virtual void RebuildNameSpaces(void);
|
1999-06-03 05:57:52 +04:00
|
|
|
|
2000-03-31 11:08:36 +04:00
|
|
|
virtual void SizeOf(nsISizeOfHandler *aSizeofHandler, PRUint32 &aSize);
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
nsVoidArray mSheets;
|
|
|
|
|
1999-06-23 07:29:44 +04:00
|
|
|
nsIURI* mURL;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
nsISupportsArray* mOrderedRules;
|
1999-06-10 09:29:22 +04:00
|
|
|
|
|
|
|
nsINameSpace* mNameSpace;
|
1999-06-15 10:20:46 +04:00
|
|
|
PRInt32 mDefaultNameSpaceID;
|
2000-05-16 06:43:33 +04:00
|
|
|
nsHashtable mRelevantAttributes;
|
1999-06-03 05:57:52 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// -------------------------------
|
|
|
|
// CSS Style Sheet
|
|
|
|
//
|
|
|
|
|
|
|
|
class CSSImportsCollectionImpl;
|
2000-04-26 17:58:56 +04:00
|
|
|
class CSSRuleListImpl;
|
|
|
|
class DOMMediaListImpl;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
class CSSStyleSheetImpl : public nsICSSStyleSheet,
|
|
|
|
public nsIDOMCSSStyleSheet,
|
|
|
|
public nsIScriptObjectOwner {
|
|
|
|
public:
|
|
|
|
void* operator new(size_t size);
|
|
|
|
void* operator new(size_t size, nsIArena* aArena);
|
|
|
|
void operator delete(void* ptr);
|
|
|
|
|
|
|
|
CSSStyleSheetImpl();
|
|
|
|
|
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef();
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release();
|
|
|
|
|
|
|
|
// basic style sheet data
|
1999-06-23 07:29:44 +04:00
|
|
|
NS_IMETHOD Init(nsIURI* aURL);
|
|
|
|
NS_IMETHOD GetURL(nsIURI*& aURL) const;
|
1999-06-03 05:57:52 +04:00
|
|
|
NS_IMETHOD GetTitle(nsString& aTitle) const;
|
|
|
|
NS_IMETHOD SetTitle(const nsString& aTitle);
|
|
|
|
NS_IMETHOD GetType(nsString& aType) const;
|
|
|
|
NS_IMETHOD GetMediumCount(PRInt32& aCount) const;
|
|
|
|
NS_IMETHOD GetMediumAt(PRInt32 aIndex, nsIAtom*& aMedium) const;
|
1999-06-15 10:20:46 +04:00
|
|
|
NS_IMETHOD UseForMedium(nsIAtom* aMedium) const;
|
1999-06-03 05:57:52 +04:00
|
|
|
NS_IMETHOD AppendMedium(nsIAtom* aMedium);
|
|
|
|
NS_IMETHOD ClearMedia(void);
|
|
|
|
|
|
|
|
NS_IMETHOD GetEnabled(PRBool& aEnabled) const;
|
|
|
|
NS_IMETHOD SetEnabled(PRBool aEnabled);
|
|
|
|
|
|
|
|
// style sheet owner info
|
|
|
|
NS_IMETHOD GetParentSheet(nsIStyleSheet*& aParent) const; // may be null
|
|
|
|
NS_IMETHOD GetOwningDocument(nsIDocument*& aDocument) const;
|
|
|
|
NS_IMETHOD SetOwningDocument(nsIDocument* aDocument);
|
|
|
|
NS_IMETHOD SetOwningNode(nsIDOMNode* aOwningNode);
|
|
|
|
|
1999-10-08 07:09:31 +04:00
|
|
|
NS_IMETHOD GetStyleRuleProcessor(nsIStyleRuleProcessor*& aProcessor,
|
|
|
|
nsIStyleRuleProcessor* aPrevProcessor);
|
|
|
|
NS_IMETHOD DropRuleProcessorReference(nsICSSStyleRuleProcessor* aProcessor);
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
|
2000-06-03 01:45:06 +04:00
|
|
|
NS_IMETHOD ContainsStyleSheet(nsIURI* aURL, PRBool& aContains, nsIStyleSheet** aTheChild=nsnull);
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-06-10 09:29:22 +04:00
|
|
|
NS_IMETHOD AppendStyleSheet(nsICSSStyleSheet* aSheet);
|
1999-06-03 05:57:52 +04:00
|
|
|
NS_IMETHOD InsertStyleSheetAt(nsICSSStyleSheet* aSheet, PRInt32 aIndex);
|
|
|
|
|
2000-05-16 06:43:33 +04:00
|
|
|
|
|
|
|
// If changing the given attribute cannot affect style context, aAffects
|
|
|
|
// will be PR_FALSE on return.
|
|
|
|
NS_IMETHOD AttributeAffectsStyle(nsIAtom *aAttribute, nsIContent *aContent,
|
|
|
|
PRBool &aAffects);
|
|
|
|
|
|
|
|
// Find attributes in selector for rule, for use with AttributeAffectsStyle
|
|
|
|
NS_IMETHOD CheckRuleForAttributes(nsICSSRule* aRule);
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
// XXX do these belong here or are they generic?
|
1999-06-10 09:29:22 +04:00
|
|
|
NS_IMETHOD PrependStyleRule(nsICSSRule* aRule);
|
|
|
|
NS_IMETHOD AppendStyleRule(nsICSSRule* aRule);
|
|
|
|
|
|
|
|
NS_IMETHOD StyleRuleCount(PRInt32& aCount) const;
|
|
|
|
NS_IMETHOD GetStyleRuleAt(PRInt32 aIndex, nsICSSRule*& aRule) const;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-06-10 09:29:22 +04:00
|
|
|
NS_IMETHOD StyleSheetCount(PRInt32& aCount) const;
|
|
|
|
NS_IMETHOD GetStyleSheetAt(PRInt32 aIndex, nsICSSStyleSheet*& aSheet) const;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-06-10 09:29:22 +04:00
|
|
|
NS_IMETHOD GetNameSpace(nsINameSpace*& aNameSpace) const;
|
1999-06-15 10:20:46 +04:00
|
|
|
NS_IMETHOD SetDefaultNameSpaceID(PRInt32 aDefaultNameSpaceID);
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
NS_IMETHOD Clone(nsICSSStyleSheet*& aClone) const;
|
|
|
|
|
2000-04-16 04:23:57 +04:00
|
|
|
NS_IMETHOD IsModified(PRBool* aSheetModified) const;
|
1999-06-03 05:57:52 +04:00
|
|
|
NS_IMETHOD SetModified(PRBool aModified);
|
|
|
|
|
|
|
|
nsresult EnsureUniqueInner(void);
|
|
|
|
|
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
|
|
|
|
2000-03-31 11:08:36 +04:00
|
|
|
virtual void SizeOf(nsISizeOfHandler *aSizeofHandler, PRUint32 &aSize);
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
// nsIDOMStyleSheet interface
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_DECL_IDOMSTYLESHEET
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
// nsIDOMCSSStyleSheet interface
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_DECL_IDOMCSSSTYLESHEET
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
// nsIScriptObjectOwner interface
|
|
|
|
NS_IMETHOD GetScriptObject(nsIScriptContext *aContext, void** aScriptObject);
|
|
|
|
NS_IMETHOD SetScriptObject(void* aScriptObject);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// These are not supported and are not implemented!
|
|
|
|
CSSStyleSheetImpl(const CSSStyleSheetImpl& aCopy);
|
|
|
|
CSSStyleSheetImpl& operator=(const CSSStyleSheetImpl& aCopy);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~CSSStyleSheetImpl();
|
|
|
|
|
|
|
|
void ClearRuleCascades(void);
|
|
|
|
|
|
|
|
nsresult WillDirty(void);
|
|
|
|
void DidDirty(void);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PRUint32 mInHeap : 1;
|
|
|
|
PRUint32 mRefCnt : 31;
|
2000-03-06 00:26:01 +03:00
|
|
|
NS_DECL_OWNINGTHREAD // for thread-safety checking
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
nsString mTitle;
|
2000-04-26 17:58:56 +04:00
|
|
|
DOMMediaListImpl* mMedia;
|
1999-06-03 05:57:52 +04:00
|
|
|
CSSStyleSheetImpl* mFirstChild;
|
|
|
|
CSSStyleSheetImpl* mNext;
|
|
|
|
nsICSSStyleSheet* mParent;
|
|
|
|
|
|
|
|
CSSImportsCollectionImpl* mImportsCollection;
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSRuleListImpl* mRuleCollection;
|
1999-06-03 05:57:52 +04:00
|
|
|
nsIDocument* mDocument;
|
|
|
|
nsIDOMNode* mOwningNode;
|
|
|
|
PRBool mDisabled;
|
|
|
|
PRBool mDirty; // has been modified
|
|
|
|
void* mScriptObject;
|
|
|
|
|
|
|
|
CSSStyleSheetInner* mInner;
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
nsVoidArray* mRuleProcessors;
|
|
|
|
|
1999-10-15 03:31:07 +04:00
|
|
|
friend class CSSRuleProcessor;
|
1999-06-03 05:57:52 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
1998-10-06 05:39:33 +04:00
|
|
|
// -------------------------------
|
2000-04-26 17:58:56 +04:00
|
|
|
// Style Rule List for the DOM
|
1998-10-06 05:39:33 +04:00
|
|
|
//
|
2000-04-26 17:58:56 +04:00
|
|
|
class CSSRuleListImpl : public nsIDOMCSSRuleList,
|
|
|
|
public nsIScriptObjectOwner
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
|
|
|
public:
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSRuleListImpl(CSSStyleSheetImpl *aStyleSheet);
|
1998-10-06 05:39:33 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
// nsIDOMCSSRuleList interface
|
1998-10-06 05:39:33 +04:00
|
|
|
NS_IMETHOD GetLength(PRUint32* aLength);
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_IMETHOD Item(PRUint32 aIndex, nsIDOMCSSRule** aReturn);
|
1998-10-06 05:39:33 +04:00
|
|
|
|
|
|
|
// nsIScriptObjectOwner interface
|
|
|
|
NS_IMETHOD GetScriptObject(nsIScriptContext *aContext, void** aScriptObject);
|
|
|
|
NS_IMETHOD SetScriptObject(void* aScriptObject);
|
|
|
|
|
|
|
|
void DropReference() { mStyleSheet = nsnull; }
|
|
|
|
|
|
|
|
protected:
|
2000-04-26 17:58:56 +04:00
|
|
|
virtual ~CSSRuleListImpl();
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
CSSStyleSheetImpl* mStyleSheet;
|
|
|
|
void* mScriptObject;
|
|
|
|
public:
|
|
|
|
PRBool mRulesAccessed;
|
1998-10-06 05:39:33 +04:00
|
|
|
};
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSRuleListImpl::CSSRuleListImpl(CSSStyleSheetImpl *aStyleSheet)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
// Not reference counted to avoid circular references.
|
|
|
|
// The style sheet will tell us when its going away.
|
|
|
|
mStyleSheet = aStyleSheet;
|
|
|
|
mScriptObject = nsnull;
|
1999-06-03 05:57:52 +04:00
|
|
|
mRulesAccessed = PR_FALSE;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSRuleListImpl::~CSSRuleListImpl()
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_IMPL_ADDREF(CSSRuleListImpl);
|
|
|
|
NS_IMPL_RELEASE(CSSRuleListImpl);
|
1998-10-06 05:39:33 +04:00
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_INTERFACE_MAP_BEGIN(CSSRuleListImpl)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMCSSRuleList)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptObjectOwner)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMCSSRuleList)
|
|
|
|
NS_INTERFACE_MAP_END
|
1998-10-06 05:39:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSRuleListImpl::GetLength(PRUint32* aLength)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
|
|
|
if (nsnull != mStyleSheet) {
|
1999-06-10 09:29:22 +04:00
|
|
|
PRInt32 count;
|
|
|
|
mStyleSheet->StyleRuleCount(count);
|
|
|
|
*aLength = (PRUint32)count;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
*aLength = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSRuleListImpl::Item(PRUint32 aIndex, nsIDOMCSSRule** aReturn)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
|
|
|
nsresult result = NS_OK;
|
|
|
|
|
|
|
|
*aReturn = nsnull;
|
|
|
|
if (nsnull != mStyleSheet) {
|
1999-06-03 05:57:52 +04:00
|
|
|
result = mStyleSheet->EnsureUniqueInner(); // needed to ensure rules have correct parent
|
|
|
|
if (NS_SUCCEEDED(result)) {
|
1999-06-10 09:29:22 +04:00
|
|
|
nsICSSRule *rule;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
result = mStyleSheet->GetStyleRuleAt(aIndex, rule);
|
|
|
|
if (NS_OK == result) {
|
2000-04-26 17:58:56 +04:00
|
|
|
result = rule->QueryInterface(NS_GET_IID(nsIDOMCSSRule),
|
|
|
|
(void **)aReturn);
|
1999-06-03 05:57:52 +04:00
|
|
|
mRulesAccessed = PR_TRUE; // signal to never share rules again
|
|
|
|
}
|
|
|
|
NS_RELEASE(rule);
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSRuleListImpl::GetScriptObject(nsIScriptContext *aContext,
|
1998-10-06 05:39:33 +04:00
|
|
|
void** aScriptObject)
|
|
|
|
{
|
|
|
|
nsresult res = NS_OK;
|
|
|
|
|
|
|
|
if (nsnull == mScriptObject) {
|
2000-04-26 17:58:56 +04:00
|
|
|
nsISupports *supports = (nsISupports *)(nsIDOMCSSRuleList *)this;
|
1998-10-06 05:39:33 +04:00
|
|
|
|
|
|
|
// XXX Should be done through factory
|
2000-04-26 17:58:56 +04:00
|
|
|
res = NS_NewScriptCSSRuleList(aContext,
|
1998-10-06 05:39:33 +04:00
|
|
|
supports,
|
1999-06-03 05:57:52 +04:00
|
|
|
(nsISupports *)(nsICSSStyleSheet*)mStyleSheet,
|
1998-10-06 05:39:33 +04:00
|
|
|
(void**)&mScriptObject);
|
|
|
|
}
|
|
|
|
*aScriptObject = mScriptObject;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSRuleListImpl::SetScriptObject(void* aScriptObject)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
|
|
|
mScriptObject = aScriptObject;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
class DOMMediaListImpl : public nsIDOMMediaList,
|
|
|
|
public nsIScriptObjectOwner,
|
|
|
|
public nsISupportsArray
|
|
|
|
{
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
NS_DECL_IDOMMEDIALIST
|
|
|
|
|
|
|
|
NS_IMETHOD GetScriptObject(nsIScriptContext *aContext,
|
|
|
|
void** aScriptObject);
|
|
|
|
NS_IMETHOD SetScriptObject(void* aScriptObject);
|
|
|
|
|
|
|
|
NS_FORWARD_NSISUPPORTSARRAY(mArray->)
|
|
|
|
NS_FORWARD_NSICOLLECTION(mArray->);
|
|
|
|
|
|
|
|
NS_IMETHOD_(PRBool) operator==(const nsISupportsArray& other) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD_(nsISupports*) operator[](PRUint32 aIndex) {
|
|
|
|
return mArray->ElementAt(aIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
DOMMediaListImpl(nsISupportsArray *aArray, CSSStyleSheetImpl *aStyleSheet);
|
|
|
|
virtual ~DOMMediaListImpl();
|
|
|
|
|
|
|
|
void DropReference() { mStyleSheet = nsnull; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsCOMPtr<nsISupportsArray> mArray;
|
|
|
|
CSSStyleSheetImpl* mStyleSheet;
|
|
|
|
void* mScriptObject;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(DOMMediaListImpl);
|
|
|
|
NS_IMPL_RELEASE(DOMMediaListImpl);
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN(DOMMediaListImpl)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMMediaList)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptObjectOwner)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMMediaList)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
DOMMediaListImpl::DOMMediaListImpl(nsISupportsArray *aArray,
|
|
|
|
CSSStyleSheetImpl *aStyleSheet)
|
|
|
|
: mArray(aArray), mStyleSheet(aStyleSheet), mScriptObject(nsnull)
|
|
|
|
{
|
2000-04-27 03:24:30 +04:00
|
|
|
NS_INIT_REFCNT();
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_ABORT_IF_FALSE(mArray, "This can't be used without an array!!");
|
|
|
|
}
|
|
|
|
|
|
|
|
DOMMediaListImpl::~DOMMediaListImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMMediaListImpl::GetScriptObject(nsIScriptContext *aContext,
|
|
|
|
void** aScriptObject)
|
|
|
|
{
|
|
|
|
nsresult res = NS_OK;
|
|
|
|
|
|
|
|
if (nsnull == mScriptObject) {
|
|
|
|
nsISupports *supports = (nsISupports *)(nsIDOMMediaList *)this;
|
|
|
|
|
|
|
|
// XXX Should be done through factory
|
|
|
|
res = NS_NewScriptMediaList(aContext,
|
|
|
|
supports,
|
|
|
|
(nsISupports *)(nsIDOMMediaList*)mStyleSheet,
|
|
|
|
(void**)&mScriptObject);
|
|
|
|
}
|
|
|
|
*aScriptObject = mScriptObject;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMMediaListImpl::SetScriptObject(void* aScriptObject)
|
|
|
|
{
|
|
|
|
mScriptObject = aScriptObject;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-08-23 21:27:06 +04:00
|
|
|
DOMMediaListImpl::GetMediaText(nsAWritableString& aMediaText)
|
2000-04-26 17:58:56 +04:00
|
|
|
{
|
|
|
|
aMediaText.Truncate();
|
|
|
|
|
|
|
|
PRUint32 cnt;
|
|
|
|
nsresult rv = Count(&cnt);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
PRInt32 count = cnt, index = 0;
|
|
|
|
|
|
|
|
while (index < count) {
|
|
|
|
nsCOMPtr<nsISupports> tmp(dont_AddRef(ElementAt(index++)));
|
|
|
|
NS_ENSURE_TRUE(tmp, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom> medium(do_QueryInterface(tmp));
|
|
|
|
NS_ENSURE_TRUE(medium, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
const PRUnichar *buffer;
|
|
|
|
medium->GetUnicode(&buffer);
|
|
|
|
aMediaText.Append(buffer);
|
|
|
|
if (index < count) {
|
2000-08-23 21:27:06 +04:00
|
|
|
aMediaText.Append(NS_LITERAL_STRING(", "));
|
2000-04-26 17:58:56 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-08-23 21:27:06 +04:00
|
|
|
DOMMediaListImpl::SetMediaText(const nsAReadableString& aMediaText)
|
2000-04-26 17:58:56 +04:00
|
|
|
{
|
|
|
|
nsresult rv = Clear();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsAutoString buf(aMediaText);
|
|
|
|
PRInt32 n = buf.FindChar(',');
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (n < 0)
|
|
|
|
n = buf.Length();
|
|
|
|
|
|
|
|
nsAutoString tmp;
|
|
|
|
|
|
|
|
buf.Left(tmp, n);
|
|
|
|
|
|
|
|
tmp.CompressWhitespace();
|
|
|
|
|
|
|
|
if (tmp.Length()) {
|
|
|
|
rv = Append(tmp);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
buf.Cut(0, n + 1);
|
|
|
|
|
|
|
|
n = buf.FindChar(',');
|
|
|
|
} while (buf.Length());
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMMediaListImpl::GetLength(PRUint32* aLength)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aLength);
|
|
|
|
|
|
|
|
PRUint32 cnt;
|
|
|
|
|
|
|
|
nsresult rv = Count(&cnt);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
*aLength = cnt;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-08-23 21:27:06 +04:00
|
|
|
DOMMediaListImpl::Item(PRUint32 aIndex, nsAWritableString& aReturn)
|
2000-04-26 17:58:56 +04:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsISupports> tmp(dont_AddRef(ElementAt(aIndex)));
|
|
|
|
|
|
|
|
if (tmp) {
|
|
|
|
nsCOMPtr<nsIAtom> medium(do_QueryInterface(tmp));
|
|
|
|
NS_ENSURE_TRUE(medium, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
const PRUnichar *buffer;
|
|
|
|
medium->GetUnicode(&buffer);
|
2000-04-28 00:38:50 +04:00
|
|
|
aReturn.Assign(buffer);
|
2000-04-26 17:58:56 +04:00
|
|
|
} else {
|
|
|
|
aReturn.Truncate();
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-08-23 21:27:06 +04:00
|
|
|
DOMMediaListImpl::Delete(const nsAReadableString& aOldMedium)
|
2000-04-26 17:58:56 +04:00
|
|
|
{
|
|
|
|
if (!aOldMedium.Length())
|
|
|
|
return NS_ERROR_DOM_NOT_FOUND_ERR;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom> old(dont_AddRef(NS_NewAtom(aOldMedium)));
|
|
|
|
NS_ENSURE_TRUE(old, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
PRInt32 indx = IndexOf(old);
|
|
|
|
|
|
|
|
if (indx < 0) {
|
|
|
|
return NS_ERROR_DOM_NOT_FOUND_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
RemoveElementAt(indx);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-08-23 21:27:06 +04:00
|
|
|
DOMMediaListImpl::Append(const nsAReadableString& aNewMedium)
|
2000-04-26 17:58:56 +04:00
|
|
|
{
|
|
|
|
if (!aNewMedium.Length())
|
|
|
|
return NS_ERROR_DOM_NOT_FOUND_ERR;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom> media(dont_AddRef(NS_NewAtom(aNewMedium)));
|
|
|
|
NS_ENSURE_TRUE(media, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
PRInt32 indx = IndexOf(media);
|
|
|
|
|
|
|
|
if (indx >= 0) {
|
|
|
|
RemoveElementAt(indx);
|
|
|
|
}
|
|
|
|
|
|
|
|
AppendElement(media);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-06 05:39:33 +04:00
|
|
|
// -------------------------------
|
|
|
|
// Imports Collection for the DOM
|
|
|
|
//
|
2000-04-26 17:58:56 +04:00
|
|
|
class CSSImportsCollectionImpl : public nsIDOMStyleSheetList,
|
1998-10-06 05:39:33 +04:00
|
|
|
public nsIScriptObjectOwner
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CSSImportsCollectionImpl(nsICSSStyleSheet *aStyleSheet);
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
// nsIDOMCSSStyleSheetList interface
|
1998-10-06 05:39:33 +04:00
|
|
|
NS_IMETHOD GetLength(PRUint32* aLength);
|
|
|
|
NS_IMETHOD Item(PRUint32 aIndex, nsIDOMStyleSheet** aReturn);
|
|
|
|
|
|
|
|
// nsIScriptObjectOwner interface
|
|
|
|
NS_IMETHOD GetScriptObject(nsIScriptContext *aContext, void** aScriptObject);
|
|
|
|
NS_IMETHOD SetScriptObject(void* aScriptObject);
|
|
|
|
|
|
|
|
void DropReference() { mStyleSheet = nsnull; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~CSSImportsCollectionImpl();
|
|
|
|
|
|
|
|
nsICSSStyleSheet* mStyleSheet;
|
|
|
|
void* mScriptObject;
|
|
|
|
};
|
|
|
|
|
|
|
|
CSSImportsCollectionImpl::CSSImportsCollectionImpl(nsICSSStyleSheet *aStyleSheet)
|
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
// Not reference counted to avoid circular references.
|
|
|
|
// The style sheet will tell us when its going away.
|
|
|
|
mStyleSheet = aStyleSheet;
|
|
|
|
mScriptObject = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
CSSImportsCollectionImpl::~CSSImportsCollectionImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(CSSImportsCollectionImpl);
|
|
|
|
NS_IMPL_RELEASE(CSSImportsCollectionImpl);
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
CSSImportsCollectionImpl::QueryInterface(REFNSIID aIID, void** aInstancePtrResult)
|
|
|
|
{
|
|
|
|
if (NULL == aInstancePtrResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
2000-04-26 17:58:56 +04:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIDOMStyleSheetList))) {
|
|
|
|
nsIDOMStyleSheetList *tmp = this;
|
1998-10-06 05:39:33 +04:00
|
|
|
*aInstancePtrResult = (void*) tmp;
|
|
|
|
AddRef();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2001-01-04 23:44:42 +03:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIScriptObjectOwner))) {
|
1998-10-06 05:39:33 +04:00
|
|
|
nsIScriptObjectOwner *tmp = this;
|
|
|
|
*aInstancePtrResult = (void*) tmp;
|
|
|
|
AddRef();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (aIID.Equals(kISupportsIID)) {
|
2000-04-26 17:58:56 +04:00
|
|
|
nsIDOMStyleSheetList *tmp = this;
|
1998-10-06 05:39:33 +04:00
|
|
|
nsISupports *tmp2 = tmp;
|
|
|
|
*aInstancePtrResult = (void*) tmp2;
|
|
|
|
AddRef();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSImportsCollectionImpl::GetLength(PRUint32* aLength)
|
|
|
|
{
|
|
|
|
if (nsnull != mStyleSheet) {
|
1999-06-10 09:29:22 +04:00
|
|
|
PRInt32 count;
|
|
|
|
mStyleSheet->StyleSheetCount(count);
|
|
|
|
*aLength = (PRUint32)count;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
*aLength = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSImportsCollectionImpl::Item(PRUint32 aIndex, nsIDOMStyleSheet** aReturn)
|
|
|
|
{
|
|
|
|
nsresult result = NS_OK;
|
|
|
|
|
|
|
|
*aReturn = nsnull;
|
|
|
|
if (nsnull != mStyleSheet) {
|
|
|
|
nsICSSStyleSheet *sheet;
|
|
|
|
|
|
|
|
result = mStyleSheet->GetStyleSheetAt(aIndex, sheet);
|
|
|
|
if (NS_OK == result) {
|
2001-01-04 23:44:42 +03:00
|
|
|
result = sheet->QueryInterface(NS_GET_IID(nsIDOMStyleSheet), (void **)aReturn);
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
NS_RELEASE(sheet);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSImportsCollectionImpl::GetScriptObject(nsIScriptContext *aContext,
|
|
|
|
void** aScriptObject)
|
|
|
|
{
|
|
|
|
nsresult res = NS_OK;
|
|
|
|
|
|
|
|
if (nsnull == mScriptObject) {
|
2000-04-26 17:58:56 +04:00
|
|
|
nsISupports *supports = (nsISupports *)(nsIDOMStyleSheetList *)this;
|
1998-10-06 05:39:33 +04:00
|
|
|
|
|
|
|
// XXX Should be done through factory
|
2000-04-26 17:58:56 +04:00
|
|
|
res = NS_NewScriptStyleSheetList(aContext,
|
|
|
|
supports,
|
|
|
|
(nsISupports *)mStyleSheet,
|
|
|
|
(void**)&mScriptObject);
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
*aScriptObject = mScriptObject;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSImportsCollectionImpl::SetScriptObject(void* aScriptObject)
|
|
|
|
{
|
|
|
|
mScriptObject = aScriptObject;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
|
1998-05-21 00:34:17 +04:00
|
|
|
// -------------------------------
|
1999-06-03 05:57:52 +04:00
|
|
|
// CSS Style Sheet Inner Data Container
|
1998-05-21 00:34:17 +04:00
|
|
|
//
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
static PRBool SetStyleSheetReference(nsISupports* aElement, void* aSheet)
|
|
|
|
{
|
1999-06-10 09:29:22 +04:00
|
|
|
nsICSSRule* rule = (nsICSSRule*)aElement;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
if (nsnull != rule) {
|
|
|
|
rule->SetStyleSheet((nsICSSStyleSheet*)aSheet);
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
CSSStyleSheetInner::CSSStyleSheetInner(nsICSSStyleSheet* aParentSheet)
|
|
|
|
: mSheets(),
|
|
|
|
mURL(nsnull),
|
|
|
|
mOrderedRules(nsnull),
|
1999-06-15 10:20:46 +04:00
|
|
|
mNameSpace(nsnull),
|
2000-05-16 06:43:33 +04:00
|
|
|
mDefaultNameSpaceID(kNameSpaceID_None),
|
|
|
|
mRelevantAttributes()
|
1999-06-03 05:57:52 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
MOZ_COUNT_CTOR(CSSStyleSheetInner);
|
1999-06-03 05:57:52 +04:00
|
|
|
mSheets.AppendElement(aParentSheet);
|
|
|
|
}
|
1999-05-19 03:14:29 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
static PRBool
|
|
|
|
CloneRuleInto(nsISupports* aRule, void* aArray)
|
|
|
|
{
|
1999-06-10 09:29:22 +04:00
|
|
|
nsICSSRule* rule = (nsICSSRule*)aRule;
|
|
|
|
nsICSSRule* clone = nsnull;
|
1999-06-03 05:57:52 +04:00
|
|
|
rule->Clone(clone);
|
|
|
|
if (clone) {
|
|
|
|
nsISupportsArray* array = (nsISupportsArray*)aArray;
|
|
|
|
array->AppendElement(clone);
|
|
|
|
NS_RELEASE(clone);
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2000-06-05 23:15:32 +04:00
|
|
|
static PRBool PR_CALLBACK
|
2000-05-16 06:43:33 +04:00
|
|
|
CopyRelevantAttributes(nsHashKey *aAttrKey, void *aAtom, void *aTable)
|
|
|
|
{
|
|
|
|
nsHashtable *table = NS_STATIC_CAST(nsHashtable *, aTable);
|
|
|
|
AtomKey *key = NS_STATIC_CAST(AtomKey *, aAttrKey);
|
|
|
|
table->Put(key, key->mAtom);
|
|
|
|
// we don't need to addref the atom here, because we're also copying the
|
|
|
|
// rules when we clone, and that will add a ref for us
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
CSSStyleSheetInner::CSSStyleSheetInner(CSSStyleSheetInner& aCopy,
|
|
|
|
nsICSSStyleSheet* aParentSheet)
|
|
|
|
: mSheets(),
|
|
|
|
mURL(aCopy.mURL),
|
1999-06-15 10:20:46 +04:00
|
|
|
mNameSpace(nsnull),
|
2000-05-16 06:43:33 +04:00
|
|
|
mDefaultNameSpaceID(aCopy.mDefaultNameSpaceID),
|
|
|
|
mRelevantAttributes()
|
1999-06-03 05:57:52 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
MOZ_COUNT_CTOR(CSSStyleSheetInner);
|
1999-06-03 05:57:52 +04:00
|
|
|
mSheets.AppendElement(aParentSheet);
|
|
|
|
NS_IF_ADDREF(mURL);
|
|
|
|
if (aCopy.mOrderedRules) {
|
|
|
|
NS_NewISupportsArray(&mOrderedRules);
|
|
|
|
if (mOrderedRules) {
|
|
|
|
aCopy.mOrderedRules->EnumerateForwards(CloneRuleInto, mOrderedRules);
|
|
|
|
mOrderedRules->EnumerateForwards(SetStyleSheetReference, aParentSheet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mOrderedRules = nsnull;
|
|
|
|
}
|
2000-05-16 06:43:33 +04:00
|
|
|
aCopy.mRelevantAttributes.Enumerate(CopyRelevantAttributes,
|
|
|
|
&mRelevantAttributes);
|
1999-06-15 10:20:46 +04:00
|
|
|
RebuildNameSpaces();
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
CSSStyleSheetInner::~CSSStyleSheetInner(void)
|
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
MOZ_COUNT_DTOR(CSSStyleSheetInner);
|
1999-06-03 05:57:52 +04:00
|
|
|
NS_IF_RELEASE(mURL);
|
|
|
|
if (mOrderedRules) {
|
|
|
|
mOrderedRules->EnumerateForwards(SetStyleSheetReference, nsnull);
|
|
|
|
NS_RELEASE(mOrderedRules);
|
|
|
|
}
|
1999-06-15 10:20:46 +04:00
|
|
|
NS_IF_RELEASE(mNameSpace);
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
CSSStyleSheetInner*
|
|
|
|
CSSStyleSheetInner::CloneFor(nsICSSStyleSheet* aParentSheet)
|
|
|
|
{
|
|
|
|
return new CSSStyleSheetInner(*this, aParentSheet);
|
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
void
|
|
|
|
CSSStyleSheetInner::AddSheet(nsICSSStyleSheet* aParentSheet)
|
|
|
|
{
|
|
|
|
mSheets.AppendElement(aParentSheet);
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
void
|
|
|
|
CSSStyleSheetInner::RemoveSheet(nsICSSStyleSheet* aParentSheet)
|
|
|
|
{
|
|
|
|
if (1 == mSheets.Count()) {
|
|
|
|
NS_ASSERTION(aParentSheet == (nsICSSStyleSheet*)mSheets.ElementAt(0), "bad parent");
|
|
|
|
delete this;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (aParentSheet == (nsICSSStyleSheet*)mSheets.ElementAt(0)) {
|
|
|
|
mSheets.RemoveElementAt(0);
|
|
|
|
NS_ASSERTION(mSheets.Count(), "no parents");
|
|
|
|
if (mOrderedRules) {
|
|
|
|
mOrderedRules->EnumerateForwards(SetStyleSheetReference,
|
|
|
|
(nsICSSStyleSheet*)mSheets.ElementAt(0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mSheets.RemoveElement(aParentSheet);
|
|
|
|
}
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-06-15 10:20:46 +04:00
|
|
|
static PRBool
|
|
|
|
CreateNameSpace(nsISupports* aRule, void* aNameSpacePtr)
|
|
|
|
{
|
|
|
|
nsICSSRule* rule = (nsICSSRule*)aRule;
|
|
|
|
PRInt32 type;
|
|
|
|
rule->GetType(type);
|
|
|
|
if (nsICSSRule::NAMESPACE_RULE == type) {
|
|
|
|
nsICSSNameSpaceRule* nameSpaceRule = (nsICSSNameSpaceRule*)rule;
|
|
|
|
nsINameSpace** nameSpacePtr = (nsINameSpace**)aNameSpacePtr;
|
|
|
|
nsINameSpace* lastNameSpace = *nameSpacePtr;
|
|
|
|
nsINameSpace* newNameSpace;
|
|
|
|
|
|
|
|
nsIAtom* prefix = nsnull;
|
|
|
|
nsAutoString urlSpec;
|
|
|
|
nameSpaceRule->GetPrefix(prefix);
|
|
|
|
nameSpaceRule->GetURLSpec(urlSpec);
|
|
|
|
lastNameSpace->CreateChildNameSpace(prefix, urlSpec, newNameSpace);
|
|
|
|
NS_IF_RELEASE(prefix);
|
|
|
|
if (newNameSpace) {
|
|
|
|
NS_RELEASE(lastNameSpace);
|
|
|
|
(*nameSpacePtr) = newNameSpace; // takes ref
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
// stop if not namespace, import or charset because namespace can't follow anything else
|
|
|
|
return (((nsICSSRule::CHARSET_RULE == type) ||
|
|
|
|
(nsICSSRule::IMPORT_RULE)) ? PR_TRUE : PR_FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CSSStyleSheetInner::RebuildNameSpaces(void)
|
|
|
|
{
|
|
|
|
nsINameSpaceManager* nameSpaceMgr;
|
|
|
|
if (mNameSpace) {
|
|
|
|
mNameSpace->GetNameSpaceManager(nameSpaceMgr);
|
|
|
|
NS_RELEASE(mNameSpace);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_NewNameSpaceManager(&nameSpaceMgr);
|
|
|
|
}
|
|
|
|
if (nameSpaceMgr) {
|
|
|
|
nameSpaceMgr->CreateRootNameSpace(mNameSpace);
|
|
|
|
if (kNameSpaceID_Unknown != mDefaultNameSpaceID) {
|
|
|
|
nsINameSpace* defaultNameSpace;
|
|
|
|
mNameSpace->CreateChildNameSpace(nsnull, mDefaultNameSpaceID, defaultNameSpace);
|
|
|
|
if (defaultNameSpace) {
|
|
|
|
NS_RELEASE(mNameSpace);
|
|
|
|
mNameSpace = defaultNameSpace;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_RELEASE(nameSpaceMgr);
|
|
|
|
if (mOrderedRules) {
|
|
|
|
mOrderedRules->EnumerateForwards(CreateNameSpace, &mNameSpace);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-31 11:08:36 +04:00
|
|
|
/******************************************************************************
|
|
|
|
* SizeOf method:
|
|
|
|
*
|
|
|
|
* Self (reported as CSSStyleSheetInner's size):
|
|
|
|
* 1) sizeof(*this) + sizeof mSheets array (not contents though)
|
|
|
|
* + size of the mOrderedRules array (not the contents though)
|
|
|
|
*
|
|
|
|
* Contained / Aggregated data (not reported as CSSStyleSheetInner's size):
|
|
|
|
* 1) mSheets: each style sheet is sized seperately
|
|
|
|
* 2) mOrderedRules: each fule is sized seperately
|
|
|
|
*
|
|
|
|
* Children / siblings / parents:
|
|
|
|
* none
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
void CSSStyleSheetInner::SizeOf(nsISizeOfHandler *aSizeOfHandler, PRUint32 &aSize)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aSizeOfHandler != nsnull, "SizeOf handler cannot be null");
|
|
|
|
|
|
|
|
// first get the unique items collection
|
|
|
|
UNIQUE_STYLE_ITEMS(uniqueItems);
|
|
|
|
if(! uniqueItems->AddItem((void*)this)){
|
|
|
|
// this style sheet is lared accounted for
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 localSize=0;
|
|
|
|
PRBool rulesCounted=PR_FALSE;
|
|
|
|
|
|
|
|
// create a tag for this instance
|
|
|
|
nsCOMPtr<nsIAtom> tag;
|
|
|
|
tag = getter_AddRefs(NS_NewAtom("CSSStyleSheetInner"));
|
|
|
|
// get the size of an empty instance and add to the sizeof handler
|
|
|
|
aSize = sizeof(CSSStyleSheetInner);
|
|
|
|
|
|
|
|
// add in the size of the mSheets array itself
|
|
|
|
mSheets.SizeOf(aSizeOfHandler,&localSize);
|
|
|
|
aSize += localSize;
|
|
|
|
|
|
|
|
// and the mOrderedRules array (if there is one)
|
|
|
|
if(mOrderedRules && uniqueItems->AddItem(mOrderedRules)){
|
|
|
|
rulesCounted=PR_TRUE;
|
|
|
|
// no SizeOf method so we just get the basic object size
|
|
|
|
aSize += sizeof(*mOrderedRules);
|
|
|
|
}
|
|
|
|
aSizeOfHandler->AddSize(tag,aSize);
|
|
|
|
|
|
|
|
|
|
|
|
// delegate to the contained containers
|
|
|
|
// mSheets : nsVoidArray
|
|
|
|
{
|
|
|
|
PRUint32 sheetCount, sheetCur;
|
|
|
|
sheetCount = mSheets.Count();
|
|
|
|
for(sheetCur=0; sheetCur < sheetCount; sheetCur++){
|
|
|
|
nsICSSStyleSheet* sheet = (nsICSSStyleSheet*)mSheets.ElementAt(sheetCur);
|
|
|
|
if(sheet){
|
|
|
|
sheet->SizeOf(aSizeOfHandler, localSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// mOrderedRules : nsISupportsArray*
|
|
|
|
if(mOrderedRules && rulesCounted){
|
|
|
|
PRUint32 ruleCount, ruleCur;
|
|
|
|
mOrderedRules->Count(&ruleCount);
|
|
|
|
for(ruleCur=0; ruleCur < ruleCount; ruleCur++){
|
|
|
|
nsICSSRule* rule = (nsICSSRule*)mOrderedRules->ElementAt(ruleCur);
|
|
|
|
if(rule){
|
|
|
|
rule->SizeOf(aSizeOfHandler, localSize);
|
|
|
|
NS_IF_RELEASE(rule);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-06-15 10:20:46 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
// -------------------------------
|
|
|
|
// CSS Style Sheet
|
|
|
|
//
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
void* CSSStyleSheetImpl::operator new(size_t size)
|
|
|
|
{
|
|
|
|
CSSStyleSheetImpl* rv = (CSSStyleSheetImpl*) ::operator new(size);
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
if (nsnull != rv) {
|
|
|
|
nsCRT::memset(rv, 0xEE, size);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
rv->mInHeap = 1;
|
|
|
|
return (void*) rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* CSSStyleSheetImpl::operator new(size_t size, nsIArena* aArena)
|
|
|
|
{
|
|
|
|
CSSStyleSheetImpl* rv = (CSSStyleSheetImpl*) aArena->Alloc(PRInt32(size));
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
if (nsnull != rv) {
|
|
|
|
nsCRT::memset(rv, 0xEE, size);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
rv->mInHeap = 0;
|
|
|
|
return (void*) rv;
|
|
|
|
}
|
|
|
|
|
1999-02-26 22:26:29 +03:00
|
|
|
void CSSStyleSheetImpl::operator delete(void* ptr)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
CSSStyleSheetImpl* sheet = (CSSStyleSheetImpl*) ptr;
|
|
|
|
if (nsnull != sheet) {
|
|
|
|
if (sheet->mInHeap) {
|
1999-02-26 20:13:10 +03:00
|
|
|
::operator delete(ptr);
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-28 02:06:33 +03:00
|
|
|
MOZ_DECL_CTOR_COUNTER(CSSStyleSheetImpl)
|
1999-10-14 04:59:21 +04:00
|
|
|
|
1998-12-03 23:20:35 +03:00
|
|
|
CSSStyleSheetImpl::CSSStyleSheetImpl()
|
1998-04-14 00:24:54 +04:00
|
|
|
: nsICSSStyleSheet(),
|
1999-06-03 05:57:52 +04:00
|
|
|
mTitle(),
|
|
|
|
mMedia(nsnull),
|
1998-11-26 04:34:53 +03:00
|
|
|
mFirstChild(nsnull),
|
1998-06-05 10:06:50 +04:00
|
|
|
mNext(nsnull),
|
1999-06-03 05:57:52 +04:00
|
|
|
mParent(nsnull),
|
|
|
|
mImportsCollection(nsnull),
|
|
|
|
mRuleCollection(nsnull),
|
|
|
|
mDocument(nsnull),
|
|
|
|
mOwningNode(nsnull),
|
|
|
|
mDisabled(PR_FALSE),
|
1999-07-16 21:40:39 +04:00
|
|
|
mDirty(PR_FALSE),
|
1999-10-14 04:59:21 +04:00
|
|
|
mScriptObject(nsnull),
|
|
|
|
mRuleProcessors(nsnull)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
1998-12-11 05:50:43 +03:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
mInner = new CSSStyleSheetInner(this);
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
CSSStyleSheetImpl::CSSStyleSheetImpl(const CSSStyleSheetImpl& aCopy)
|
|
|
|
: nsICSSStyleSheet(),
|
|
|
|
mTitle(aCopy.mTitle),
|
|
|
|
mMedia(nsnull),
|
|
|
|
mFirstChild(nsnull),
|
|
|
|
mNext(nsnull),
|
|
|
|
mParent(aCopy.mParent),
|
|
|
|
mImportsCollection(nsnull), // re-created lazily
|
|
|
|
mRuleCollection(nsnull), // re-created lazily
|
|
|
|
mDocument(aCopy.mDocument),
|
|
|
|
mOwningNode(aCopy.mOwningNode),
|
|
|
|
mDisabled(aCopy.mDisabled),
|
1999-07-16 21:40:39 +04:00
|
|
|
mDirty(PR_FALSE),
|
1999-06-03 05:57:52 +04:00
|
|
|
mScriptObject(nsnull),
|
1999-10-14 04:59:21 +04:00
|
|
|
mInner(aCopy.mInner),
|
|
|
|
mRuleProcessors(nsnull)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
1999-06-03 05:57:52 +04:00
|
|
|
NS_INIT_REFCNT();
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
mInner->AddSheet(this);
|
|
|
|
|
|
|
|
if (aCopy.mRuleCollection &&
|
|
|
|
aCopy.mRuleCollection->mRulesAccessed) { // CSSOM's been there, force full copy now
|
|
|
|
EnsureUniqueInner();
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
if (aCopy.mMedia) {
|
2000-04-26 17:58:56 +04:00
|
|
|
nsCOMPtr<nsISupportsArray> tmp;
|
|
|
|
NS_NewISupportsArray(getter_AddRefs(tmp));
|
|
|
|
if (tmp) {
|
|
|
|
tmp->AppendElements(NS_STATIC_CAST(nsISupportsArray *, aCopy.mMedia));
|
|
|
|
mMedia = new DOMMediaListImpl(tmp, this);
|
|
|
|
NS_IF_ADDREF(mMedia);
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aCopy.mFirstChild) {
|
|
|
|
CSSStyleSheetImpl* otherChild = aCopy.mFirstChild;
|
|
|
|
CSSStyleSheetImpl** ourSlot = &mFirstChild;
|
|
|
|
do {
|
|
|
|
CSSStyleSheetImpl* child = new CSSStyleSheetImpl(*otherChild);
|
|
|
|
if (child) {
|
|
|
|
NS_ADDREF(child);
|
|
|
|
(*ourSlot) = child;
|
|
|
|
ourSlot = &(child->mNext);
|
|
|
|
}
|
|
|
|
otherChild = otherChild->mNext;
|
|
|
|
}
|
|
|
|
while (otherChild && ourSlot);
|
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
CSSStyleSheetImpl::~CSSStyleSheetImpl()
|
|
|
|
{
|
1999-05-19 03:14:29 +04:00
|
|
|
if (mFirstChild) {
|
|
|
|
CSSStyleSheetImpl* child = mFirstChild;
|
|
|
|
do {
|
|
|
|
child->mParent = nsnull;
|
|
|
|
child = child->mNext;
|
|
|
|
} while (child);
|
|
|
|
NS_RELEASE(mFirstChild);
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
1999-05-19 03:14:29 +04:00
|
|
|
NS_IF_RELEASE(mNext);
|
1998-10-06 05:39:33 +04:00
|
|
|
if (nsnull != mRuleCollection) {
|
|
|
|
mRuleCollection->DropReference();
|
|
|
|
NS_RELEASE(mRuleCollection);
|
|
|
|
}
|
|
|
|
if (nsnull != mImportsCollection) {
|
|
|
|
mImportsCollection->DropReference();
|
|
|
|
NS_RELEASE(mImportsCollection);
|
|
|
|
}
|
2000-04-26 17:58:56 +04:00
|
|
|
if (mMedia) {
|
|
|
|
mMedia->DropReference();
|
|
|
|
NS_RELEASE(mMedia);
|
|
|
|
}
|
1999-06-03 05:57:52 +04:00
|
|
|
mInner->RemoveSheet(this);
|
1998-11-17 05:14:38 +03:00
|
|
|
// XXX The document reference is not reference counted and should
|
|
|
|
// not be released. The document will let us know when it is going
|
|
|
|
// away.
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mRuleProcessors) {
|
|
|
|
NS_ASSERTION(mRuleProcessors->Count() == 0, "destucting sheet with rule processor reference");
|
|
|
|
delete mRuleProcessors; // weak refs, should be empty here anyway
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(CSSStyleSheetImpl)
|
|
|
|
NS_IMPL_RELEASE(CSSStyleSheetImpl)
|
|
|
|
|
|
|
|
nsresult CSSStyleSheetImpl::QueryInterface(const nsIID& aIID,
|
|
|
|
void** aInstancePtrResult)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aInstancePtrResult, "null pointer");
|
|
|
|
if (nsnull == aInstancePtrResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
2001-01-04 23:44:42 +03:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsICSSStyleSheet))) {
|
1998-04-14 00:24:54 +04:00
|
|
|
*aInstancePtrResult = (void*) ((nsICSSStyleSheet*)this);
|
1998-10-05 09:11:18 +04:00
|
|
|
NS_ADDREF_THIS();
|
1998-04-14 00:24:54 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2001-01-04 23:44:42 +03:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIStyleSheet))) {
|
1998-04-14 00:24:54 +04:00
|
|
|
*aInstancePtrResult = (void*) ((nsIStyleSheet*)this);
|
1998-10-05 09:11:18 +04:00
|
|
|
NS_ADDREF_THIS();
|
1998-04-14 00:24:54 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2001-01-04 23:44:42 +03:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIDOMStyleSheet))) {
|
1998-10-06 05:39:33 +04:00
|
|
|
nsIDOMStyleSheet *tmp = this;
|
|
|
|
*aInstancePtrResult = (void*) tmp;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2001-01-04 23:44:42 +03:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIDOMCSSStyleSheet))) {
|
1998-10-06 05:39:33 +04:00
|
|
|
nsIDOMCSSStyleSheet *tmp = this;
|
|
|
|
*aInstancePtrResult = (void*) tmp;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2001-01-04 23:44:42 +03:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIScriptObjectOwner))) {
|
1998-10-06 05:39:33 +04:00
|
|
|
nsIScriptObjectOwner *tmp = this;
|
|
|
|
*aInstancePtrResult = (void*) tmp;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
if (aIID.Equals(kISupportsIID)) {
|
1998-10-06 05:39:33 +04:00
|
|
|
nsICSSStyleSheet *tmp = this;
|
|
|
|
nsISupports *tmp2 = tmp;
|
|
|
|
*aInstancePtrResult = (void*) tmp2;
|
1998-10-05 09:11:18 +04:00
|
|
|
NS_ADDREF_THIS();
|
1998-04-14 00:24:54 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
1999-10-08 07:09:31 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetStyleRuleProcessor(nsIStyleRuleProcessor*& aProcessor,
|
1999-10-14 04:59:21 +04:00
|
|
|
nsIStyleRuleProcessor* aPrevProcessor)
|
1999-10-08 07:09:31 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsresult result = NS_OK;
|
|
|
|
nsICSSStyleRuleProcessor* cssProcessor = nsnull;
|
|
|
|
|
|
|
|
if (aPrevProcessor) {
|
2000-02-03 01:24:56 +03:00
|
|
|
result = aPrevProcessor->QueryInterface(NS_GET_IID(nsICSSStyleRuleProcessor), (void**)&cssProcessor);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
if (! cssProcessor) {
|
|
|
|
CSSRuleProcessor* processor = new CSSRuleProcessor();
|
|
|
|
if (processor) {
|
2000-02-03 01:24:56 +03:00
|
|
|
result = processor->QueryInterface(NS_GET_IID(nsICSSStyleRuleProcessor), (void**)&cssProcessor);
|
1999-10-14 04:59:21 +04:00
|
|
|
if (NS_FAILED(result)) {
|
|
|
|
delete processor;
|
|
|
|
cssProcessor = nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (NS_SUCCEEDED(result) && cssProcessor) {
|
|
|
|
cssProcessor->AppendStyleSheet(this);
|
|
|
|
if (! mRuleProcessors) {
|
|
|
|
mRuleProcessors = new nsVoidArray();
|
|
|
|
}
|
|
|
|
if (mRuleProcessors) {
|
|
|
|
NS_ASSERTION(-1 == mRuleProcessors->IndexOf(cssProcessor), "processor already registered");
|
|
|
|
mRuleProcessors->AppendElement(cssProcessor); // weak ref
|
|
|
|
}
|
|
|
|
}
|
|
|
|
aProcessor = cssProcessor;
|
1999-10-08 07:09:31 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::DropRuleProcessorReference(nsICSSStyleRuleProcessor* aProcessor)
|
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_ASSERTION(mRuleProcessors, "no rule processors registered");
|
|
|
|
if (mRuleProcessors) {
|
|
|
|
NS_ASSERTION(-1 != mRuleProcessors->IndexOf(aProcessor), "not a registered processor");
|
|
|
|
mRuleProcessors->RemoveElement(aProcessor);
|
|
|
|
}
|
1999-10-08 07:09:31 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-12-20 04:17:05 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::Init(nsIURI* aURL)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aURL, "null ptr");
|
|
|
|
if (! aURL)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
1998-12-20 04:17:05 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (! mInner) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
1998-12-20 04:17:05 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_ASSERTION(! mInner->mURL, "already initialized");
|
|
|
|
if (mInner->mURL)
|
|
|
|
return NS_ERROR_ALREADY_INITIALIZED;
|
1998-12-20 04:17:05 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mInner->mURL) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
PRBool eq;
|
|
|
|
nsresult rv = mInner->mURL->Equals(aURL, &eq);
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv) && eq, "bad inner");
|
|
|
|
#endif
|
1998-12-20 04:17:05 +03:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
else {
|
|
|
|
mInner->mURL = aURL;
|
|
|
|
NS_ADDREF(mInner->mURL);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
1998-12-20 04:17:05 +03:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetURL(nsIURI*& aURL) const
|
1998-12-20 04:17:05 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
const nsIURI* url = ((mInner) ? mInner->mURL : nsnull);
|
|
|
|
aURL = (nsIURI*)url;
|
|
|
|
NS_IF_ADDREF(aURL);
|
|
|
|
return NS_OK;
|
1998-12-20 04:17:05 +03:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::SetTitle(const nsString& aTitle)
|
1999-02-27 10:17:52 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
mTitle = aTitle;
|
|
|
|
return NS_OK;
|
1999-02-27 10:17:52 +03:00
|
|
|
}
|
1998-12-20 04:17:05 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetType(nsString& aType) const
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2000-04-16 00:15:37 +04:00
|
|
|
aType.AssignWithConversion("text/css");
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetMediumCount(PRInt32& aCount) const
|
|
|
|
{
|
|
|
|
if (mMedia) {
|
|
|
|
PRUint32 cnt;
|
|
|
|
nsresult rv = mMedia->Count(&cnt);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
aCount = cnt;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aCount = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-02-27 10:17:52 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetMediumAt(PRInt32 aIndex, nsIAtom*& aMedium) const
|
|
|
|
{
|
|
|
|
nsIAtom* medium = nsnull;
|
|
|
|
if (nsnull != mMedia) {
|
|
|
|
medium = (nsIAtom*)mMedia->ElementAt(aIndex);
|
|
|
|
}
|
|
|
|
if (nsnull != medium) {
|
|
|
|
aMedium = medium;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
aMedium = nsnull;
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
1999-02-27 10:17:52 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::UseForMedium(nsIAtom* aMedium) const
|
|
|
|
{
|
|
|
|
if (mMedia) {
|
|
|
|
if (-1 != mMedia->IndexOf(aMedium)) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (-1 != mMedia->IndexOf(nsLayoutAtoms::all)) {
|
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_COMFALSE;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1998-05-21 00:34:17 +04:00
|
|
|
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::AppendMedium(nsIAtom* aMedium)
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsresult result = NS_OK;
|
2000-04-26 17:58:56 +04:00
|
|
|
if (!mMedia) {
|
|
|
|
nsCOMPtr<nsISupportsArray> tmp;
|
|
|
|
result = NS_NewISupportsArray(getter_AddRefs(tmp));
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
|
|
|
|
mMedia = new DOMMediaListImpl(tmp, this);
|
|
|
|
NS_ENSURE_TRUE(mMedia, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
NS_ADDREF(mMedia);
|
1999-02-27 10:17:52 +03:00
|
|
|
}
|
2000-04-26 17:58:56 +04:00
|
|
|
|
|
|
|
if (mMedia) {
|
1999-10-14 04:59:21 +04:00
|
|
|
mMedia->AppendElement(aMedium);
|
|
|
|
}
|
|
|
|
return result;
|
1999-02-27 10:17:52 +03:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::ClearMedia(void)
|
1999-02-27 10:17:52 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mMedia) {
|
|
|
|
mMedia->Clear();
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetEnabled(PRBool& aEnabled) const
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
aEnabled = ((PR_TRUE == mDisabled) ? PR_FALSE : PR_TRUE);
|
|
|
|
return NS_OK;
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
1999-10-08 07:09:31 +04:00
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::SetEnabled(PRBool aEnabled)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
PRBool oldState = mDisabled;
|
|
|
|
mDisabled = ((PR_TRUE == aEnabled) ? PR_FALSE : PR_TRUE);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if ((nsnull != mDocument) && (mDisabled != oldState)) {
|
|
|
|
mDocument->SetStyleSheetDisabledState(this, mDisabled);
|
|
|
|
}
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-11-03 23:33:43 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetParentSheet(nsIStyleSheet*& aParent) const
|
|
|
|
{
|
|
|
|
aParent = mParent;
|
2000-02-18 02:19:18 +03:00
|
|
|
NS_IF_ADDREF(aParent);
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-05-19 01:10:19 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetOwningDocument(nsIDocument*& aDocument) const
|
|
|
|
{
|
|
|
|
nsIDocument* doc = mDocument;
|
|
|
|
CSSStyleSheetImpl* parent = (CSSStyleSheetImpl*)mParent;
|
|
|
|
while ((nsnull == doc) && (nsnull != parent)) {
|
|
|
|
doc = parent->mDocument;
|
|
|
|
parent = (CSSStyleSheetImpl*)(parent->mParent);
|
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IF_ADDREF(doc);
|
|
|
|
aDocument = doc;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-11-03 23:33:43 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::SetOwningDocument(nsIDocument* aDocument)
|
|
|
|
{ // not ref counted
|
|
|
|
mDocument = aDocument;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-05-19 01:10:19 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::SetOwningNode(nsIDOMNode* aOwningNode)
|
|
|
|
{ // not ref counted
|
|
|
|
mOwningNode = aOwningNode;
|
1999-10-08 07:09:31 +04:00
|
|
|
return NS_OK;
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
2000-06-03 01:45:06 +04:00
|
|
|
CSSStyleSheetImpl::ContainsStyleSheet(nsIURI* aURL, PRBool& aContains, nsIStyleSheet** aTheChild /*=nsnull*/)
|
1999-10-14 04:59:21 +04:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aURL, "null arg");
|
1998-05-21 00:34:17 +04:00
|
|
|
|
2000-06-03 01:45:06 +04:00
|
|
|
// first check ourself out
|
|
|
|
nsresult rv = mInner->mURL->Equals(aURL, &aContains);
|
|
|
|
if (NS_FAILED(rv)) aContains = PR_FALSE;
|
1998-05-21 00:34:17 +04:00
|
|
|
|
2000-06-03 01:45:06 +04:00
|
|
|
if (aContains) {
|
|
|
|
// if we found it and the out-param is there, set it and addref
|
|
|
|
if (aTheChild) {
|
2001-01-04 23:44:42 +03:00
|
|
|
rv = QueryInterface( NS_GET_IID(nsIStyleSheet), (void **)aTheChild);
|
2000-06-03 01:45:06 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
CSSStyleSheetImpl* child = mFirstChild;
|
|
|
|
// now check the chil'ins out (recursively)
|
|
|
|
while ((PR_FALSE == aContains) && (nsnull != child)) {
|
|
|
|
child->ContainsStyleSheet(aURL, aContains, aTheChild);
|
|
|
|
if (aContains) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
child = child->mNext;
|
|
|
|
}
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
2000-06-03 01:45:06 +04:00
|
|
|
|
|
|
|
// NOTE: if there are errors in the above we are handling them locally
|
|
|
|
// and not promoting them to the caller
|
|
|
|
return NS_OK;
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::AppendStyleSheet(nsICSSStyleSheet* aSheet)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aSheet, "null arg");
|
1999-02-27 10:17:52 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (NS_SUCCEEDED(WillDirty())) {
|
|
|
|
NS_ADDREF(aSheet);
|
|
|
|
CSSStyleSheetImpl* sheet = (CSSStyleSheetImpl*)aSheet;
|
1999-02-27 10:17:52 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (! mFirstChild) {
|
|
|
|
mFirstChild = sheet;
|
1999-02-27 10:17:52 +03:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
else {
|
|
|
|
CSSStyleSheetImpl* child = mFirstChild;
|
|
|
|
while (child->mNext) {
|
|
|
|
child = child->mNext;
|
1998-05-19 01:10:19 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
child->mNext = sheet;
|
1998-05-19 01:10:19 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
// This is not reference counted. Our parent tells us when
|
|
|
|
// it's going away.
|
|
|
|
sheet->mParent = this;
|
|
|
|
DidDirty();
|
1998-05-19 01:10:19 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
1998-05-19 01:10:19 +04:00
|
|
|
}
|
|
|
|
|
1999-10-08 07:09:31 +04:00
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::InsertStyleSheetAt(nsICSSStyleSheet* aSheet, PRInt32 aIndex)
|
1998-05-19 01:10:19 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_PRECONDITION(nsnull != aSheet, "null arg");
|
1998-05-19 01:10:19 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
nsresult result = WillDirty();
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (NS_SUCCEEDED(result)) {
|
|
|
|
NS_ADDREF(aSheet);
|
|
|
|
CSSStyleSheetImpl* sheet = (CSSStyleSheetImpl*)aSheet;
|
|
|
|
CSSStyleSheetImpl* child = mFirstChild;
|
1998-05-21 00:34:17 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (aIndex && child) {
|
|
|
|
while ((0 < --aIndex) && child->mNext) {
|
|
|
|
child = child->mNext;
|
|
|
|
}
|
|
|
|
sheet->mNext = child->mNext;
|
|
|
|
child->mNext = sheet;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sheet->mNext = mFirstChild;
|
|
|
|
mFirstChild = sheet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is not reference counted. Our parent tells us when
|
|
|
|
// it's going away.
|
|
|
|
sheet->mParent = this;
|
|
|
|
DidDirty();
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return result;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
2000-05-16 06:43:33 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::AttributeAffectsStyle(nsIAtom *aAttribute,
|
|
|
|
nsIContent *aContent,
|
|
|
|
PRBool &aAffects)
|
|
|
|
{
|
|
|
|
AtomKey key(aAttribute);
|
|
|
|
aAffects = !!mInner->mRelevantAttributes.Get(&key);
|
|
|
|
for (CSSStyleSheetImpl *child = mFirstChild;
|
|
|
|
child && !aAffects;
|
|
|
|
child = child->mNext) {
|
|
|
|
child->AttributeAffectsStyle(aAttribute, aContent, aAffects);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::PrependStyleRule(nsICSSRule* aRule)
|
1999-04-20 04:05:54 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_PRECONDITION(nsnull != aRule, "null arg");
|
1999-04-20 04:05:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (NS_SUCCEEDED(WillDirty())) {
|
|
|
|
if (! mInner->mOrderedRules) {
|
|
|
|
NS_NewISupportsArray(&(mInner->mOrderedRules));
|
|
|
|
}
|
|
|
|
if (mInner->mOrderedRules) {
|
|
|
|
mInner->mOrderedRules->InsertElementAt(aRule, 0);
|
|
|
|
aRule->SetStyleSheet(this);
|
|
|
|
DidDirty();
|
1999-04-20 04:05:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
PRInt32 type;
|
|
|
|
aRule->GetType(type);
|
|
|
|
if (nsICSSRule::NAMESPACE_RULE == type) {
|
|
|
|
// no api to prepend a namespace (ugh), release old ones and re-create them all
|
|
|
|
mInner->RebuildNameSpaces();
|
2000-05-16 06:43:33 +04:00
|
|
|
} else {
|
|
|
|
CheckRuleForAttributes(aRule);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
1999-04-20 04:05:54 +04:00
|
|
|
}
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
1999-04-20 04:05:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::AppendStyleRule(nsICSSRule* aRule)
|
1999-04-20 04:05:54 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_PRECONDITION(nsnull != aRule, "null arg");
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (NS_SUCCEEDED(WillDirty())) {
|
|
|
|
if (! mInner->mOrderedRules) {
|
|
|
|
NS_NewISupportsArray(&(mInner->mOrderedRules));
|
|
|
|
}
|
|
|
|
if (mInner->mOrderedRules) {
|
|
|
|
mInner->mOrderedRules->AppendElement(aRule);
|
|
|
|
aRule->SetStyleSheet(this);
|
|
|
|
DidDirty();
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
PRInt32 type;
|
|
|
|
aRule->GetType(type);
|
|
|
|
if (nsICSSRule::NAMESPACE_RULE == type) {
|
|
|
|
if (! mInner->mNameSpace) {
|
|
|
|
nsINameSpaceManager* nameSpaceMgr;
|
|
|
|
NS_NewNameSpaceManager(&nameSpaceMgr);
|
|
|
|
if (nameSpaceMgr) {
|
|
|
|
nameSpaceMgr->CreateRootNameSpace(mInner->mNameSpace);
|
|
|
|
NS_RELEASE(nameSpaceMgr);
|
|
|
|
}
|
|
|
|
}
|
1999-04-20 04:05:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mInner->mNameSpace) {
|
|
|
|
nsICSSNameSpaceRule* nameSpaceRule = (nsICSSNameSpaceRule*)aRule;
|
|
|
|
nsINameSpace* newNameSpace = nsnull;
|
1999-04-20 04:05:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
nsIAtom* prefix = nsnull;
|
|
|
|
nsAutoString urlSpec;
|
|
|
|
nameSpaceRule->GetPrefix(prefix);
|
|
|
|
nameSpaceRule->GetURLSpec(urlSpec);
|
|
|
|
mInner->mNameSpace->CreateChildNameSpace(prefix, urlSpec, newNameSpace);
|
|
|
|
NS_IF_RELEASE(prefix);
|
|
|
|
if (newNameSpace) {
|
|
|
|
NS_RELEASE(mInner->mNameSpace);
|
|
|
|
mInner->mNameSpace = newNameSpace; // takes ref
|
|
|
|
}
|
|
|
|
}
|
2000-05-16 06:43:33 +04:00
|
|
|
} else {
|
|
|
|
CheckRuleForAttributes(aRule);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
2000-05-16 06:43:33 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-04-20 04:05:54 +04:00
|
|
|
|
2000-05-16 06:43:33 +04:00
|
|
|
static PRBool
|
|
|
|
CheckRuleForAttributesEnum(nsISupports *aRule, void *aData)
|
|
|
|
{
|
|
|
|
nsICSSRule *rule = NS_STATIC_CAST(nsICSSRule *, aRule);
|
|
|
|
CSSStyleSheetImpl *sheet = NS_STATIC_CAST(CSSStyleSheetImpl *, aData);
|
|
|
|
return NS_SUCCEEDED(sheet->CheckRuleForAttributes(rule));
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::CheckRuleForAttributes(nsICSSRule *aRule)
|
|
|
|
{
|
|
|
|
PRInt32 ruleType;
|
|
|
|
aRule->GetType(ruleType);
|
|
|
|
switch (ruleType) {
|
|
|
|
case nsICSSRule::MEDIA_RULE: {
|
|
|
|
nsICSSMediaRule *mediaRule = (nsICSSMediaRule *)aRule;
|
|
|
|
return mediaRule->EnumerateRulesForwards(CheckRuleForAttributesEnum,
|
|
|
|
(void *)this);
|
|
|
|
}
|
|
|
|
case nsICSSRule::STYLE_RULE: {
|
|
|
|
nsICSSStyleRule *styleRule = NS_STATIC_CAST(nsICSSStyleRule *, aRule);
|
|
|
|
nsCSSSelector *iter;
|
|
|
|
for (iter = styleRule->FirstSelector(); iter; iter = iter->mNext) {
|
2000-06-01 00:00:31 +04:00
|
|
|
/* P.classname means we have to check the attribute "class" */
|
2001-02-13 17:06:29 +03:00
|
|
|
if (iter->mIDList) {
|
2000-06-01 00:00:31 +04:00
|
|
|
AtomKey idKey(nsHTMLAtoms::id);
|
|
|
|
mInner->mRelevantAttributes.Put(&idKey, nsHTMLAtoms::id);
|
|
|
|
}
|
|
|
|
if (iter->mClassList) {
|
|
|
|
AtomKey classKey(nsHTMLAtoms::kClass);
|
|
|
|
mInner->mRelevantAttributes.Put(&classKey, nsHTMLAtoms::kClass);
|
|
|
|
}
|
|
|
|
for (nsAttrSelector *sel = iter->mAttrList; sel; sel = sel->mNext) {
|
2000-05-16 06:43:33 +04:00
|
|
|
/* store it in this sheet's attributes-that-matter table */
|
|
|
|
/* XXX store tag name too, but handle collisions */
|
|
|
|
#ifdef DEBUG_shaver_off
|
|
|
|
nsAutoString str;
|
|
|
|
sel->mAttr->ToString(str);
|
|
|
|
char * chars = str.ToNewCString();
|
2000-10-29 02:17:53 +04:00
|
|
|
fprintf(stderr, "[%s@%p]", chars, this);
|
2000-06-03 13:46:12 +04:00
|
|
|
nsMemory::Free(chars);
|
2000-05-16 06:43:33 +04:00
|
|
|
#endif
|
|
|
|
AtomKey key(sel->mAttr);
|
|
|
|
mInner->mRelevantAttributes.Put(&key, sel->mAttr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} /* fall-through */
|
|
|
|
default:
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-12-03 23:20:35 +03:00
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::StyleRuleCount(PRInt32& aCount) const
|
1998-12-03 23:20:35 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
aCount = 0;
|
|
|
|
if (mInner && mInner->mOrderedRules) {
|
|
|
|
PRUint32 cnt;
|
|
|
|
nsresult rv = ((CSSStyleSheetImpl*)this)->mInner->mOrderedRules->Count(&cnt); // XXX bogus cast -- this method should not be const
|
|
|
|
aCount = (PRInt32)cnt;
|
|
|
|
return rv;
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetStyleRuleAt(PRInt32 aIndex, nsICSSRule*& aRule) const
|
|
|
|
{
|
|
|
|
nsresult result = NS_ERROR_ILLEGAL_VALUE;
|
1998-12-03 23:20:35 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mInner && mInner->mOrderedRules) {
|
|
|
|
aRule = (nsICSSRule*)(mInner->mOrderedRules->ElementAt(aIndex));
|
|
|
|
if (nsnull != aRule) {
|
|
|
|
result = NS_OK;
|
|
|
|
}
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
|
|
|
else {
|
1999-10-14 04:59:21 +04:00
|
|
|
aRule = nsnull;
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return result;
|
1998-12-03 23:20:35 +03:00
|
|
|
}
|
|
|
|
|
1998-11-26 04:34:53 +03:00
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::GetNameSpace(nsINameSpace*& aNameSpace) const
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
aNameSpace = ((mInner) ? mInner->mNameSpace : nsnull);
|
|
|
|
NS_IF_ADDREF(aNameSpace);
|
1998-11-26 04:34:53 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::SetDefaultNameSpaceID(PRInt32 aDefaultNameSpaceID)
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mInner) {
|
|
|
|
mInner->mDefaultNameSpaceID = aDefaultNameSpaceID;
|
|
|
|
mInner->RebuildNameSpaces();
|
|
|
|
}
|
1998-11-26 04:34:53 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
|
1998-11-26 04:34:53 +03:00
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::StyleSheetCount(PRInt32& aCount) const
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
// XXX Far from an ideal way to do this, but the hope is that
|
|
|
|
// it won't be done too often. If it is, we might want to
|
|
|
|
// consider storing the children in an array.
|
|
|
|
aCount = 0;
|
|
|
|
|
|
|
|
const CSSStyleSheetImpl* child = mFirstChild;
|
|
|
|
while (child) {
|
|
|
|
aCount++;
|
|
|
|
child = child->mNext;
|
|
|
|
}
|
|
|
|
|
1998-11-26 04:34:53 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::GetStyleSheetAt(PRInt32 aIndex, nsICSSStyleSheet*& aSheet) const
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
// XXX Ughh...an O(n^2) method for doing iteration. Again, we hope
|
|
|
|
// that this isn't done too often. If it is, we need to change the
|
|
|
|
// underlying storage mechanism
|
|
|
|
aSheet = nsnull;
|
|
|
|
|
|
|
|
if (mFirstChild) {
|
|
|
|
const CSSStyleSheetImpl* child = mFirstChild;
|
|
|
|
while ((child) && (0 != aIndex)) {
|
|
|
|
--aIndex;
|
|
|
|
child = child->mNext;
|
|
|
|
}
|
|
|
|
|
|
|
|
aSheet = (nsICSSStyleSheet*)child;
|
|
|
|
NS_IF_ADDREF(aSheet);
|
|
|
|
}
|
|
|
|
|
1998-11-26 04:34:53 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
nsresult
|
|
|
|
CSSStyleSheetImpl::EnsureUniqueInner(void)
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
if (! mInner) {
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
if (1 < mInner->mSheets.Count()) {
|
|
|
|
CSSStyleSheetInner* clone = mInner->CloneFor(this);
|
|
|
|
if (clone) {
|
|
|
|
mInner->RemoveSheet(this);
|
|
|
|
mInner = clone;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
1999-05-13 08:56:04 +04:00
|
|
|
}
|
1998-11-26 04:34:53 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::Clone(nsICSSStyleSheet*& aClone) const
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
// XXX no, really need to clone
|
|
|
|
CSSStyleSheetImpl* clone = new CSSStyleSheetImpl(*this);
|
|
|
|
if (clone) {
|
|
|
|
aClone = (nsICSSStyleSheet*)clone;
|
|
|
|
NS_ADDREF(aClone);
|
1998-11-26 04:34:53 +03:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
1998-11-26 04:34:53 +03:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static void
|
|
|
|
ListRules(nsISupportsArray* aRules, FILE* aOut, PRInt32 aIndent)
|
1999-06-15 10:20:46 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
PRUint32 count;
|
|
|
|
PRUint32 index;
|
|
|
|
if (aRules) {
|
|
|
|
aRules->Count(&count);
|
|
|
|
for (index = 0; index < count; index++) {
|
|
|
|
nsICSSRule* rule = (nsICSSRule*)aRules->ElementAt(index);
|
|
|
|
rule->List(aOut, aIndent);
|
|
|
|
NS_RELEASE(rule);
|
1999-06-15 10:20:46 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
struct ListEnumData {
|
|
|
|
ListEnumData(FILE* aOut, PRInt32 aIndent)
|
|
|
|
: mOut(aOut),
|
|
|
|
mIndent(aIndent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
FILE* mOut;
|
|
|
|
PRInt32 mIndent;
|
|
|
|
};
|
|
|
|
|
1999-10-16 03:29:21 +04:00
|
|
|
#if 0
|
1999-10-14 04:59:21 +04:00
|
|
|
static PRBool ListCascade(nsHashKey* aKey, void* aValue, void* aClosure)
|
|
|
|
{
|
|
|
|
AtomKey* key = (AtomKey*)aKey;
|
|
|
|
RuleCascadeData* cascade = (RuleCascadeData*)aValue;
|
|
|
|
ListEnumData* data = (ListEnumData*)aClosure;
|
|
|
|
|
|
|
|
fputs("\nRules in cascade order for medium: \"", data->mOut);
|
|
|
|
nsAutoString buffer;
|
|
|
|
key->mAtom->ToString(buffer);
|
|
|
|
fputs(buffer, data->mOut);
|
|
|
|
fputs("\"\n", data->mOut);
|
|
|
|
|
|
|
|
ListRules(cascade->mWeightedRules, data->mOut, data->mIndent);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
1999-10-16 03:29:21 +04:00
|
|
|
#endif
|
1999-06-15 10:20:46 +04:00
|
|
|
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
void CSSStyleSheetImpl::List(FILE* out, PRInt32 aIndent) const
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
PRInt32 index;
|
|
|
|
|
|
|
|
// Indent
|
|
|
|
for (index = aIndent; --index >= 0; ) fputs(" ", out);
|
|
|
|
|
|
|
|
if (! mInner) {
|
|
|
|
fputs("CSS Style Sheet - without inner data storage - ERROR\n", out);
|
|
|
|
return;
|
1998-12-02 03:37:32 +03:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
fputs("CSS Style Sheet: ", out);
|
|
|
|
char* urlSpec = nsnull;
|
|
|
|
nsresult rv = mInner->mURL->GetSpec(&urlSpec);
|
|
|
|
if (NS_SUCCEEDED(rv) && urlSpec) {
|
|
|
|
fputs(urlSpec, out);
|
|
|
|
nsCRT::free(urlSpec);
|
1998-12-02 03:37:32 +03:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
if (mMedia) {
|
|
|
|
fputs(" media: ", out);
|
|
|
|
index = 0;
|
|
|
|
PRUint32 count;
|
|
|
|
mMedia->Count(&count);
|
|
|
|
nsAutoString buffer;
|
|
|
|
while (index < PRInt32(count)) {
|
|
|
|
nsIAtom* medium = (nsIAtom*)mMedia->ElementAt(index++);
|
|
|
|
medium->ToString(buffer);
|
|
|
|
fputs(buffer, out);
|
|
|
|
if (index < PRInt32(count)) {
|
|
|
|
fputs(", ", out);
|
|
|
|
}
|
|
|
|
NS_RELEASE(medium);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fputs("\n", out);
|
|
|
|
|
|
|
|
const CSSStyleSheetImpl* child = mFirstChild;
|
|
|
|
while (nsnull != child) {
|
|
|
|
child->List(out, aIndent + 1);
|
|
|
|
child = child->mNext;
|
|
|
|
}
|
|
|
|
|
|
|
|
fputs("Rules in source order:\n", out);
|
|
|
|
ListRules(mInner->mOrderedRules, out, aIndent);
|
1998-11-26 04:34:53 +03:00
|
|
|
}
|
|
|
|
|
2000-03-31 11:08:36 +04:00
|
|
|
/******************************************************************************
|
|
|
|
* SizeOf method:
|
|
|
|
*
|
|
|
|
* Self (reported as CSSStyleSheetImpl's size):
|
|
|
|
* 1) sizeof(*this) + sizeof the mImportsCollection + sizeof mCuleCollection)
|
|
|
|
*
|
|
|
|
* Contained / Aggregated data (not reported as CSSStyleSheetImpl's size):
|
|
|
|
* 1) mInner is delegated to be counted seperately
|
|
|
|
*
|
|
|
|
* Children / siblings / parents:
|
|
|
|
* 1) Recurse to mFirstChild
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
void CSSStyleSheetImpl::SizeOf(nsISizeOfHandler *aSizeOfHandler, PRUint32 &aSize)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aSizeOfHandler != nsnull, "SizeOf handler cannot be null");
|
|
|
|
|
|
|
|
// first get the unique items collection
|
|
|
|
UNIQUE_STYLE_ITEMS(uniqueItems);
|
|
|
|
if(! uniqueItems->AddItem((void*)this)){
|
|
|
|
// this style sheet is already accounted for
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 localSize=0;
|
|
|
|
|
|
|
|
// create a tag for this instance
|
|
|
|
nsCOMPtr<nsIAtom> tag;
|
|
|
|
tag = getter_AddRefs(NS_NewAtom("CSSStyleSheet"));
|
|
|
|
// get the size of an empty instance and add to the sizeof handler
|
|
|
|
aSize = sizeof(CSSStyleSheetImpl);
|
|
|
|
|
|
|
|
// add up the contained objects we won't delegate to:
|
|
|
|
// NOTE that we just add the sizeof the objects
|
|
|
|
// since the style data they contain is accounted for elsewhere
|
|
|
|
// - mImportsCollection
|
|
|
|
// - mRuleCollection
|
|
|
|
aSize += sizeof(mImportsCollection);
|
|
|
|
aSize += sizeof(mRuleCollection);
|
|
|
|
aSizeOfHandler->AddSize(tag,aSize);
|
|
|
|
|
|
|
|
// size the inner
|
|
|
|
if(mInner){
|
|
|
|
mInner->SizeOf(aSizeOfHandler, localSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
// now travers the children (recursively, I'm sorry to say)
|
|
|
|
if(mFirstChild){
|
|
|
|
PRUint32 childSize=0;
|
|
|
|
mFirstChild->SizeOf(aSizeOfHandler, childSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-03 03:07:11 +04:00
|
|
|
static PRBool PR_CALLBACK
|
1999-10-14 04:59:21 +04:00
|
|
|
EnumClearRuleCascades(void* aProcessor, void* aData)
|
1999-05-27 03:55:12 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsICSSStyleRuleProcessor* processor = (nsICSSStyleRuleProcessor*)aProcessor;
|
|
|
|
processor->ClearRuleCascades();
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CSSStyleSheetImpl::ClearRuleCascades(void)
|
|
|
|
{
|
|
|
|
if (mRuleProcessors) {
|
|
|
|
mRuleProcessors->EnumerateForwards(EnumClearRuleCascades, nsnull);
|
|
|
|
}
|
|
|
|
if (mParent) {
|
|
|
|
CSSStyleSheetImpl* parent = (CSSStyleSheetImpl*)mParent;
|
|
|
|
parent->ClearRuleCascades();
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
CSSStyleSheetImpl::WillDirty(void)
|
|
|
|
{
|
|
|
|
return EnsureUniqueInner();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CSSStyleSheetImpl::DidDirty(void)
|
|
|
|
{
|
|
|
|
ClearRuleCascades();
|
|
|
|
mDirty = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-04-16 04:23:57 +04:00
|
|
|
CSSStyleSheetImpl::IsModified(PRBool* aSheetModified) const
|
1999-10-14 04:59:21 +04:00
|
|
|
{
|
2000-04-16 04:23:57 +04:00
|
|
|
*aSheetModified = mDirty;
|
|
|
|
return NS_OK;
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::SetModified(PRBool aModified)
|
|
|
|
{
|
|
|
|
mDirty = aModified;
|
1999-05-27 03:55:12 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
// nsIDOMStyleSheet interface
|
|
|
|
NS_IMETHODIMP
|
2000-08-23 21:27:06 +04:00
|
|
|
CSSStyleSheetImpl::GetType(nsAWritableString& aType)
|
1999-10-14 04:59:21 +04:00
|
|
|
{
|
2000-08-23 21:27:06 +04:00
|
|
|
aType.Assign(NS_LITERAL_STRING("text/css"));
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetDisabled(PRBool* aDisabled)
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
*aDisabled = mDisabled;
|
1998-11-26 04:34:53 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::SetDisabled(PRBool aDisabled)
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
|
|
|
PRBool oldState = mDisabled;
|
1999-10-14 04:59:21 +04:00
|
|
|
mDisabled = aDisabled;
|
1998-11-26 04:34:53 +03:00
|
|
|
|
|
|
|
if ((nsnull != mDocument) && (mDisabled != oldState)) {
|
|
|
|
mDocument->SetStyleSheetDisabledState(this, mDisabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetOwnerNode(nsIDOMNode** aOwnerNode)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2000-04-26 17:58:56 +04:00
|
|
|
*aOwnerNode = mOwningNode;
|
|
|
|
NS_IF_ADDREF(*aOwnerNode);
|
1998-11-26 04:34:53 +03:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::GetParentStyleSheet(nsIDOMStyleSheet** aParentStyleSheet)
|
|
|
|
{
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_ENSURE_ARG_POINTER(aParentStyleSheet);
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
if (mParent) {
|
|
|
|
rv = mParent->QueryInterface(NS_GET_IID(nsIDOMStyleSheet),
|
|
|
|
(void **)aParentStyleSheet);
|
|
|
|
} else {
|
1999-10-14 04:59:21 +04:00
|
|
|
*aParentStyleSheet = nsnull;
|
|
|
|
}
|
2000-04-26 17:58:56 +04:00
|
|
|
|
|
|
|
return rv;
|
1998-11-26 04:34:53 +03:00
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_IMETHODIMP
|
2000-08-23 21:27:06 +04:00
|
|
|
CSSStyleSheetImpl::GetHref(nsAWritableString& aHref)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mInner && mInner->mURL) {
|
|
|
|
char* str = nsnull;
|
|
|
|
mInner->mURL->GetSpec(&str);
|
2000-08-23 21:27:06 +04:00
|
|
|
aHref.Assign(NS_ConvertASCIItoUCS2(str));
|
1999-10-14 04:59:21 +04:00
|
|
|
if (str) {
|
|
|
|
nsCRT::free(str);
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
else {
|
2000-04-26 17:58:56 +04:00
|
|
|
aHref.Truncate();
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
|
1999-06-10 09:29:22 +04:00
|
|
|
return NS_OK;
|
1999-05-19 03:14:29 +04:00
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetTitle(nsString& aTitle) const
|
|
|
|
{
|
|
|
|
aTitle = mTitle;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-05-19 03:14:29 +04:00
|
|
|
NS_IMETHODIMP
|
2000-08-23 21:27:06 +04:00
|
|
|
CSSStyleSheetImpl::GetTitle(nsAWritableString& aTitle)
|
1999-05-19 03:14:29 +04:00
|
|
|
{
|
2000-08-23 21:27:06 +04:00
|
|
|
aTitle.Assign(mTitle);
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-06-10 09:29:22 +04:00
|
|
|
NS_IMETHODIMP
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSStyleSheetImpl::GetMedia(nsIDOMMediaList** aMedia)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_ENSURE_ARG_POINTER(aMedia);
|
|
|
|
*aMedia = nsnull;
|
|
|
|
|
|
|
|
if (!mMedia) {
|
|
|
|
nsCOMPtr<nsISupportsArray> tmp;
|
|
|
|
NS_NewISupportsArray(getter_AddRefs(tmp));
|
|
|
|
NS_ENSURE_TRUE(tmp, NS_ERROR_NULL_POINTER);
|
|
|
|
|
|
|
|
mMedia = new DOMMediaListImpl(tmp, this);
|
|
|
|
NS_IF_ADDREF(mMedia);
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
2000-04-26 17:58:56 +04:00
|
|
|
|
|
|
|
*aMedia = mMedia;
|
|
|
|
NS_IF_ADDREF(*aMedia);
|
|
|
|
|
1999-06-10 09:29:22 +04:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSStyleSheetImpl::GetOwnerRule(nsIDOMCSSRule** aOwnerRule)
|
|
|
|
{
|
2000-05-13 22:10:24 +04:00
|
|
|
NS_ENSURE_ARG_POINTER(aOwnerRule);
|
|
|
|
*aOwnerRule = nsnull;
|
|
|
|
|
|
|
|
// TBI: This should return the owner rule once the style system knows about
|
|
|
|
// owning rules...
|
|
|
|
|
|
|
|
return NS_OK;
|
2000-04-26 17:58:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetCssRules(nsIDOMCSSRuleList** aCssRules)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
if (nsnull == mRuleCollection) {
|
2000-04-26 17:58:56 +04:00
|
|
|
mRuleCollection = new CSSRuleListImpl(this);
|
1999-10-14 04:59:21 +04:00
|
|
|
if (nsnull == mRuleCollection) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_ADDREF(mRuleCollection);
|
|
|
|
}
|
1999-06-10 09:29:22 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
*aCssRules = mRuleCollection;
|
|
|
|
NS_ADDREF(mRuleCollection);
|
1999-06-10 09:29:22 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-06-10 09:29:22 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
2000-08-23 21:27:06 +04:00
|
|
|
CSSStyleSheetImpl::InsertRule(const nsAReadableString& aRule,
|
1999-10-14 04:59:21 +04:00
|
|
|
PRUint32 aIndex,
|
|
|
|
PRUint32* aReturn)
|
|
|
|
{
|
|
|
|
nsICSSParser* css;
|
|
|
|
// XXX should get parser from CSS loader
|
|
|
|
nsresult result = NS_NewCSSParser(&css);
|
|
|
|
if (NS_OK == result) {
|
|
|
|
nsString* str = new nsString(aRule); // will be deleted by the input stream
|
|
|
|
nsIUnicharInputStream* input = nsnull;
|
|
|
|
result = NS_NewStringUnicharInputStream(&input, str);
|
|
|
|
if (NS_OK == result) {
|
|
|
|
nsICSSStyleSheet* tmp;
|
|
|
|
css->SetStyleSheet(this);
|
|
|
|
// XXX Currently, the parser will append the rule to the
|
|
|
|
// style sheet. We shouldn't ignore the index.
|
|
|
|
result = css->Parse(input, mInner->mURL, tmp);
|
|
|
|
NS_ASSERTION(tmp == this, "parser incorrectly created a new stylesheet");
|
|
|
|
NS_RELEASE(tmp);
|
|
|
|
NS_RELEASE(input);
|
|
|
|
PRUint32 cnt;
|
|
|
|
if (mInner && mInner->mOrderedRules) {
|
|
|
|
result = mInner->mOrderedRules->Count(&cnt);
|
|
|
|
if (NS_SUCCEEDED(result)) {
|
|
|
|
*aReturn = cnt;
|
|
|
|
if (nsnull != mDocument) {
|
|
|
|
nsICSSRule* rule;
|
|
|
|
|
|
|
|
rule = (nsICSSRule*)(mInner->mOrderedRules->ElementAt(aIndex));
|
|
|
|
mDocument->StyleRuleAdded(this, rule);
|
|
|
|
NS_IF_RELEASE(rule);
|
1999-06-10 09:29:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1998-06-05 10:06:50 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_RELEASE(css);
|
1998-06-05 10:06:50 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
return result;
|
1998-06-05 10:06:50 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::DeleteRule(PRUint32 aIndex)
|
1998-06-05 10:06:50 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsresult result = NS_ERROR_INVALID_ARG;
|
1998-06-05 10:06:50 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
// XXX TBI: handle @rule types
|
1999-06-03 05:57:52 +04:00
|
|
|
if (mInner && mInner->mOrderedRules) {
|
1999-10-14 04:59:21 +04:00
|
|
|
result = WillDirty();
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(result)) {
|
|
|
|
nsICSSRule *rule;
|
|
|
|
|
|
|
|
rule = (nsICSSRule*)(mInner->mOrderedRules->ElementAt(aIndex));
|
|
|
|
if (nsnull != rule) {
|
|
|
|
mInner->mOrderedRules->RemoveElementAt(aIndex);
|
|
|
|
rule->SetStyleSheet(nsnull);
|
|
|
|
DidDirty();
|
|
|
|
NS_RELEASE(rule);
|
|
|
|
}
|
1998-06-05 10:06:50 +04:00
|
|
|
}
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
|
1998-06-05 10:06:50 +04:00
|
|
|
return result;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetScriptObject(nsIScriptContext *aContext, void** aScriptObject)
|
1999-06-10 09:29:22 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsresult res = NS_OK;
|
|
|
|
nsIScriptGlobalObject *global = aContext->GetGlobalObject();
|
|
|
|
|
|
|
|
if (nsnull == mScriptObject) {
|
|
|
|
nsISupports *supports = (nsISupports *)(nsICSSStyleSheet *)this;
|
|
|
|
// XXX Should be done through factory
|
|
|
|
res = NS_NewScriptCSSStyleSheet(aContext,
|
|
|
|
supports,
|
|
|
|
(nsISupports *)global,
|
|
|
|
(void**)&mScriptObject);
|
|
|
|
}
|
|
|
|
*aScriptObject = mScriptObject;
|
|
|
|
|
|
|
|
NS_RELEASE(global);
|
|
|
|
return res;
|
1999-06-10 09:29:22 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::SetScriptObject(void* aScriptObject)
|
1999-06-15 10:20:46 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
mScriptObject = aScriptObject;
|
1999-06-15 10:20:46 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-06-10 09:29:22 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
// XXX for backwards compatibility and convenience
|
|
|
|
NS_HTML nsresult
|
|
|
|
NS_NewCSSStyleSheet(nsICSSStyleSheet** aInstancePtrResult, nsIURI* aURL)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsICSSStyleSheet* sheet;
|
|
|
|
nsresult rv;
|
|
|
|
if (NS_FAILED(rv = NS_NewCSSStyleSheet(&sheet)))
|
|
|
|
return rv;
|
1999-05-19 03:14:29 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (NS_FAILED(rv = sheet->Init(aURL))) {
|
|
|
|
NS_RELEASE(sheet);
|
|
|
|
return rv;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
*aInstancePtrResult = sheet;
|
1999-06-10 09:29:22 +04:00
|
|
|
return NS_OK;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_HTML nsresult
|
|
|
|
NS_NewCSSStyleSheet(nsICSSStyleSheet** aInstancePtrResult)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
if (aInstancePtrResult == nsnull) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
1999-05-19 03:14:29 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl *it = new CSSStyleSheetImpl();
|
|
|
|
|
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_ADDREF(it);
|
|
|
|
*aInstancePtrResult = it;
|
1998-10-06 05:39:33 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
// -------------------------------
|
|
|
|
// CSS Style rule processor implementation
|
|
|
|
//
|
|
|
|
|
|
|
|
CSSRuleProcessor::CSSRuleProcessor(void)
|
|
|
|
: mSheets(nsnull),
|
|
|
|
mMediumCascadeTable(nsnull)
|
1999-06-03 05:57:52 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_INIT_REFCNT();
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static PRBool
|
|
|
|
DropProcessorReference(nsISupports* aSheet, void* aProcessor)
|
1999-05-19 03:14:29 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsICSSStyleSheet* sheet = (nsICSSStyleSheet*)aSheet;
|
|
|
|
nsICSSStyleRuleProcessor* processor = (nsICSSStyleRuleProcessor*)aProcessor;
|
|
|
|
sheet->DropRuleProcessorReference(processor);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
CSSRuleProcessor::~CSSRuleProcessor(void)
|
|
|
|
{
|
|
|
|
if (mSheets) {
|
|
|
|
mSheets->EnumerateForwards(DropProcessorReference, this);
|
|
|
|
NS_RELEASE(mSheets);
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
ClearRuleCascades();
|
1999-05-19 03:14:29 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMPL_ADDREF(CSSRuleProcessor);
|
|
|
|
NS_IMPL_RELEASE(CSSRuleProcessor);
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
CSSRuleProcessor::QueryInterface(REFNSIID aIID, void** aInstancePtrResult)
|
1999-05-27 03:55:12 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
if (NULL == aInstancePtrResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
2000-02-03 01:24:56 +03:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsICSSStyleRuleProcessor))) {
|
1999-10-14 04:59:21 +04:00
|
|
|
*aInstancePtrResult = (void*)this;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
2000-02-03 01:24:56 +03:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIStyleRuleProcessor))) {
|
1999-10-14 04:59:21 +04:00
|
|
|
*aInstancePtrResult = (void*)this;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
if (aIID.Equals(kISupportsIID)) {
|
|
|
|
*aInstancePtrResult = (void*)this;
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_NOINTERFACE;
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSRuleProcessor::AppendStyleSheet(nsICSSStyleSheet* aStyleSheet)
|
|
|
|
{
|
|
|
|
nsresult result = NS_OK;
|
|
|
|
if (! mSheets) {
|
|
|
|
result = NS_NewISupportsArray(&mSheets);
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mSheets) {
|
|
|
|
mSheets->AppendElement(aStyleSheet);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
struct SelectorMatchesData {
|
|
|
|
SelectorMatchesData(nsIPresContext* aPresContext, nsIContent* aContent,
|
|
|
|
nsIStyleContext* aParentContext, nsISupportsArray* aResults,
|
|
|
|
nsCompatibility* aCompat = nsnull);
|
|
|
|
|
|
|
|
~SelectorMatchesData()
|
|
|
|
{
|
|
|
|
NS_IF_RELEASE(mParentContent);
|
|
|
|
NS_IF_RELEASE(mContentTag);
|
|
|
|
NS_IF_RELEASE(mContentID);
|
|
|
|
NS_IF_RELEASE(mStyledContent);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIPresContext* mPresContext;
|
|
|
|
nsIContent* mContent;
|
|
|
|
nsIContent* mParentContent; // if content, content->GetParent()
|
|
|
|
nsIStyleContext* mParentContext;
|
|
|
|
nsISupportsArray* mResults;
|
|
|
|
|
|
|
|
nsIAtom* mContentTag; // if content, then content->GetTag()
|
|
|
|
nsIAtom* mContentID; // if styled content, then styledcontent->GetID()
|
|
|
|
nsIStyledContent* mStyledContent; // if content, content->QI(nsIStyledContent)
|
|
|
|
PRBool mIsHTMLContent; // if content, then does QI on HTMLContent, true or false
|
|
|
|
PRBool mIsHTMLLink; // if content, calls nsStyleUtil::IsHTMLLink
|
|
|
|
PRBool mIsSimpleXLink; // if content, calls nsStyleUtil::IsSimpleXLink
|
|
|
|
nsLinkState mLinkState; // if a link, this is the state, otherwise unknown
|
|
|
|
PRBool mIsQuirkMode; // Possibly remove use of this in SelectorMatches?
|
|
|
|
PRInt32 mEventState; // if content, eventStateMgr->GetContentState()
|
|
|
|
PRBool mHasAttributes; // if content, content->GetAttributeCount() > 0
|
|
|
|
PRInt32 mNameSpaceID; // if content, content->GetNameSapce()
|
|
|
|
};
|
|
|
|
|
|
|
|
SelectorMatchesData::SelectorMatchesData(nsIPresContext* aPresContext, nsIContent* aContent,
|
|
|
|
nsIStyleContext* aParentContext, nsISupportsArray* aResults,
|
|
|
|
nsCompatibility* aCompat /*= nsnull*/)
|
|
|
|
{
|
|
|
|
mPresContext = aPresContext;
|
|
|
|
mContent = aContent;
|
|
|
|
mParentContent = nsnull;
|
|
|
|
mParentContext = aParentContext;
|
|
|
|
mResults = aResults;
|
|
|
|
|
|
|
|
mContentTag = nsnull;
|
|
|
|
mContentID = nsnull;
|
|
|
|
mStyledContent = nsnull;
|
|
|
|
mIsHTMLContent = PR_FALSE;
|
|
|
|
mIsHTMLLink = PR_FALSE;
|
|
|
|
mIsSimpleXLink = PR_FALSE;
|
|
|
|
mLinkState = eLinkState_Unknown;
|
|
|
|
mEventState = NS_EVENT_STATE_UNSPECIFIED;
|
|
|
|
mNameSpaceID = kNameSpaceID_Unknown;
|
|
|
|
|
|
|
|
if(!aCompat) {
|
|
|
|
// get the compat. mode (unless it is provided)
|
|
|
|
nsCompatibility quirkMode = eCompatibility_Standard;
|
|
|
|
mPresContext->GetCompatibilityMode(&quirkMode);
|
|
|
|
mIsQuirkMode = eCompatibility_Standard == quirkMode ? PR_FALSE : PR_TRUE;
|
|
|
|
} else {
|
|
|
|
mIsQuirkMode = eCompatibility_Standard == *aCompat ? PR_FALSE : PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(aContent){
|
|
|
|
// we hold no ref to the content...
|
|
|
|
mContent = aContent;
|
|
|
|
|
|
|
|
// get the namespace
|
|
|
|
aContent->GetNameSpaceID(mNameSpaceID);
|
|
|
|
|
|
|
|
// get the tag and parent
|
|
|
|
aContent->GetTag(mContentTag);
|
|
|
|
aContent->GetParent(mParentContent);
|
|
|
|
|
|
|
|
// get the event state
|
|
|
|
nsIEventStateManager* eventStateManager = nsnull;
|
|
|
|
mPresContext->GetEventStateManager(&eventStateManager);
|
|
|
|
if(eventStateManager) {
|
|
|
|
eventStateManager->GetContentState(aContent, mEventState);
|
|
|
|
NS_RELEASE(eventStateManager);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the styledcontent interface and the ID
|
|
|
|
if (NS_SUCCEEDED(aContent->QueryInterface(NS_GET_IID(nsIStyledContent), (void**)&mStyledContent))) {
|
|
|
|
NS_ASSERTION(mStyledContent, "Succeeded but returned null");
|
|
|
|
mStyledContent->GetID(mContentID);
|
|
|
|
}
|
|
|
|
|
|
|
|
// see if there are attributes for the content
|
|
|
|
PRInt32 attrCount = 0;
|
|
|
|
aContent->GetAttributeCount(attrCount);
|
|
|
|
mHasAttributes = PRBool(attrCount > 0);
|
|
|
|
|
|
|
|
PRBool isXUL = PR_FALSE;
|
|
|
|
|
|
|
|
// check for HTMLContent and Link status
|
|
|
|
//
|
2001-02-22 06:01:34 +03:00
|
|
|
#ifdef MOZ_XUL
|
2001-01-27 08:48:41 +03:00
|
|
|
#ifndef DONT_OPTIMIZE_ISHTMLCONTENT_FOR_XUL
|
|
|
|
// check for HTML content
|
|
|
|
// NOTE: optimization to first check for XULContent since asking a XUL element to
|
|
|
|
// QI for HTMLContent is very slow
|
|
|
|
nsIXULContent *xc;
|
|
|
|
if (NS_SUCCEEDED(aContent->QueryInterface(NS_GET_IID(nsIXULContent), (void**)&xc))) {
|
|
|
|
NS_RELEASE(xc);
|
|
|
|
isXUL = PR_TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
nsIHTMLContent* hc;
|
|
|
|
if (PR_FALSE == isXUL &&
|
|
|
|
NS_SUCCEEDED(aContent->QueryInterface(NS_GET_IID(nsIHTMLContent), (void**)&hc))) {
|
|
|
|
mIsHTMLContent = PR_TRUE;
|
|
|
|
NS_RELEASE(hc);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if HTML content and it has some attributes, check for an HTML link
|
|
|
|
// NOTE: optimization: cannot be a link if no attributes (since it needs an href)
|
|
|
|
if (PR_TRUE == mIsHTMLContent && mHasAttributes) {
|
|
|
|
// check if it is an HTML Link
|
|
|
|
if(nsStyleUtil::IsHTMLLink(aContent, mContentTag, mPresContext, &mLinkState)) {
|
|
|
|
mIsHTMLLink = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if not an HTML link, check for a simple xlink (cannot be both HTML link and xlink)
|
|
|
|
// NOTE: optimization: cannot be an XLink if no attributes (since it needs an
|
|
|
|
if(PR_FALSE == mIsHTMLLink &&
|
|
|
|
mHasAttributes &&
|
|
|
|
nsStyleUtil::IsSimpleXlink(aContent, mPresContext, &mLinkState)) {
|
|
|
|
mIsSimpleXLink = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static const PRUnichar kNullCh = PRUnichar('\0');
|
|
|
|
|
|
|
|
static PRBool ValueIncludes(const nsString& aValueList, const nsString& aValue, PRBool aCaseSensitive)
|
1999-05-27 03:55:12 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsAutoString valueList(aValueList);
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
valueList.Append(kNullCh); // put an extra null at the end
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
PRUnichar* value = (PRUnichar*)(const PRUnichar*)aValue.GetUnicode();
|
|
|
|
PRUnichar* start = (PRUnichar*)(const PRUnichar*)valueList.GetUnicode();
|
|
|
|
PRUnichar* end = start;
|
|
|
|
|
|
|
|
while (kNullCh != *start) {
|
2000-03-12 14:10:07 +03:00
|
|
|
while ((kNullCh != *start) && nsCRT::IsAsciiSpace(*start)) { // skip leading space
|
1999-10-14 04:59:21 +04:00
|
|
|
start++;
|
|
|
|
}
|
|
|
|
end = start;
|
|
|
|
|
2000-03-12 14:10:07 +03:00
|
|
|
while ((kNullCh != *end) && (PR_FALSE == nsCRT::IsAsciiSpace(*end))) { // look for space or end
|
1999-10-14 04:59:21 +04:00
|
|
|
end++;
|
|
|
|
}
|
|
|
|
*end = kNullCh; // end string here
|
|
|
|
|
|
|
|
if (start < end) {
|
|
|
|
if (aCaseSensitive) {
|
2000-04-27 04:07:12 +04:00
|
|
|
if (!nsCRT::strcmp(value, start)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2000-04-27 04:07:12 +04:00
|
|
|
if (!nsCRT::strcasecmp(value, start)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
start = ++end;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static const PRUnichar kDashCh = PRUnichar('-');
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static PRBool ValueDashMatch(const nsString& aValueList, const nsString& aValue, PRBool aCaseSensitive)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsAutoString valueList(aValueList);
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
valueList.Append(kNullCh); // put an extra null at the end
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
PRUnichar* value = (PRUnichar*)(const PRUnichar*)aValue.GetUnicode();
|
|
|
|
PRUnichar* start = (PRUnichar*)(const PRUnichar*)valueList.GetUnicode();
|
|
|
|
PRUnichar* end = start;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (kNullCh != *start) {
|
2000-03-12 14:10:07 +03:00
|
|
|
while ((kNullCh != *start) && nsCRT::IsAsciiSpace(*start)) { // skip leading space
|
1999-10-14 04:59:21 +04:00
|
|
|
start++;
|
|
|
|
}
|
|
|
|
end = start;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
while ((kNullCh != *end) && (kDashCh != *end)) { // look for dash or end
|
|
|
|
end++;
|
|
|
|
}
|
|
|
|
*end = kNullCh; // end string here
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (start < end) {
|
|
|
|
if (aCaseSensitive) {
|
2000-04-27 04:07:12 +04:00
|
|
|
if (!nsCRT::strcmp(value, start)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2000-04-27 04:07:12 +04:00
|
|
|
if (!nsCRT::strcasecmp(value, start)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_FALSE;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static PRBool IsEventPseudo(nsIAtom* aAtom)
|
1999-05-27 03:55:12 +04:00
|
|
|
{
|
2001-01-27 08:48:41 +03:00
|
|
|
return PRBool ((nsCSSAtoms::activePseudo == aAtom) ||
|
1999-10-14 04:59:21 +04:00
|
|
|
(nsCSSAtoms::dragOverPseudo == aAtom) ||
|
2001-01-27 08:48:41 +03:00
|
|
|
// (nsCSSAtoms::dragPseudo == aAtom) || XXX not real yet
|
|
|
|
(nsCSSAtoms::focusPseudo == aAtom) ||
|
1999-10-14 04:59:21 +04:00
|
|
|
(nsCSSAtoms::hoverPseudo == aAtom));
|
2001-01-27 08:48:41 +03:00
|
|
|
// XXX selected, enabled, disabled, selection?
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static PRBool IsLinkPseudo(nsIAtom* aAtom)
|
1999-06-03 05:57:52 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
return PRBool ((nsCSSAtoms::linkPseudo == aAtom) ||
|
|
|
|
(nsCSSAtoms::outOfDatePseudo == aAtom) ||
|
|
|
|
(nsCSSAtoms::visitedPseudo == aAtom));
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
|
|
|
|
2000-05-03 03:07:11 +04:00
|
|
|
static PRBool PR_CALLBACK IsEventSensitive(nsIAtom *aPseudo, nsIAtom *aContentTag, PRBool aSelectorIsGlobal)
|
2000-03-31 11:08:36 +04:00
|
|
|
{
|
|
|
|
// if the selector is global, meaning it is not tied to a tag, then
|
|
|
|
// we restrict the application of the event pseudo to the following tags
|
|
|
|
if (aSelectorIsGlobal) {
|
|
|
|
return PRBool ((nsHTMLAtoms::a == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::button == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::img == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::input == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::li == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::label == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::select == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::textarea == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::textPseudo == aContentTag) ||
|
|
|
|
// We require a Layout Atom too
|
|
|
|
(nsLayoutAtoms::textTagName == aContentTag)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// selector is not global, so apply the event pseudo to everything except HTML and BODY
|
|
|
|
return PRBool ((nsHTMLAtoms::html != aContentTag) &&
|
|
|
|
(nsHTMLAtoms::body != aContentTag));
|
|
|
|
}
|
|
|
|
}
|
2000-04-28 14:02:12 +04:00
|
|
|
|
|
|
|
|
|
|
|
static PRBool IsSignificantChild(nsIContent* aChild, PRBool aAcceptNonWhitespaceText)
|
|
|
|
{
|
|
|
|
nsIAtom* tag;
|
|
|
|
aChild->GetTag(tag); // skip text & comments
|
|
|
|
if ((tag != nsLayoutAtoms::textTagName) &&
|
|
|
|
(tag != nsLayoutAtoms::commentTagName) &&
|
|
|
|
(tag != nsLayoutAtoms::processingInstructionTagName)) {
|
|
|
|
NS_IF_RELEASE(tag);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
if (aAcceptNonWhitespaceText) {
|
|
|
|
if (tag == nsLayoutAtoms::textTagName) { // skip only whitespace text
|
2001-01-27 08:48:41 +03:00
|
|
|
nsITextContent* text = nsnull;
|
|
|
|
if (NS_SUCCEEDED(aChild->QueryInterface(NS_GET_IID(nsITextContent), (void**)&text))) {
|
|
|
|
PRBool isWhite;
|
|
|
|
text->IsOnlyWhitespace(&isWhite);
|
|
|
|
NS_RELEASE(text);
|
|
|
|
if (! isWhite) {
|
|
|
|
NS_RELEASE(tag);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
2000-04-28 14:02:12 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_IF_RELEASE(tag);
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
static PRBool SelectorMatches(SelectorMatchesData &data,
|
|
|
|
nsCSSSelector* aSelector,
|
|
|
|
PRBool aTestState)
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
PRBool result = PR_FALSE;
|
2000-01-27 05:28:52 +03:00
|
|
|
|
|
|
|
// Bail out early if we can
|
|
|
|
if(kNameSpaceID_Unknown != aSelector->mNameSpace) {
|
2001-01-27 08:48:41 +03:00
|
|
|
if(data.mNameSpaceID != aSelector->mNameSpace) {
|
2000-01-27 05:28:52 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
if ((nsnull == aSelector->mTag) || (aSelector->mTag == data.mContentTag)) {
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
result = PR_TRUE;
|
|
|
|
// namespace/tag match
|
|
|
|
if (nsnull != aSelector->mAttrList) { // test for attribute match
|
2001-01-27 08:48:41 +03:00
|
|
|
// if no attributes on the content, no match
|
|
|
|
if(!data.mHasAttributes) {
|
|
|
|
result = PR_FALSE;
|
|
|
|
} else {
|
|
|
|
nsAttrSelector* attr = aSelector->mAttrList;
|
|
|
|
do {
|
|
|
|
nsAutoString value;
|
|
|
|
nsresult attrState = data.mContent->GetAttribute(attr->mNameSpace, attr->mAttr, value);
|
|
|
|
if (NS_FAILED(attrState) || (NS_CONTENT_ATTR_NOT_THERE == attrState)) {
|
|
|
|
result = PR_FALSE;
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
2001-01-27 08:48:41 +03:00
|
|
|
else {
|
|
|
|
PRBool isCaseSensitive = (attr->mCaseSensitive && !data.mIsHTMLContent); // Bug 24390: html attributes should not be case-sensitive
|
|
|
|
switch (attr->mFunction) {
|
|
|
|
case NS_ATTR_FUNC_SET: break;
|
|
|
|
case NS_ATTR_FUNC_EQUALS:
|
|
|
|
if (isCaseSensitive) {
|
|
|
|
result = value.Equals(attr->mValue);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = value.EqualsIgnoreCase(attr->mValue);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_ATTR_FUNC_INCLUDES:
|
|
|
|
result = ValueIncludes(value, attr->mValue, isCaseSensitive);
|
|
|
|
break;
|
|
|
|
case NS_ATTR_FUNC_DASHMATCH:
|
|
|
|
result = ValueDashMatch(value, attr->mValue, isCaseSensitive);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
attr = attr->mNext;
|
|
|
|
} while ((PR_TRUE == result) && (nsnull != attr));
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
if ((PR_TRUE == result) &&
|
2001-02-13 17:06:29 +03:00
|
|
|
((nsnull != aSelector->mIDList) || (nsnull != aSelector->mClassList))) { // test for ID & class match
|
1999-10-14 04:59:21 +04:00
|
|
|
result = PR_FALSE;
|
2001-01-27 08:48:41 +03:00
|
|
|
if (data.mStyledContent) {
|
2001-02-13 17:06:29 +03:00
|
|
|
nsAtomList* IDList = aSelector->mIDList;
|
|
|
|
if (nsnull == IDList) {
|
1999-10-14 04:59:21 +04:00
|
|
|
result = PR_TRUE;
|
2001-02-13 17:06:29 +03:00
|
|
|
}
|
|
|
|
else if (nsnull != data.mContentID) {
|
|
|
|
result = PR_TRUE;
|
|
|
|
while (nsnull != IDList) {
|
|
|
|
if (IDList->mAtom != data.mContentID) {
|
|
|
|
result = PR_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
IDList = IDList->mNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PR_TRUE == result) {
|
1999-10-14 04:59:21 +04:00
|
|
|
nsAtomList* classList = aSelector->mClassList;
|
|
|
|
while (nsnull != classList) {
|
2001-01-27 08:48:41 +03:00
|
|
|
if (NS_COMFALSE == data.mStyledContent->HasClass(classList->mAtom)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
result = PR_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
classList = classList->mNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((PR_TRUE == result) &&
|
|
|
|
(nsnull != aSelector->mPseudoClassList)) { // test for pseudo class match
|
|
|
|
// first-child, root, lang, active, focus, hover, link, outOfDate, visited
|
|
|
|
// XXX disabled, enabled, selected, selection
|
|
|
|
nsAtomList* pseudoClass = aSelector->mPseudoClassList;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
while ((PR_TRUE == result) && (nsnull != pseudoClass)) {
|
2001-01-27 08:48:41 +03:00
|
|
|
if ((nsCSSAtoms::firstChildPseudo == pseudoClass->mAtom) ||
|
|
|
|
(nsCSSAtoms::firstNodePseudo == pseudoClass->mAtom) ) {
|
1999-10-14 04:59:21 +04:00
|
|
|
nsIContent* firstChild = nsnull;
|
2001-01-27 08:48:41 +03:00
|
|
|
nsIContent* parent = data.mParentContent;
|
1999-10-14 04:59:21 +04:00
|
|
|
if (parent) {
|
|
|
|
PRInt32 index = -1;
|
|
|
|
do {
|
|
|
|
parent->ChildAt(++index, firstChild);
|
2001-01-27 08:48:41 +03:00
|
|
|
if (firstChild) { // skip text & comments (and whitespace for firstNode as well)
|
|
|
|
if (IsSignificantChild(firstChild, (nsCSSAtoms::firstNodePseudo == pseudoClass->mAtom))) {
|
1999-10-14 04:59:21 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
NS_RELEASE(firstChild);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (1 == 1);
|
|
|
|
}
|
2001-01-27 08:48:41 +03:00
|
|
|
result = PRBool(data.mContent == firstChild);
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IF_RELEASE(firstChild);
|
|
|
|
}
|
2000-04-28 14:02:12 +04:00
|
|
|
else if (nsCSSAtoms::lastNodePseudo == pseudoClass->mAtom) {
|
|
|
|
nsIContent* lastChild = nsnull;
|
2001-01-27 08:48:41 +03:00
|
|
|
nsIContent* parent = data.mParentContent;
|
2000-04-28 14:02:12 +04:00
|
|
|
if (parent) {
|
|
|
|
PRInt32 index;
|
|
|
|
parent->ChildCount(index);
|
|
|
|
do {
|
|
|
|
parent->ChildAt(--index, lastChild);
|
|
|
|
if (lastChild) { // skip whitespace text & comments
|
|
|
|
if (IsSignificantChild(lastChild, PR_TRUE)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NS_RELEASE(lastChild);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (1 == 1);
|
|
|
|
}
|
2001-01-27 08:48:41 +03:00
|
|
|
result = PRBool(data.mContent == lastChild);
|
2000-04-28 14:02:12 +04:00
|
|
|
NS_IF_RELEASE(lastChild);
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
else if (nsCSSAtoms::rootPseudo == pseudoClass->mAtom) {
|
2001-01-27 08:48:41 +03:00
|
|
|
if (data.mParentContent) {
|
1999-10-14 04:59:21 +04:00
|
|
|
result = PR_FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (nsCSSAtoms::langPseudo == pseudoClass->mAtom) {
|
|
|
|
// XXX not yet implemented
|
|
|
|
result = PR_FALSE;
|
|
|
|
}
|
|
|
|
else if (IsEventPseudo(pseudoClass->mAtom)) {
|
2000-03-31 11:08:36 +04:00
|
|
|
// check if the element is event-sensitive
|
|
|
|
|
|
|
|
// Quirk Mode: check to see if the element is event-sensitive
|
|
|
|
// - see if the selector applies to event pseudo classes
|
|
|
|
// NOTE: we distinguish between global and subjected selectors so
|
|
|
|
// pass that information on to the determining routine
|
|
|
|
PRBool isSelectorGlobal = aSelector->mTag==nsnull ? PR_TRUE : PR_FALSE;
|
2001-01-27 08:48:41 +03:00
|
|
|
if ((data.mIsQuirkMode) &&
|
|
|
|
(!IsEventSensitive(pseudoClass->mAtom, data.mContentTag, isSelectorGlobal))){
|
2000-03-31 11:08:36 +04:00
|
|
|
result = PR_FALSE;
|
|
|
|
} else if (aTestState) {
|
1999-10-14 04:59:21 +04:00
|
|
|
if (nsCSSAtoms::activePseudo == pseudoClass->mAtom) {
|
2001-01-27 08:48:41 +03:00
|
|
|
result = PRBool(0 != (data.mEventState & NS_EVENT_STATE_ACTIVE));
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
else if (nsCSSAtoms::focusPseudo == pseudoClass->mAtom) {
|
2001-01-27 08:48:41 +03:00
|
|
|
result = PRBool(0 != (data.mEventState & NS_EVENT_STATE_FOCUS));
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
else if (nsCSSAtoms::hoverPseudo == pseudoClass->mAtom) {
|
2001-01-27 08:48:41 +03:00
|
|
|
result = PRBool(0 != (data.mEventState & NS_EVENT_STATE_HOVER));
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
else if (nsCSSAtoms::dragOverPseudo == pseudoClass->mAtom) {
|
2001-01-27 08:48:41 +03:00
|
|
|
result = PRBool(0 != (data.mEventState & NS_EVENT_STATE_DRAGOVER));
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
2000-03-31 11:08:36 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
else if (IsLinkPseudo(pseudoClass->mAtom)) {
|
2001-01-27 08:48:41 +03:00
|
|
|
if (data.mIsHTMLLink || data.mIsSimpleXLink) {
|
2000-06-08 03:07:57 +04:00
|
|
|
if ((PR_FALSE != result) && (aTestState)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
if (nsCSSAtoms::linkPseudo == pseudoClass->mAtom) {
|
2001-01-27 08:48:41 +03:00
|
|
|
result = PRBool(eLinkState_Unvisited == data.mLinkState);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
else if (nsCSSAtoms::outOfDatePseudo == pseudoClass->mAtom) {
|
2001-01-27 08:48:41 +03:00
|
|
|
result = PRBool(eLinkState_OutOfDate == data.mLinkState);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
else if (nsCSSAtoms::visitedPseudo == pseudoClass->mAtom) {
|
2001-01-27 08:48:41 +03:00
|
|
|
result = PRBool(eLinkState_Visited == data.mLinkState);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = PR_FALSE; // not a link
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = PR_FALSE; // unknown pseudo class
|
|
|
|
}
|
|
|
|
pseudoClass = pseudoClass->mNext;
|
|
|
|
}
|
1999-04-20 04:05:54 +04:00
|
|
|
}
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return result;
|
1999-04-20 04:05:54 +04:00
|
|
|
}
|
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
struct ContentEnumData : public SelectorMatchesData {
|
1999-10-14 04:59:21 +04:00
|
|
|
ContentEnumData(nsIPresContext* aPresContext, nsIContent* aContent,
|
|
|
|
nsIStyleContext* aParentContext, nsISupportsArray* aResults)
|
2001-01-27 08:48:41 +03:00
|
|
|
: SelectorMatchesData(aPresContext,aContent,aParentContext,aResults)
|
|
|
|
{}
|
1999-05-27 03:55:12 +04:00
|
|
|
};
|
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
static PRBool SelectorMatchesTree(SelectorMatchesData &data,
|
1999-10-14 04:59:21 +04:00
|
|
|
nsCSSSelector* aSelector)
|
1999-05-27 03:55:12 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsCSSSelector* selector = aSelector;
|
|
|
|
|
|
|
|
if (selector) {
|
|
|
|
nsIContent* content = nsnull;
|
2001-01-27 08:48:41 +03:00
|
|
|
nsIContent* lastContent = data.mContent;
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_ADDREF(lastContent);
|
|
|
|
while (nsnull != selector) { // check compound selectors
|
2000-04-22 04:47:18 +04:00
|
|
|
// for adjacent sibling combinators, the content to test against the
|
|
|
|
// selector is the previous sibling
|
|
|
|
if (PRUnichar('+') == selector->mOperator) {
|
1999-10-14 04:59:21 +04:00
|
|
|
nsIContent* parent;
|
|
|
|
PRInt32 index;
|
|
|
|
lastContent->GetParent(parent);
|
|
|
|
if (parent) {
|
|
|
|
parent->IndexOf(lastContent, index);
|
|
|
|
while (0 <= --index) { // skip text & comment nodes
|
|
|
|
parent->ChildAt(index, content);
|
|
|
|
nsIAtom* tag;
|
|
|
|
content->GetTag(tag);
|
|
|
|
if ((tag != nsLayoutAtoms::textTagName) &&
|
|
|
|
(tag != nsLayoutAtoms::commentTagName)) {
|
|
|
|
NS_IF_RELEASE(tag);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NS_RELEASE(content);
|
|
|
|
NS_IF_RELEASE(tag);
|
|
|
|
}
|
|
|
|
NS_RELEASE(parent);
|
|
|
|
}
|
|
|
|
}
|
2000-04-22 04:47:18 +04:00
|
|
|
// for descendant combinators and child combinators, the content
|
|
|
|
// to test against is the parent
|
|
|
|
else {
|
1999-10-14 04:59:21 +04:00
|
|
|
lastContent->GetParent(content);
|
|
|
|
}
|
|
|
|
if (! content) {
|
|
|
|
break;
|
|
|
|
}
|
2001-01-27 08:48:41 +03:00
|
|
|
// create a mew SelectorMatches data with the new content
|
|
|
|
// - NOTE - have to create a new one due to recursion
|
|
|
|
nsCompatibility compat = data.mIsQuirkMode ? eCompatibility_NavQuirks : eCompatibility_Standard;
|
|
|
|
SelectorMatchesData newdata(data.mPresContext, content, data.mParentContext,
|
|
|
|
data.mResults, &compat);
|
|
|
|
if (SelectorMatches(newdata, selector, PR_TRUE)) {
|
2000-04-22 04:47:18 +04:00
|
|
|
// to avoid greedy matching, we need to recurse if this is a
|
|
|
|
// descendant combinator and the next combinator is not
|
|
|
|
if ((NS_IS_GREEDY_OPERATOR(selector->mOperator)) &&
|
|
|
|
(selector->mNext) &&
|
|
|
|
(!NS_IS_GREEDY_OPERATOR(selector->mNext->mOperator))) {
|
|
|
|
|
|
|
|
// pretend the selector didn't match, and step through content
|
|
|
|
// while testing the same selector
|
|
|
|
|
|
|
|
// This approach is slightly strange is that when it recurses
|
|
|
|
// it tests from the top of the content tree, down. This
|
|
|
|
// doesn't matter much for performance since most selectors
|
|
|
|
// don't match. (If most did, it might be faster...)
|
2001-01-27 08:48:41 +03:00
|
|
|
if (SelectorMatchesTree(newdata, selector)) {
|
2000-04-22 04:47:18 +04:00
|
|
|
selector = nsnull; // indicate success
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
selector = selector->mNext;
|
|
|
|
}
|
|
|
|
else {
|
2000-04-22 04:47:18 +04:00
|
|
|
// for adjacent sibling and child combinators, if we didn't find
|
|
|
|
// a match, we're done
|
|
|
|
if (!NS_IS_GREEDY_OPERATOR(selector->mOperator)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_RELEASE(content);
|
|
|
|
break; // parent was required to match
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_IF_RELEASE(lastContent);
|
|
|
|
lastContent = content; // take refcount
|
|
|
|
content = nsnull;
|
|
|
|
}
|
|
|
|
NS_IF_RELEASE(lastContent);
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return PRBool(nsnull == selector); // matches if ran out of selectors
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static void ContentEnumFunc(nsICSSStyleRule* aRule, void* aData)
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
ContentEnumData* data = (ContentEnumData*)aData;
|
1998-05-21 00:34:17 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
nsCSSSelector* selector = aRule->FirstSelector();
|
2001-01-27 08:48:41 +03:00
|
|
|
if (SelectorMatches(*data, selector, PR_TRUE)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
selector = selector->mNext;
|
2001-01-27 08:48:41 +03:00
|
|
|
if (SelectorMatchesTree(*data, selector)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
nsIStyleRule* iRule;
|
2001-01-04 23:44:42 +03:00
|
|
|
if (NS_OK == aRule->QueryInterface(NS_GET_IID(nsIStyleRule), (void**)&iRule)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
data->mResults->AppendElement(iRule);
|
|
|
|
NS_RELEASE(iRule);
|
|
|
|
iRule = aRule->GetImportantRule();
|
|
|
|
if (nsnull != iRule) {
|
|
|
|
data->mResults->AppendElement(iRule);
|
|
|
|
NS_RELEASE(iRule);
|
|
|
|
}
|
|
|
|
}
|
1999-06-10 09:29:22 +04:00
|
|
|
}
|
|
|
|
}
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
#ifdef DEBUG_RULES
|
|
|
|
static PRBool ContentEnumWrap(nsISupports* aRule, void* aData)
|
1999-05-27 03:55:12 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
ContentEnumFunc((nsICSSStyleRule*)aRule, aData);
|
|
|
|
return PR_TRUE;
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
1999-06-15 10:20:46 +04:00
|
|
|
#endif
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSRuleProcessor::RulesMatching(nsIPresContext* aPresContext,
|
|
|
|
nsIAtom* aMedium,
|
|
|
|
nsIContent* aContent,
|
|
|
|
nsIStyleContext* aParentContext,
|
|
|
|
nsISupportsArray* aResults)
|
1999-06-15 10:20:46 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_PRECONDITION(nsnull != aPresContext, "null arg");
|
|
|
|
NS_PRECONDITION(nsnull != aContent, "null arg");
|
|
|
|
NS_PRECONDITION(nsnull != aResults, "null arg");
|
1999-06-15 10:20:46 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
RuleCascadeData* cascade = GetRuleCascade(aMedium);
|
|
|
|
|
|
|
|
if (cascade) {
|
|
|
|
nsIAtom* idAtom = nsnull;
|
1999-12-01 06:27:25 +03:00
|
|
|
nsAutoVoidArray classArray;
|
1999-06-15 10:20:46 +04:00
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
// setup the ContentEnumData
|
|
|
|
ContentEnumData data(aPresContext, aContent, aParentContext, aResults);
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
nsIStyledContent* styledContent;
|
2000-02-03 01:24:56 +03:00
|
|
|
if (NS_SUCCEEDED(aContent->QueryInterface(NS_GET_IID(nsIStyledContent), (void**)&styledContent))) {
|
1999-10-14 04:59:21 +04:00
|
|
|
styledContent->GetID(idAtom);
|
|
|
|
styledContent->GetClasses(classArray);
|
|
|
|
NS_RELEASE(styledContent);
|
1999-06-15 10:20:46 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
cascade->mRuleHash.EnumerateAllRules(data.mContentTag, idAtom, classArray, ContentEnumFunc, &data);
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG_RULES
|
|
|
|
nsISupportsArray* list1;
|
|
|
|
nsISupportsArray* list2;
|
|
|
|
NS_NewISupportsArray(&list1);
|
|
|
|
NS_NewISupportsArray(&list2);
|
|
|
|
|
|
|
|
data.mResults = list1;
|
2001-01-27 08:48:41 +03:00
|
|
|
cascade->mRuleHash.EnumerateAllRules(data.mContentTag, idAtom, classArray, ContentEnumFunc, &data);
|
1999-10-14 04:59:21 +04:00
|
|
|
data.mResults = list2;
|
|
|
|
cascade->mWeightedRules->EnumerateBackwards(ContentEnumWrap, &data);
|
|
|
|
NS_ASSERTION(list1->Equals(list2), "lists not equal");
|
|
|
|
NS_RELEASE(list1);
|
|
|
|
NS_RELEASE(list2);
|
1999-06-15 10:20:46 +04:00
|
|
|
#endif
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
NS_IF_RELEASE(idAtom);
|
1999-06-15 10:20:46 +04:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
struct PseudoEnumData : public SelectorMatchesData {
|
1999-10-14 04:59:21 +04:00
|
|
|
PseudoEnumData(nsIPresContext* aPresContext, nsIContent* aParentContent,
|
|
|
|
nsIAtom* aPseudoTag, nsIStyleContext* aParentContext,
|
2001-02-16 00:25:31 +03:00
|
|
|
nsICSSPseudoComparator* aComparator,
|
1999-10-14 04:59:21 +04:00
|
|
|
nsISupportsArray* aResults)
|
2001-01-27 08:48:41 +03:00
|
|
|
: SelectorMatchesData(aPresContext, aParentContent, aParentContext, aResults)
|
1999-10-14 04:59:21 +04:00
|
|
|
{
|
|
|
|
mPseudoTag = aPseudoTag;
|
2001-02-16 00:25:31 +03:00
|
|
|
mComparator = aComparator;
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
|
2001-02-16 00:25:31 +03:00
|
|
|
nsIAtom* mPseudoTag;
|
|
|
|
nsICSSPseudoComparator* mComparator;
|
1999-10-14 04:59:21 +04:00
|
|
|
};
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static void PseudoEnumFunc(nsICSSStyleRule* aRule, void* aData)
|
1999-05-27 03:55:12 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
PseudoEnumData* data = (PseudoEnumData*)aData;
|
1999-05-27 03:55:12 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
nsCSSSelector* selector = aRule->FirstSelector();
|
2001-02-16 00:25:31 +03:00
|
|
|
|
|
|
|
PRBool matches = (selector->mTag == data->mPseudoTag);
|
|
|
|
if (data->mComparator)
|
|
|
|
data->mComparator->PseudoMatches(data->mPseudoTag, selector, &matches);
|
|
|
|
|
|
|
|
if (matches) {
|
1999-10-14 04:59:21 +04:00
|
|
|
selector = selector->mNext;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (selector) { // test next selector specially
|
|
|
|
if (PRUnichar('+') == selector->mOperator) {
|
|
|
|
return; // not valid here, can't match
|
|
|
|
}
|
2001-01-27 08:48:41 +03:00
|
|
|
if (SelectorMatches(*data, selector, PR_TRUE)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
selector = selector->mNext;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (PRUnichar('>') == selector->mOperator) {
|
|
|
|
return; // immediate parent didn't match
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
if (selector &&
|
2001-01-27 08:48:41 +03:00
|
|
|
(! SelectorMatchesTree(*data, selector))) {
|
1999-10-14 04:59:21 +04:00
|
|
|
return; // remaining selectors didn't match
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIStyleRule* iRule;
|
2001-01-04 23:44:42 +03:00
|
|
|
if (NS_OK == aRule->QueryInterface(NS_GET_IID(nsIStyleRule), (void**)&iRule)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
data->mResults->AppendElement(iRule);
|
|
|
|
NS_RELEASE(iRule);
|
|
|
|
iRule = aRule->GetImportantRule();
|
|
|
|
if (nsnull != iRule) {
|
|
|
|
data->mResults->AppendElement(iRule);
|
|
|
|
NS_RELEASE(iRule);
|
|
|
|
}
|
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
#ifdef DEBUG_RULES
|
|
|
|
static PRBool PseudoEnumWrap(nsISupports* aRule, void* aData)
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
PseudoEnumFunc((nsICSSStyleRule*)aRule, aData);
|
|
|
|
return PR_TRUE;
|
1998-11-26 04:34:53 +03:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
#endif
|
1998-11-26 04:34:53 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSRuleProcessor::RulesMatching(nsIPresContext* aPresContext,
|
|
|
|
nsIAtom* aMedium,
|
|
|
|
nsIContent* aParentContent,
|
|
|
|
nsIAtom* aPseudoTag,
|
|
|
|
nsIStyleContext* aParentContext,
|
2001-02-16 00:25:31 +03:00
|
|
|
nsICSSPseudoComparator* aComparator,
|
1999-10-14 04:59:21 +04:00
|
|
|
nsISupportsArray* aResults)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_PRECONDITION(nsnull != aPresContext, "null arg");
|
|
|
|
NS_PRECONDITION(nsnull != aPseudoTag, "null arg");
|
|
|
|
NS_PRECONDITION(nsnull != aResults, "null arg");
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
RuleCascadeData* cascade = GetRuleCascade(aMedium);
|
1998-11-17 05:14:38 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (cascade) {
|
2001-02-16 00:25:31 +03:00
|
|
|
PseudoEnumData data(aPresContext, aParentContent, aPseudoTag, aParentContext, aComparator, aResults);
|
1999-10-14 04:59:21 +04:00
|
|
|
cascade->mRuleHash.EnumerateTagRules(aPseudoTag, PseudoEnumFunc, &data);
|
1998-11-17 05:14:38 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
#ifdef DEBUG_RULES
|
|
|
|
nsISupportsArray* list1;
|
|
|
|
nsISupportsArray* list2;
|
|
|
|
NS_NewISupportsArray(&list1);
|
|
|
|
NS_NewISupportsArray(&list2);
|
|
|
|
data.mResults = list1;
|
|
|
|
cascade->mRuleHash.EnumerateTagRules(aPseudoTag, PseudoEnumFunc, &data);
|
|
|
|
data.mResults = list2;
|
|
|
|
cascade->mWeightedRules->EnumerateBackwards(PseudoEnumWrap, &data);
|
|
|
|
NS_ASSERTION(list1->Equals(list2), "lists not equal");
|
|
|
|
NS_RELEASE(list1);
|
|
|
|
NS_RELEASE(list2);
|
|
|
|
#endif
|
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
struct StateEnumData : public SelectorMatchesData {
|
1999-10-14 04:59:21 +04:00
|
|
|
StateEnumData(nsIPresContext* aPresContext, nsIContent* aContent)
|
2001-01-27 08:48:41 +03:00
|
|
|
: SelectorMatchesData(aPresContext, aContent, nsnull, nsnull)
|
|
|
|
{ }
|
1999-10-14 04:59:21 +04:00
|
|
|
};
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static
|
2000-05-03 03:07:11 +04:00
|
|
|
PRBool PR_CALLBACK StateEnumFunc(void* aSelector, void* aData)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
StateEnumData* data = (StateEnumData*)aData;
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
nsCSSSelector* selector = (nsCSSSelector*)aSelector;
|
2001-01-27 08:48:41 +03:00
|
|
|
if (SelectorMatches(*data, selector, PR_FALSE)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
selector = selector->mNext;
|
2001-01-27 08:48:41 +03:00
|
|
|
if (SelectorMatchesTree(*data, selector)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_FALSE;
|
1999-06-28 01:16:16 +04:00
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSRuleProcessor::HasStateDependentStyle(nsIPresContext* aPresContext,
|
|
|
|
nsIAtom* aMedium,
|
|
|
|
nsIContent* aContent)
|
|
|
|
{
|
|
|
|
PRBool isStateful = PR_FALSE;
|
|
|
|
|
|
|
|
RuleCascadeData* cascade = GetRuleCascade(aMedium);
|
|
|
|
|
|
|
|
if (cascade) {
|
|
|
|
// look up content in state rule list
|
|
|
|
StateEnumData data(aPresContext, aContent);
|
|
|
|
isStateful = (! cascade->mStateSelectors.EnumerateForwards(StateEnumFunc, &data)); // if stopped, have state
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
return ((isStateful) ? NS_OK : NS_COMFALSE);
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
2000-03-31 11:08:36 +04:00
|
|
|
|
|
|
|
struct CascadeSizeEnumData {
|
|
|
|
|
|
|
|
CascadeSizeEnumData(nsISizeOfHandler *aSizeOfHandler,
|
|
|
|
nsUniqueStyleItems *aUniqueStyleItem,
|
|
|
|
nsIAtom *aTag)
|
|
|
|
{
|
|
|
|
handler = aSizeOfHandler;
|
|
|
|
uniqueItems = aUniqueStyleItem;
|
|
|
|
tag = aTag;
|
|
|
|
}
|
|
|
|
// weak references all 'round
|
|
|
|
|
|
|
|
nsISizeOfHandler *handler;
|
|
|
|
nsUniqueStyleItems *uniqueItems;
|
|
|
|
nsIAtom *tag;
|
|
|
|
};
|
|
|
|
|
|
|
|
static
|
2000-05-03 03:07:11 +04:00
|
|
|
PRBool PR_CALLBACK StateSelectorsSizeEnumFunc( void *aSelector, void *aData )
|
2000-03-31 11:08:36 +04:00
|
|
|
{
|
|
|
|
nsCSSSelector* selector = (nsCSSSelector*)aSelector;
|
|
|
|
CascadeSizeEnumData *pData = (CascadeSizeEnumData *)aData;
|
|
|
|
NS_ASSERTION(selector && pData, "null arguments not supported");
|
|
|
|
|
|
|
|
if(! pData->uniqueItems->AddItem((void*)selector)){
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// pass the call to the selector
|
|
|
|
PRUint32 localSize = 0;
|
|
|
|
selector->SizeOf(pData->handler, localSize);
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
2000-05-31 18:09:34 +04:00
|
|
|
PRBool WeightedRulesSizeEnumFunc( nsISupports *aRule, void *aData )
|
2000-03-31 11:08:36 +04:00
|
|
|
{
|
|
|
|
nsICSSStyleRule* rule = (nsICSSStyleRule*)aRule;
|
|
|
|
CascadeSizeEnumData *pData = (CascadeSizeEnumData *)aData;
|
|
|
|
NS_ASSERTION(rule && pData, "null arguments not supported");
|
|
|
|
|
|
|
|
if(! pData->uniqueItems->AddItem((void*)rule)){
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 localSize=0;
|
|
|
|
|
|
|
|
// pass the call to the rule
|
|
|
|
rule->SizeOf(pData->handler, localSize);
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
2000-05-03 03:07:11 +04:00
|
|
|
PRBool PR_CALLBACK CascadeSizeEnumFunc(nsHashKey* aKey, void *aCascade, void *aData)
|
2000-03-31 11:08:36 +04:00
|
|
|
{
|
|
|
|
RuleCascadeData* cascade = (RuleCascadeData *) aCascade;
|
|
|
|
CascadeSizeEnumData *pData = (CascadeSizeEnumData *)aData;
|
|
|
|
NS_ASSERTION(cascade && pData, "null arguments not supported");
|
|
|
|
|
|
|
|
// see if the cascade has already been counted
|
|
|
|
if(!(pData->uniqueItems->AddItem(cascade))){
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
// record the size of the cascade data itself
|
|
|
|
PRUint32 localSize = sizeof(RuleCascadeData);
|
|
|
|
pData->handler->AddSize(pData->tag, localSize);
|
|
|
|
|
|
|
|
// next add up the selectors and the weighted rules for the cascade
|
|
|
|
nsCOMPtr<nsIAtom> stateSelectorSizeTag;
|
|
|
|
stateSelectorSizeTag = getter_AddRefs(NS_NewAtom("CascadeStateSelectors"));
|
|
|
|
CascadeSizeEnumData stateData(pData->handler,pData->uniqueItems,stateSelectorSizeTag);
|
|
|
|
cascade->mStateSelectors.EnumerateForwards(StateSelectorsSizeEnumFunc, &stateData);
|
|
|
|
|
|
|
|
if(cascade->mWeightedRules){
|
|
|
|
nsCOMPtr<nsIAtom> weightedRulesSizeTag;
|
|
|
|
weightedRulesSizeTag = getter_AddRefs(NS_NewAtom("CascadeWeightedRules"));
|
2000-04-23 23:06:37 +04:00
|
|
|
CascadeSizeEnumData stateData2(pData->handler,pData->uniqueItems,weightedRulesSizeTag);
|
|
|
|
cascade->mWeightedRules->EnumerateForwards(WeightedRulesSizeEnumFunc, &stateData2);
|
2000-03-31 11:08:36 +04:00
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* SizeOf method:
|
|
|
|
*
|
|
|
|
* Self (reported as CSSRuleProcessor's size):
|
|
|
|
* 1) sizeof(*this) + mMediumCascadeTable hashtable overhead
|
|
|
|
*
|
|
|
|
* Contained / Aggregated data (not reported as CSSRuleProcessor's size):
|
|
|
|
* 1) Delegate to the StyleSheets in the mSheets collection
|
|
|
|
* 2) Delegate to the Rules in the CascadeTable
|
|
|
|
*
|
|
|
|
* Children / siblings / parents:
|
|
|
|
* none
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
void CSSRuleProcessor::SizeOf(nsISizeOfHandler *aSizeOfHandler, PRUint32 &aSize)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aSizeOfHandler != nsnull, "SizeOf handler cannot be null");
|
|
|
|
|
|
|
|
// first get the unique items collection
|
|
|
|
UNIQUE_STYLE_ITEMS(uniqueItems);
|
|
|
|
if(! uniqueItems->AddItem((void*)this)){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 localSize=0;
|
|
|
|
|
|
|
|
// create a tag for this instance
|
|
|
|
nsCOMPtr<nsIAtom> tag;
|
|
|
|
tag = getter_AddRefs(NS_NewAtom("CSSRuleProcessor"));
|
|
|
|
// get the size of an empty instance and add to the sizeof handler
|
|
|
|
aSize = sizeof(CSSRuleProcessor);
|
|
|
|
|
|
|
|
// collect sizes for the data
|
|
|
|
// - mSheets
|
|
|
|
// - mMediumCascadeTable
|
|
|
|
|
|
|
|
// sheets first
|
|
|
|
if(mSheets && uniqueItems->AddItem(mSheets)){
|
2000-04-23 23:06:37 +04:00
|
|
|
PRUint32 sheetCount, curSheet, localSize2;
|
2000-03-31 11:08:36 +04:00
|
|
|
mSheets->Count(&sheetCount);
|
|
|
|
for(curSheet=0; curSheet < sheetCount; curSheet++){
|
|
|
|
nsICSSStyleSheet *pSheet = (nsICSSStyleSheet *)mSheets->ElementAt(curSheet);
|
|
|
|
if(pSheet && uniqueItems->AddItem((void*)pSheet)){
|
2000-04-23 23:06:37 +04:00
|
|
|
pSheet->SizeOf(aSizeOfHandler, localSize2);
|
|
|
|
// XXX aSize += localSize2;
|
2000-03-31 11:08:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// and for the medium cascade table we account for the hash table overhead,
|
|
|
|
// and then compute the sizeof each rule-cascade in the table
|
|
|
|
if(mMediumCascadeTable){
|
|
|
|
PRUint32 count;
|
|
|
|
count = mMediumCascadeTable->Count();
|
|
|
|
localSize = sizeof(PLHashTable);
|
|
|
|
if(count > 0){
|
|
|
|
aSize += sizeof(PLHashEntry) * count;
|
|
|
|
// now go ghrough each RuleCascade in the table
|
2000-04-23 23:06:37 +04:00
|
|
|
nsCOMPtr<nsIAtom> tag2 = getter_AddRefs(NS_NewAtom("RuleCascade"));
|
|
|
|
CascadeSizeEnumData data(aSizeOfHandler, uniqueItems, tag2);
|
2000-03-31 11:08:36 +04:00
|
|
|
mMediumCascadeTable->Enumerate(CascadeSizeEnumFunc, &data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// now add the size of the RuleProcessor
|
|
|
|
aSizeOfHandler->AddSize(tag,aSize);
|
|
|
|
}
|
|
|
|
|
2000-05-03 03:07:11 +04:00
|
|
|
static PRBool PR_CALLBACK DeleteRuleCascade(nsHashKey* aKey, void* aValue, void* closure)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
delete ((RuleCascadeData*)aValue);
|
|
|
|
return PR_TRUE;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1998-11-26 04:34:53 +03:00
|
|
|
NS_IMETHODIMP
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSRuleProcessor::ClearRuleCascades(void)
|
1998-11-26 04:34:53 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mMediumCascadeTable) {
|
|
|
|
mMediumCascadeTable->Enumerate(DeleteRuleCascade, nsnull);
|
|
|
|
delete mMediumCascadeTable;
|
|
|
|
mMediumCascadeTable = nsnull;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static
|
|
|
|
PRBool BuildHashEnum(nsISupports* aRule, void* aHash)
|
|
|
|
{
|
|
|
|
nsICSSStyleRule* rule = (nsICSSStyleRule*)aRule;
|
|
|
|
RuleHash* hash = (RuleHash*)aHash;
|
|
|
|
hash->AppendRule(rule);
|
|
|
|
return PR_TRUE;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static
|
|
|
|
PRBool IsStateSelector(nsCSSSelector& aSelector)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsAtomList* pseudoClass = aSelector.mPseudoClassList;
|
|
|
|
while (pseudoClass) {
|
|
|
|
if ((pseudoClass->mAtom == nsCSSAtoms::activePseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::checkedPseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::disabledPseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::dragOverPseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::dragPseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::enabledPseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::focusPseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::hoverPseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::linkPseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::outOfDatePseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::selectionPseudo) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSAtoms::visitedPseudo)) {
|
|
|
|
return PR_TRUE;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
pseudoClass = pseudoClass->mNext;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_FALSE;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static
|
|
|
|
PRBool BuildStateEnum(nsISupports* aRule, void* aArray)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsICSSStyleRule* rule = (nsICSSStyleRule*)aRule;
|
|
|
|
nsVoidArray* array = (nsVoidArray*)aArray;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
nsCSSSelector* selector = rule->FirstSelector();
|
1999-06-03 05:57:52 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
while (selector) {
|
|
|
|
if (IsStateSelector(*selector)) {
|
|
|
|
array->AppendElement(selector);
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
selector = selector->mNext;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_TRUE;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
struct CascadeEnumData {
|
|
|
|
CascadeEnumData(nsIAtom* aMedium, nsISupportsArray* aRules)
|
|
|
|
: mMedium(aMedium),
|
|
|
|
mRules(aRules)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
nsIAtom* mMedium;
|
|
|
|
nsISupportsArray* mRules;
|
|
|
|
};
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
struct WeightEnumData {
|
|
|
|
WeightEnumData(PRInt32 aWeight)
|
|
|
|
: mWeight(aWeight),
|
|
|
|
mIndex(0)
|
|
|
|
{
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
PRInt32 mWeight;
|
|
|
|
PRInt32 mIndex;
|
|
|
|
};
|
1998-10-06 05:39:33 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static PRBool
|
|
|
|
FindEndOfWeight(nsISupports* aRule, void* aData)
|
|
|
|
{
|
|
|
|
nsICSSStyleRule* rule = (nsICSSStyleRule*)aRule;
|
|
|
|
WeightEnumData* data = (WeightEnumData*)aData;
|
|
|
|
if (rule->GetWeight() <= data->mWeight) {
|
|
|
|
return PR_FALSE; // stop loop
|
|
|
|
}
|
|
|
|
data->mIndex++;
|
|
|
|
return PR_TRUE;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static PRBool
|
|
|
|
InsertRuleByWeight(nsISupports* aRule, void* aData)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsICSSRule* rule = (nsICSSRule*)aRule;
|
|
|
|
CascadeEnumData* data = (CascadeEnumData*)aData;
|
|
|
|
PRInt32 type;
|
|
|
|
rule->GetType(type);
|
|
|
|
|
|
|
|
if (nsICSSRule::STYLE_RULE == type) {
|
|
|
|
nsICSSStyleRule* styleRule = (nsICSSStyleRule*)rule;
|
|
|
|
|
|
|
|
WeightEnumData weight(styleRule->GetWeight());
|
|
|
|
data->mRules->EnumerateForwards(FindEndOfWeight, &weight);
|
|
|
|
|
|
|
|
data->mRules->InsertElementAt(styleRule, weight.mIndex);
|
|
|
|
}
|
|
|
|
else if (nsICSSRule::MEDIA_RULE == type) {
|
|
|
|
nsICSSMediaRule* mediaRule = (nsICSSMediaRule*)rule;
|
|
|
|
if (NS_OK == mediaRule->UseForMedium(data->mMedium)) {
|
|
|
|
mediaRule->EnumerateRulesForwards(InsertRuleByWeight, aData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
1998-12-03 23:20:35 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
PRBool
|
|
|
|
CSSRuleProcessor::CascadeSheetRulesInto(nsISupports* aSheet, void* aData)
|
1998-12-03 23:20:35 +03:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
nsICSSStyleSheet* iSheet = (nsICSSStyleSheet*)aSheet;
|
|
|
|
CSSStyleSheetImpl* sheet = (CSSStyleSheetImpl*)iSheet;
|
|
|
|
CascadeEnumData* data = (CascadeEnumData*)aData;
|
2000-06-03 01:45:06 +04:00
|
|
|
PRBool bSheetEnabled = PR_TRUE;
|
|
|
|
sheet->GetEnabled(bSheetEnabled);
|
1998-12-03 23:20:35 +03:00
|
|
|
|
2000-06-03 01:45:06 +04:00
|
|
|
if ((bSheetEnabled) && (NS_OK == sheet->UseForMedium(data->mMedium))) {
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl* child = sheet->mFirstChild;
|
|
|
|
while (child) {
|
|
|
|
CascadeSheetRulesInto((nsICSSStyleSheet*)child, data);
|
|
|
|
child = child->mNext;
|
|
|
|
}
|
1998-12-03 23:20:35 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (sheet->mInner && sheet->mInner->mOrderedRules) {
|
|
|
|
sheet->mInner->mOrderedRules->EnumerateForwards(InsertRuleByWeight, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
1998-12-03 23:20:35 +03:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
RuleCascadeData*
|
|
|
|
CSSRuleProcessor::GetRuleCascade(nsIAtom* aMedium)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
AtomKey mediumKey(aMedium);
|
|
|
|
RuleCascadeData* cascade = nsnull;
|
|
|
|
|
|
|
|
if (mMediumCascadeTable) {
|
|
|
|
cascade = (RuleCascadeData*)mMediumCascadeTable->Get(&mediumKey);
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (! cascade) {
|
|
|
|
if (mSheets) {
|
|
|
|
if (! mMediumCascadeTable) {
|
|
|
|
mMediumCascadeTable = new nsHashtable();
|
|
|
|
}
|
|
|
|
if (mMediumCascadeTable) {
|
|
|
|
cascade = new RuleCascadeData();
|
|
|
|
if (cascade) {
|
|
|
|
mMediumCascadeTable->Put(&mediumKey, cascade);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
CascadeEnumData data(aMedium, cascade->mWeightedRules);
|
|
|
|
mSheets->EnumerateForwards(CascadeSheetRulesInto, &data);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
cascade->mWeightedRules->EnumerateBackwards(BuildHashEnum, &(cascade->mRuleHash));
|
|
|
|
cascade->mWeightedRules->EnumerateBackwards(BuildStateEnum, &(cascade->mStateSelectors));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cascade;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|