2001-09-25 05:32:19 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2003-02-22 19:10:53 +03:00
|
|
|
// vim:cindent:tabstop=2:expandtab:shiftwidth=2:
|
2001-09-25 05:32:19 +04:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
2001-09-25 05:32:19 +04: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
|
|
|
*
|
2001-09-25 05:32:19 +04: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.
|
|
|
|
*
|
2001-09-25 05:32:19 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-25 05:32:19 +04:00
|
|
|
* Contributor(s):
|
2000-02-03 01:24:56 +03:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
2001-02-13 17:06:29 +03:00
|
|
|
* Daniel Glazman <glazman@netscape.com>
|
2001-09-25 05:32:19 +04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-02-27 04:35:51 +03:00
|
|
|
|
2001-08-14 11:59:59 +04:00
|
|
|
#include "nscore.h"
|
2002-03-22 09:28:16 +03:00
|
|
|
|
|
|
|
#define PL_ARENA_CONST_ALIGN_MASK 7
|
|
|
|
#define NS_RULEHASH_ARENA_BLOCK_SIZE (256)
|
|
|
|
#include "plarena.h"
|
|
|
|
|
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"
|
2002-05-29 04:49:44 +04:00
|
|
|
#include "pldhash.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"
|
2001-08-05 01:19:53 +04:00
|
|
|
#include "nsIMediaList.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsIHTMLContent.h"
|
1998-05-19 04:09:29 +04:00
|
|
|
#include "nsIDocument.h"
|
2001-09-05 04:00:18 +04:00
|
|
|
#include "nsIHTMLContentContainer.h"
|
1998-05-19 04:09:29 +04:00
|
|
|
#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"
|
2001-09-29 12:28:41 +04:00
|
|
|
#include "nsReadableUtils.h"
|
2001-10-13 04:16:32 +04:00
|
|
|
#include "nsUnicharUtils.h"
|
1998-11-26 04:34:53 +03:00
|
|
|
#include "nsVoidArray.h"
|
2001-01-27 19:58:15 +03:00
|
|
|
#include "nsIUnicharInputStream.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"
|
2002-03-13 13:12:33 +03:00
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
2002-03-07 06:34:29 +03:00
|
|
|
#include "nsIDOMHTMLOptionElement.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"
|
2002-08-06 09:08:47 +04:00
|
|
|
#include "nsIDOMCSSImportRule.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"
|
2001-03-13 05:34:02 +03:00
|
|
|
#include "nsIPresShell.h"
|
1998-10-06 05:39:33 +04:00
|
|
|
#include "nsICSSParser.h"
|
2001-09-05 04:00:18 +04:00
|
|
|
#include "nsICSSLoader.h"
|
2002-08-06 09:08:47 +04:00
|
|
|
#include "nsICSSLoaderObserver.h"
|
2001-10-24 04:01:09 +04:00
|
|
|
#include "nsRuleWalker.h"
|
2002-11-17 18:37:56 +03:00
|
|
|
#include "nsCSSPseudoClasses.h"
|
1998-12-11 05:50:43 +03:00
|
|
|
#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"
|
2000-07-28 03:17:53 +04:00
|
|
|
#include "nsStyleUtil.h"
|
2001-04-28 06:16:16 +04:00
|
|
|
#include "nsQuickSort.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
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
#include "nsContentUtils.h"
|
2002-06-15 03:54:18 +04:00
|
|
|
#include "nsIJSContextStack.h"
|
|
|
|
#include "nsIScriptSecurityManager.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
|
1998-05-21 00:34:17 +04:00
|
|
|
struct RuleValue {
|
2002-05-29 04:49:44 +04:00
|
|
|
RuleValue(nsICSSStyleRule* aRule, PRInt32 aIndex, RuleValue *aNext)
|
|
|
|
: mRule(aRule), mIndex(aIndex), mNext(aNext) {}
|
2002-03-22 09:28:16 +03:00
|
|
|
|
|
|
|
// CAUTION: ~RuleValue will never get called as RuleValues are arena
|
|
|
|
// allocated and arena cleanup will take care of deleting memory.
|
|
|
|
// Add code to RuleHash::~RuleHash to get it to call the destructor
|
|
|
|
// if any more cleanup needs to happen.
|
1998-05-21 00:34:17 +04:00
|
|
|
~RuleValue(void)
|
|
|
|
{
|
2002-03-22 09:28:16 +03:00
|
|
|
// Rule values are arena allocated. No need for any deletion.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Placement new to arena allocate the RuleValues
|
2002-07-03 00:25:30 +04:00
|
|
|
void *operator new(size_t aSize, PLArenaPool &aArena) CPP_THROW_NEW {
|
2002-03-22 09:28:16 +03:00
|
|
|
void *mem;
|
|
|
|
PL_ARENA_ALLOCATE(mem, &aArena, aSize);
|
|
|
|
return mem;
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsICSSStyleRule* mRule;
|
2002-05-29 04:49:44 +04:00
|
|
|
PRInt32 mIndex; // High index means low weight/order.
|
1998-05-21 00:34:17 +04:00
|
|
|
RuleValue* mNext;
|
|
|
|
};
|
|
|
|
|
|
|
|
// ------------------------------
|
|
|
|
// Rule hash table
|
|
|
|
//
|
|
|
|
|
2002-05-29 04:49:44 +04:00
|
|
|
// Uses any of the sets of ops below.
|
|
|
|
struct RuleHashTableEntry : public PLDHashEntryHdr {
|
|
|
|
RuleValue *mRules; // linked list of |RuleValue|, null-terminated
|
|
|
|
};
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(PLDHashNumber)
|
|
|
|
RuleHash_CIHashKey(PLDHashTable *table, const void *key)
|
|
|
|
{
|
|
|
|
nsIAtom *atom = NS_CONST_CAST(nsIAtom*, NS_STATIC_CAST(const nsIAtom*, key));
|
|
|
|
|
|
|
|
nsAutoString str;
|
|
|
|
atom->ToString(str);
|
|
|
|
ToUpperCase(str);
|
|
|
|
return HashString(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(PRBool)
|
|
|
|
RuleHash_CIMatchEntry(PLDHashTable *table, const PLDHashEntryHdr *hdr,
|
|
|
|
const void *key)
|
|
|
|
{
|
|
|
|
nsIAtom *match_atom = NS_CONST_CAST(nsIAtom*, NS_STATIC_CAST(const nsIAtom*,
|
|
|
|
key));
|
|
|
|
// Use the |getKey| callback to avoid code duplication.
|
|
|
|
// XXX Ugh! Why does |getKey| have different |const|-ness?
|
|
|
|
nsIAtom *entry_atom = NS_CONST_CAST(nsIAtom*, NS_STATIC_CAST(const nsIAtom*,
|
|
|
|
table->ops->getKey(table, NS_CONST_CAST(PLDHashEntryHdr*, hdr))));
|
|
|
|
|
2002-08-14 16:34:39 +04:00
|
|
|
// Check for case-sensitive match first.
|
2002-05-29 04:49:44 +04:00
|
|
|
if (match_atom == entry_atom)
|
|
|
|
return PR_TRUE;
|
|
|
|
|
2003-03-25 21:55:59 +03:00
|
|
|
const char *match_str, *entry_str;
|
|
|
|
match_atom->GetUTF8String(&match_str);
|
|
|
|
entry_atom->GetUTF8String(&entry_str);
|
2002-05-29 04:49:44 +04:00
|
|
|
|
2003-03-25 21:55:59 +03:00
|
|
|
return (nsCRT::strcasecmp(entry_str, match_str) == 0);
|
2002-05-29 04:49:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(PRBool)
|
|
|
|
RuleHash_CSMatchEntry(PLDHashTable *table, const PLDHashEntryHdr *hdr,
|
|
|
|
const void *key)
|
|
|
|
{
|
|
|
|
nsIAtom *match_atom = NS_CONST_CAST(nsIAtom*, NS_STATIC_CAST(const nsIAtom*,
|
|
|
|
key));
|
|
|
|
// Use the |getKey| callback to avoid code duplication.
|
|
|
|
// XXX Ugh! Why does |getKey| have different |const|-ness?
|
|
|
|
nsIAtom *entry_atom = NS_CONST_CAST(nsIAtom*, NS_STATIC_CAST(const nsIAtom*,
|
|
|
|
table->ops->getKey(table, NS_CONST_CAST(PLDHashEntryHdr*, hdr))));
|
|
|
|
|
|
|
|
return match_atom == entry_atom;
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(const void*)
|
|
|
|
RuleHash_TagTable_GetKey(PLDHashTable *table, PLDHashEntryHdr *hdr)
|
|
|
|
{
|
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*, hdr);
|
|
|
|
return entry->mRules->mRule->FirstSelector()->mTag;
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(const void*)
|
|
|
|
RuleHash_ClassTable_GetKey(PLDHashTable *table, PLDHashEntryHdr *hdr)
|
|
|
|
{
|
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*, hdr);
|
|
|
|
return entry->mRules->mRule->FirstSelector()->mClassList->mAtom;
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(const void*)
|
|
|
|
RuleHash_IdTable_GetKey(PLDHashTable *table, PLDHashEntryHdr *hdr)
|
|
|
|
{
|
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*, hdr);
|
|
|
|
return entry->mRules->mRule->FirstSelector()->mIDList->mAtom;
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(const void*)
|
|
|
|
RuleHash_NameSpaceTable_GetKey(PLDHashTable *table, PLDHashEntryHdr *hdr)
|
|
|
|
{
|
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*, hdr);
|
|
|
|
return NS_INT32_TO_PTR(entry->mRules->mRule->FirstSelector()->mNameSpace);
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(PLDHashNumber)
|
|
|
|
RuleHash_NameSpaceTable_HashKey(PLDHashTable *table, const void *key)
|
|
|
|
{
|
|
|
|
return NS_PTR_TO_INT32(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(PRBool)
|
|
|
|
RuleHash_NameSpaceTable_MatchEntry(PLDHashTable *table,
|
|
|
|
const PLDHashEntryHdr *hdr,
|
|
|
|
const void *key)
|
|
|
|
{
|
|
|
|
const RuleHashTableEntry *entry =
|
|
|
|
NS_STATIC_CAST(const RuleHashTableEntry*, hdr);
|
|
|
|
|
|
|
|
return NS_PTR_TO_INT32(key) ==
|
|
|
|
entry->mRules->mRule->FirstSelector()->mNameSpace;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PLDHashTableOps RuleHash_TagTable_Ops = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
RuleHash_TagTable_GetKey,
|
|
|
|
PL_DHashVoidPtrKeyStub,
|
|
|
|
RuleHash_CSMatchEntry,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
PL_DHashClearEntryStub,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
// Case-sensitive ops.
|
|
|
|
static PLDHashTableOps RuleHash_ClassTable_CSOps = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
RuleHash_ClassTable_GetKey,
|
|
|
|
PL_DHashVoidPtrKeyStub,
|
|
|
|
RuleHash_CSMatchEntry,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
PL_DHashClearEntryStub,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
// Case-insensitive ops.
|
|
|
|
static PLDHashTableOps RuleHash_ClassTable_CIOps = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
RuleHash_ClassTable_GetKey,
|
|
|
|
RuleHash_CIHashKey,
|
|
|
|
RuleHash_CIMatchEntry,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
PL_DHashClearEntryStub,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
// Case-sensitive ops.
|
|
|
|
static PLDHashTableOps RuleHash_IdTable_CSOps = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
RuleHash_IdTable_GetKey,
|
|
|
|
PL_DHashVoidPtrKeyStub,
|
|
|
|
RuleHash_CSMatchEntry,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
PL_DHashClearEntryStub,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
// Case-insensitive ops.
|
|
|
|
static PLDHashTableOps RuleHash_IdTable_CIOps = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
RuleHash_IdTable_GetKey,
|
|
|
|
RuleHash_CIHashKey,
|
|
|
|
RuleHash_CIMatchEntry,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
PL_DHashClearEntryStub,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static PLDHashTableOps RuleHash_NameSpaceTable_Ops = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
RuleHash_NameSpaceTable_GetKey,
|
|
|
|
RuleHash_NameSpaceTable_HashKey,
|
|
|
|
RuleHash_NameSpaceTable_MatchEntry,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
PL_DHashClearEntryStub,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2001-06-05 05:00:11 +04:00
|
|
|
#undef RULE_HASH_STATS
|
|
|
|
#undef PRINT_UNIVERSAL_RULES
|
|
|
|
|
|
|
|
#ifdef DEBUG_dbaron
|
|
|
|
#define RULE_HASH_STATS
|
|
|
|
#define PRINT_UNIVERSAL_RULES
|
|
|
|
#endif
|
|
|
|
|
2002-04-16 02:49:26 +04:00
|
|
|
#ifdef RULE_HASH_STATS
|
|
|
|
#define RULE_HASH_STAT_INCREMENT(var_) PR_BEGIN_MACRO ++(var_); PR_END_MACRO
|
|
|
|
#else
|
|
|
|
#define RULE_HASH_STAT_INCREMENT(var_) PR_BEGIN_MACRO PR_END_MACRO
|
|
|
|
#endif
|
|
|
|
|
1998-05-21 00:34:17 +04:00
|
|
|
// Enumerator callback function.
|
|
|
|
typedef void (*RuleEnumFunc)(nsICSSStyleRule* aRule, void *aData);
|
|
|
|
|
|
|
|
class RuleHash {
|
|
|
|
public:
|
2002-05-29 04:49:44 +04:00
|
|
|
RuleHash(PRBool aQuirksMode);
|
|
|
|
~RuleHash();
|
|
|
|
void PrependRule(nsICSSStyleRule* aRule);
|
2001-06-05 05:00:11 +04:00
|
|
|
void EnumerateAllRules(PRInt32 aNameSpace, 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:
|
2002-05-29 04:49:44 +04:00
|
|
|
void PrependRuleToTable(PLDHashTable* aTable, const void* aKey,
|
|
|
|
nsICSSStyleRule* aRule);
|
|
|
|
void PrependUniversalRule(nsICSSStyleRule* aRule);
|
1998-05-21 00:34:17 +04:00
|
|
|
|
2002-03-22 09:28:16 +03:00
|
|
|
// All rule values in these hashtables are arena allocated
|
1998-05-21 00:34:17 +04:00
|
|
|
PRInt32 mRuleCount;
|
2002-05-29 04:49:44 +04:00
|
|
|
PLDHashTable mIdTable;
|
|
|
|
PLDHashTable mClassTable;
|
|
|
|
PLDHashTable mTagTable;
|
|
|
|
PLDHashTable mNameSpaceTable;
|
|
|
|
RuleValue *mUniversalRules;
|
1998-12-11 05:50:43 +03:00
|
|
|
|
|
|
|
RuleValue** mEnumList;
|
|
|
|
PRInt32 mEnumListSize;
|
2001-06-05 05:00:11 +04:00
|
|
|
|
2002-03-22 09:28:16 +03:00
|
|
|
PLArenaPool mArena;
|
|
|
|
|
2001-06-05 05:00:11 +04:00
|
|
|
#ifdef RULE_HASH_STATS
|
|
|
|
PRUint32 mUniversalSelectors;
|
|
|
|
PRUint32 mNameSpaceSelectors;
|
|
|
|
PRUint32 mTagSelectors;
|
|
|
|
PRUint32 mClassSelectors;
|
|
|
|
PRUint32 mIdSelectors;
|
|
|
|
|
|
|
|
PRUint32 mElementsMatched;
|
|
|
|
PRUint32 mPseudosMatched;
|
|
|
|
|
|
|
|
PRUint32 mElementUniversalCalls;
|
|
|
|
PRUint32 mElementNameSpaceCalls;
|
|
|
|
PRUint32 mElementTagCalls;
|
|
|
|
PRUint32 mElementClassCalls;
|
|
|
|
PRUint32 mElementIdCalls;
|
|
|
|
|
|
|
|
PRUint32 mPseudoTagCalls;
|
|
|
|
#endif // RULE_HASH_STATS
|
1998-05-21 00:34:17 +04:00
|
|
|
};
|
|
|
|
|
2002-05-29 04:49:44 +04:00
|
|
|
RuleHash::RuleHash(PRBool aQuirksMode)
|
1998-05-21 00:34:17 +04:00
|
|
|
: mRuleCount(0),
|
2002-05-29 04:49:44 +04:00
|
|
|
mUniversalRules(nsnull),
|
|
|
|
mEnumList(nsnull), mEnumListSize(0)
|
2001-06-05 05:00:11 +04:00
|
|
|
#ifdef RULE_HASH_STATS
|
|
|
|
,
|
|
|
|
mUniversalSelectors(0),
|
|
|
|
mNameSpaceSelectors(0),
|
|
|
|
mTagSelectors(0),
|
|
|
|
mClassSelectors(0),
|
|
|
|
mIdSelectors(0),
|
|
|
|
mElementsMatched(0),
|
|
|
|
mPseudosMatched(0),
|
|
|
|
mElementUniversalCalls(0),
|
|
|
|
mElementNameSpaceCalls(0),
|
|
|
|
mElementTagCalls(0),
|
|
|
|
mElementClassCalls(0),
|
|
|
|
mElementIdCalls(0),
|
|
|
|
mPseudoTagCalls(0)
|
|
|
|
#endif
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
2002-03-22 09:28:16 +03:00
|
|
|
// Initialize our arena
|
|
|
|
PL_INIT_ARENA_POOL(&mArena, "RuleHashArena", NS_RULEHASH_ARENA_BLOCK_SIZE);
|
2002-05-29 04:49:44 +04:00
|
|
|
|
|
|
|
PL_DHashTableInit(&mTagTable, &RuleHash_TagTable_Ops, nsnull,
|
|
|
|
sizeof(RuleHashTableEntry), 64);
|
|
|
|
PL_DHashTableInit(&mIdTable,
|
|
|
|
aQuirksMode ? &RuleHash_IdTable_CIOps
|
|
|
|
: &RuleHash_IdTable_CSOps,
|
|
|
|
nsnull, sizeof(RuleHashTableEntry), 16);
|
|
|
|
PL_DHashTableInit(&mClassTable,
|
|
|
|
aQuirksMode ? &RuleHash_ClassTable_CIOps
|
|
|
|
: &RuleHash_ClassTable_CSOps,
|
|
|
|
nsnull, sizeof(RuleHashTableEntry), 16);
|
|
|
|
PL_DHashTableInit(&mNameSpaceTable, &RuleHash_NameSpaceTable_Ops, nsnull,
|
|
|
|
sizeof(RuleHashTableEntry), 16);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
RuleHash::~RuleHash(void)
|
|
|
|
{
|
2001-06-05 05:00:11 +04:00
|
|
|
#ifdef RULE_HASH_STATS
|
|
|
|
printf(
|
|
|
|
"RuleHash(%p):\n"
|
2002-05-29 04:49:44 +04:00
|
|
|
" Selectors: Universal (%u) NameSpace(%u) Tag(%u) Class(%u) Id(%u)\n"
|
|
|
|
" Content Nodes: Elements(%u) Pseudo-Elements(%u)\n"
|
|
|
|
" Element Calls: Universal(%u) NameSpace(%u) Tag(%u) Class(%u) Id(%u)\n"
|
|
|
|
" Pseudo-Element Calls: Tag(%u)\n",
|
|
|
|
NS_STATIC_CAST(void*, this),
|
2001-06-05 05:00:11 +04:00
|
|
|
mUniversalSelectors, mNameSpaceSelectors, mTagSelectors,
|
|
|
|
mClassSelectors, mIdSelectors,
|
|
|
|
mElementsMatched,
|
|
|
|
mPseudosMatched,
|
|
|
|
mElementUniversalCalls, mElementNameSpaceCalls, mElementTagCalls,
|
|
|
|
mElementClassCalls, mElementIdCalls,
|
|
|
|
mPseudoTagCalls);
|
|
|
|
#ifdef PRINT_UNIVERSAL_RULES
|
|
|
|
{
|
2002-05-29 04:49:44 +04:00
|
|
|
RuleValue* value = mUniversalRules;
|
2001-06-05 05:00:11 +04:00
|
|
|
if (value) {
|
|
|
|
printf(" Universal rules:\n");
|
|
|
|
do {
|
|
|
|
nsAutoString selectorText;
|
|
|
|
PRUint32 lineNumber = value->mRule->GetLineNumber();
|
|
|
|
value->mRule->GetSourceSelectorText(selectorText);
|
|
|
|
printf(" line %d, %s\n",
|
|
|
|
lineNumber, NS_ConvertUCS2toUTF8(selectorText).get());
|
|
|
|
value = value->mNext;
|
2002-05-29 04:49:44 +04:00
|
|
|
} while (value);
|
2001-06-05 05:00:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // PRINT_UNIVERSAL_RULES
|
|
|
|
#endif // RULE_HASH_STATS
|
2002-03-22 09:28:16 +03:00
|
|
|
// Rule Values are arena allocated no need to delete them. Their destructor
|
|
|
|
// isn't doing any cleanup. So we dont even bother to enumerate through
|
|
|
|
// the hash tables and call their destructors.
|
1998-12-11 05:50:43 +03:00
|
|
|
if (nsnull != mEnumList) {
|
|
|
|
delete [] mEnumList;
|
|
|
|
}
|
2002-03-22 09:28:16 +03:00
|
|
|
// delete arena for strings and small objects
|
2002-05-29 04:49:44 +04:00
|
|
|
PL_DHashTableFinish(&mIdTable);
|
|
|
|
PL_DHashTableFinish(&mClassTable);
|
|
|
|
PL_DHashTableFinish(&mTagTable);
|
|
|
|
PL_DHashTableFinish(&mNameSpaceTable);
|
2002-03-22 09:28:16 +03:00
|
|
|
PL_FinishArenaPool(&mArena);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
2002-05-29 04:49:44 +04:00
|
|
|
void RuleHash::PrependRuleToTable(PLDHashTable* aTable,
|
|
|
|
const void* aKey, nsICSSStyleRule* aRule)
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
2002-05-29 04:49:44 +04:00
|
|
|
// Get a new or existing entry.
|
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*,
|
|
|
|
PL_DHashTableOperate(aTable, aKey, PL_DHASH_ADD));
|
|
|
|
if (!entry)
|
|
|
|
return;
|
|
|
|
entry->mRules = new (mArena) RuleValue(aRule, mRuleCount++, entry->mRules);
|
2001-06-05 05:00:11 +04:00
|
|
|
}
|
|
|
|
|
2002-05-29 04:49:44 +04:00
|
|
|
void RuleHash::PrependUniversalRule(nsICSSStyleRule* aRule)
|
2001-06-05 05:00:11 +04:00
|
|
|
{
|
2002-05-29 04:49:44 +04:00
|
|
|
mUniversalRules =
|
|
|
|
new (mArena) RuleValue(aRule, mRuleCount++, mUniversalRules);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
2002-05-29 04:49:44 +04:00
|
|
|
void RuleHash::PrependRule(nsICSSStyleRule* aRule)
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
|
|
|
nsCSSSelector* selector = aRule->FirstSelector();
|
2001-02-13 17:06:29 +03:00
|
|
|
if (nsnull != selector->mIDList) {
|
2002-05-29 04:49:44 +04:00
|
|
|
PrependRuleToTable(&mIdTable, selector->mIDList->mAtom, aRule);
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT(mIdSelectors);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
else if (nsnull != selector->mClassList) {
|
2002-05-29 04:49:44 +04:00
|
|
|
PrependRuleToTable(&mClassTable, selector->mClassList->mAtom, aRule);
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT(mClassSelectors);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
else if (nsnull != selector->mTag) {
|
2002-05-29 04:49:44 +04:00
|
|
|
PrependRuleToTable(&mTagTable, selector->mTag, aRule);
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT(mTagSelectors);
|
2001-06-05 05:00:11 +04:00
|
|
|
}
|
|
|
|
else if (kNameSpaceID_Unknown != selector->mNameSpace) {
|
2002-05-29 04:49:44 +04:00
|
|
|
PrependRuleToTable(&mNameSpaceTable,
|
|
|
|
NS_INT32_TO_PTR(selector->mNameSpace), aRule);
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT(mNameSpaceSelectors);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
else { // universal tag selector
|
2002-05-29 04:49:44 +04:00
|
|
|
PrependUniversalRule(aRule);
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT(mUniversalSelectors);
|
1998-12-11 05:50:43 +03:00
|
|
|
}
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
2001-06-05 05:00:11 +04:00
|
|
|
// this should cover practically all cases so we don't need to reallocate
|
|
|
|
#define MIN_ENUM_LIST_SIZE 8
|
|
|
|
|
2002-04-16 02:49:26 +04:00
|
|
|
#ifdef RULE_HASH_STATS
|
|
|
|
#define RULE_HASH_STAT_INCREMENT_LIST_COUNT(list_, var_) \
|
2002-05-29 04:49:44 +04:00
|
|
|
do { ++(var_); (list_) = (list_)->mNext; } while (list_)
|
2002-04-16 02:49:26 +04:00
|
|
|
#else
|
|
|
|
#define RULE_HASH_STAT_INCREMENT_LIST_COUNT(list_, var_) \
|
|
|
|
PR_BEGIN_MACRO PR_END_MACRO
|
|
|
|
#endif
|
|
|
|
|
2001-06-05 05:00:11 +04:00
|
|
|
void RuleHash::EnumerateAllRules(PRInt32 aNameSpace, 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();
|
2002-05-29 04:49:44 +04:00
|
|
|
// assume 1 universal, tag, id, and namespace, rather than wasting
|
|
|
|
// time counting
|
|
|
|
PRInt32 testCount = classCount + 4;
|
1998-12-11 05:50:43 +03:00
|
|
|
|
|
|
|
if (mEnumListSize < testCount) {
|
|
|
|
delete [] mEnumList;
|
2001-06-05 05:00:11 +04:00
|
|
|
mEnumListSize = PR_MAX(testCount, MIN_ENUM_LIST_SIZE);
|
|
|
|
mEnumList = new RuleValue*[mEnumListSize];
|
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 valueCount = 0;
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT(mElementsMatched);
|
1998-05-21 00:34:17 +04:00
|
|
|
|
2002-05-29 04:49:44 +04:00
|
|
|
{ // universal rules
|
|
|
|
RuleValue* value = mUniversalRules;
|
1998-12-11 05:50:43 +03:00
|
|
|
if (nsnull != value) {
|
|
|
|
mEnumList[valueCount++] = value;
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT_LIST_COUNT(value, mElementUniversalCalls);
|
2001-06-05 05:00:11 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// universal rules within the namespace
|
|
|
|
if (kNameSpaceID_Unknown != aNameSpace) {
|
2002-05-29 04:49:44 +04:00
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*,
|
|
|
|
PL_DHashTableOperate(&mNameSpaceTable, NS_INT32_TO_PTR(aNameSpace),
|
|
|
|
PL_DHASH_LOOKUP));
|
|
|
|
if (PL_DHASH_ENTRY_IS_BUSY(entry)) {
|
|
|
|
RuleValue *value = entry->mRules;
|
2001-06-05 05:00:11 +04:00
|
|
|
mEnumList[valueCount++] = value;
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT_LIST_COUNT(value, mElementNameSpaceCalls);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
}
|
|
|
|
if (nsnull != aTag) {
|
2002-05-29 04:49:44 +04:00
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*,
|
|
|
|
PL_DHashTableOperate(&mTagTable, aTag, PL_DHASH_LOOKUP));
|
|
|
|
if (PL_DHASH_ENTRY_IS_BUSY(entry)) {
|
|
|
|
RuleValue *value = entry->mRules;
|
1998-12-11 05:50:43 +03:00
|
|
|
mEnumList[valueCount++] = value;
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT_LIST_COUNT(value, mElementTagCalls);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
}
|
|
|
|
if (nsnull != aID) {
|
2002-05-29 04:49:44 +04:00
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*,
|
|
|
|
PL_DHashTableOperate(&mIdTable, aID, PL_DHASH_LOOKUP));
|
|
|
|
if (PL_DHASH_ENTRY_IS_BUSY(entry)) {
|
|
|
|
RuleValue *value = entry->mRules;
|
1998-12-11 05:50:43 +03:00
|
|
|
mEnumList[valueCount++] = value;
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT_LIST_COUNT(value, mElementIdCalls);
|
1998-12-11 05:50:43 +03:00
|
|
|
}
|
|
|
|
}
|
2002-05-29 04:49:44 +04:00
|
|
|
{ // extra scope to work around compiler bugs with |for| scoping.
|
|
|
|
for (PRInt32 index = 0; index < classCount; ++index) {
|
|
|
|
nsIAtom* classAtom = (nsIAtom*)aClassList.ElementAt(index);
|
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*,
|
|
|
|
PL_DHashTableOperate(&mClassTable, classAtom, PL_DHASH_LOOKUP));
|
|
|
|
if (PL_DHASH_ENTRY_IS_BUSY(entry)) {
|
|
|
|
RuleValue *value = entry->mRules;
|
|
|
|
mEnumList[valueCount++] = value;
|
|
|
|
RULE_HASH_STAT_INCREMENT_LIST_COUNT(value, mElementClassCalls);
|
|
|
|
}
|
1998-12-11 05:50:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_ASSERTION(valueCount <= testCount, "values exceeded list size");
|
|
|
|
|
2002-05-29 04:49:44 +04:00
|
|
|
if (valueCount > 0) {
|
|
|
|
// Merge the lists while there are still multiple lists to merge.
|
|
|
|
while (valueCount > 1) {
|
|
|
|
PRInt32 valueIndex = 0;
|
|
|
|
PRInt32 highestRuleIndex = mEnumList[valueIndex]->mIndex;
|
|
|
|
for (PRInt32 index = 1; index < valueCount; ++index) {
|
|
|
|
PRInt32 ruleIndex = mEnumList[index]->mIndex;
|
|
|
|
if (ruleIndex > highestRuleIndex) {
|
1998-12-11 05:50:43 +03:00
|
|
|
valueIndex = index;
|
2002-05-29 04:49:44 +04:00
|
|
|
highestRuleIndex = ruleIndex;
|
1998-12-11 05:50:43 +03:00
|
|
|
}
|
|
|
|
}
|
2002-05-29 04:49:44 +04:00
|
|
|
(*aFunc)(mEnumList[valueIndex]->mRule, aData);
|
|
|
|
RuleValue *next = mEnumList[valueIndex]->mNext;
|
|
|
|
mEnumList[valueIndex] = next ? next : mEnumList[--valueCount];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fast loop over single value.
|
1998-12-11 05:50:43 +03:00
|
|
|
RuleValue* value = mEnumList[0];
|
|
|
|
do {
|
|
|
|
(*aFunc)(value->mRule, aData);
|
|
|
|
value = value->mNext;
|
2002-05-29 04:49:44 +04:00
|
|
|
} while (value);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RuleHash::EnumerateTagRules(nsIAtom* aTag, RuleEnumFunc aFunc, void* aData)
|
|
|
|
{
|
2002-05-29 04:49:44 +04:00
|
|
|
RuleHashTableEntry *entry = NS_STATIC_CAST(RuleHashTableEntry*,
|
|
|
|
PL_DHashTableOperate(&mTagTable, aTag, PL_DHASH_LOOKUP));
|
1998-12-11 05:50:43 +03:00
|
|
|
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT(mPseudosMatched);
|
2002-05-29 04:49:44 +04:00
|
|
|
if (PL_DHASH_ENTRY_IS_BUSY(entry)) {
|
|
|
|
RuleValue *tagValue = entry->mRules;
|
2001-06-05 05:00:11 +04:00
|
|
|
do {
|
2002-04-16 02:49:26 +04:00
|
|
|
RULE_HASH_STAT_INCREMENT(mPseudoTagCalls);
|
2001-06-05 05:00:11 +04:00
|
|
|
(*aFunc)(tagValue->mRule, aData);
|
|
|
|
tagValue = tagValue->mNext;
|
2002-05-29 04:49:44 +04:00
|
|
|
} while (tagValue);
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
//--------------------------------
|
|
|
|
|
|
|
|
// Attribute selectors hash table.
|
|
|
|
struct AttributeSelectorEntry : public PLDHashEntryHdr {
|
|
|
|
nsIAtom *mAttribute;
|
|
|
|
nsVoidArray *mSelectors;
|
|
|
|
};
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(void)
|
|
|
|
AttributeSelectorClearEntry(PLDHashTable *table, PLDHashEntryHdr *hdr)
|
|
|
|
{
|
|
|
|
AttributeSelectorEntry *entry = NS_STATIC_CAST(AttributeSelectorEntry*, hdr);
|
|
|
|
delete entry->mSelectors;
|
|
|
|
memset(entry, 0, table->entrySize);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PLDHashTableOps AttributeSelectorOps = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
PL_DHashGetKeyStub,
|
|
|
|
PL_DHashVoidPtrKeyStub,
|
|
|
|
PL_DHashMatchEntryStub,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
AttributeSelectorClearEntry,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
//--------------------------------
|
|
|
|
|
|
|
|
struct RuleCascadeData {
|
2002-05-29 04:49:44 +04:00
|
|
|
RuleCascadeData(nsIAtom *aMedium, PRBool aQuirksMode)
|
1999-10-14 04:59:21 +04:00
|
|
|
: mWeightedRules(nsnull),
|
2002-05-29 04:49:44 +04:00
|
|
|
mRuleHash(aQuirksMode),
|
2001-07-17 00:59:28 +04:00
|
|
|
mStateSelectors(),
|
|
|
|
mMedium(aMedium),
|
|
|
|
mNext(nsnull)
|
1999-10-14 04:59:21 +04:00
|
|
|
{
|
|
|
|
NS_NewISupportsArray(&mWeightedRules);
|
2003-02-22 19:10:53 +03:00
|
|
|
PL_DHashTableInit(&mAttributeSelectors, &AttributeSelectorOps, nsnull,
|
|
|
|
sizeof(AttributeSelectorEntry), 16);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
~RuleCascadeData(void)
|
|
|
|
{
|
|
|
|
NS_IF_RELEASE(mWeightedRules);
|
2003-02-22 19:10:53 +03:00
|
|
|
PL_DHashTableFinish(&mAttributeSelectors);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
nsISupportsArray* mWeightedRules;
|
|
|
|
RuleHash mRuleHash;
|
|
|
|
nsVoidArray mStateSelectors;
|
2003-02-22 19:10:53 +03:00
|
|
|
PLDHashTable mAttributeSelectors; // nsIAtom* -> nsVoidArray*
|
|
|
|
|
|
|
|
// Looks up or creates the appropriate list in |mAttributeSelectors|.
|
|
|
|
// Returns null only on allocation failure.
|
|
|
|
nsVoidArray* AttributeListFor(nsIAtom* aAttribute);
|
2001-07-17 00:59:28 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom> mMedium;
|
|
|
|
RuleCascadeData* mNext; // for a different medium
|
1999-10-14 04:59:21 +04:00
|
|
|
};
|
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
nsVoidArray*
|
|
|
|
RuleCascadeData::AttributeListFor(nsIAtom* aAttribute)
|
|
|
|
{
|
|
|
|
AttributeSelectorEntry *entry = NS_STATIC_CAST(AttributeSelectorEntry*,
|
|
|
|
PL_DHashTableOperate(&mAttributeSelectors, aAttribute, PL_DHASH_ADD));
|
|
|
|
if (!entry)
|
|
|
|
return nsnull;
|
|
|
|
if (!entry->mSelectors) {
|
|
|
|
if (!(entry->mSelectors = new nsVoidArray)) {
|
|
|
|
PL_DHashTableRawRemove(&mAttributeSelectors, entry);
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
entry->mAttribute = aAttribute;
|
|
|
|
}
|
|
|
|
return entry->mSelectors;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
// -------------------------------
|
|
|
|
// 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
|
2001-11-11 02:51:45 +03:00
|
|
|
NS_IMETHOD RulesMatching(ElementRuleProcessorData* aData,
|
|
|
|
nsIAtom* aMedium);
|
|
|
|
|
|
|
|
NS_IMETHOD RulesMatching(PseudoRuleProcessorData* aData,
|
|
|
|
nsIAtom* aMedium);
|
|
|
|
|
|
|
|
NS_IMETHOD HasStateDependentStyle(StateRuleProcessorData* aData,
|
2002-04-11 07:49:30 +04:00
|
|
|
nsIAtom* aMedium,
|
|
|
|
PRBool* aResult);
|
1999-10-14 04:59:21 +04:00
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
NS_IMETHOD HasAttributeDependentStyle(AttributeRuleProcessorData* aData,
|
|
|
|
nsIAtom* aMedium,
|
|
|
|
PRBool* aResult);
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
protected:
|
2001-09-07 04:23:37 +04:00
|
|
|
RuleCascadeData* GetRuleCascade(nsIPresContext* aPresContext, nsIAtom* aMedium);
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
static PRBool CascadeSheetRulesInto(nsISupports* aSheet, void* aData);
|
|
|
|
|
|
|
|
nsISupportsArray* mSheets;
|
|
|
|
|
2001-07-17 00:59:28 +04:00
|
|
|
RuleCascadeData* mRuleCascades;
|
1999-10-14 04:59:21 +04:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2001-09-06 23:16:03 +04:00
|
|
|
nsAutoVoidArray mSheets;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
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
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
nsCOMPtr<nsINameSpace> mNameSpace;
|
1999-06-15 10:20:46 +04:00
|
|
|
PRInt32 mDefaultNameSpaceID;
|
2002-12-03 08:48:14 +03:00
|
|
|
PRPackedBool mComplete;
|
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,
|
2002-08-06 09:08:47 +04:00
|
|
|
public nsIDOMCSSStyleSheet,
|
|
|
|
public nsICSSLoaderObserver
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
{
|
1999-06-03 05:57:52 +04:00
|
|
|
public:
|
|
|
|
CSSStyleSheetImpl();
|
|
|
|
|
2002-10-15 03:57:17 +04:00
|
|
|
NS_DECL_ISUPPORTS
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
// 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;
|
2002-12-03 08:48:14 +03:00
|
|
|
NS_IMETHOD SetTitle(const nsAString& aTitle);
|
1999-06-03 05:57:52 +04:00
|
|
|
NS_IMETHOD GetType(nsString& aType) const;
|
|
|
|
NS_IMETHOD GetMediumCount(PRInt32& aCount) const;
|
|
|
|
NS_IMETHOD GetMediumAt(PRInt32 aIndex, nsIAtom*& aMedium) const;
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_IMETHOD_(PRBool) UseForMedium(nsIAtom* aMedium) const;
|
1999-06-03 05:57:52 +04:00
|
|
|
NS_IMETHOD AppendMedium(nsIAtom* aMedium);
|
|
|
|
NS_IMETHOD ClearMedia(void);
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_IMETHOD DeleteRuleFromGroup(nsICSSGroupRule* aGroup, PRUint32 aIndex);
|
2002-03-24 01:56:05 +03:00
|
|
|
NS_IMETHOD InsertRuleIntoGroup(const nsAString& aRule, nsICSSGroupRule* aGroup, PRUint32 aIndex, PRUint32* _retval);
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
NS_IMETHOD GetApplicable(PRBool& aApplicable) const;
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
NS_IMETHOD SetEnabled(PRBool aEnabled);
|
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
NS_IMETHOD GetComplete(PRBool& aComplete) const;
|
|
|
|
NS_IMETHOD SetComplete();
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
// 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);
|
2002-08-06 09:08:47 +04:00
|
|
|
NS_IMETHOD SetOwnerRule(nsICSSImportRule* aOwnerRule);
|
1999-06-03 05:57:52 +04:00
|
|
|
|
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);
|
|
|
|
|
|
|
|
// 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
|
|
|
|
2003-02-23 07:44:41 +03:00
|
|
|
NS_IMETHOD Clone(nsICSSStyleSheet* aCloneParent,
|
|
|
|
nsICSSImportRule* aCloneOwnerRule,
|
|
|
|
nsIDocument* aCloneDocument,
|
|
|
|
nsIDOMNode* aCloneOwningNode,
|
|
|
|
nsICSSStyleSheet** aClone) const;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
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);
|
|
|
|
|
2002-08-06 09:08:47 +04:00
|
|
|
NS_IMETHOD StyleSheetLoaded(nsICSSStyleSheet*aSheet, PRBool aNotify);
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
nsresult EnsureUniqueInner(void);
|
|
|
|
|
2001-10-16 09:31:36 +04:00
|
|
|
#ifdef DEBUG
|
1999-06-03 05:57:52 +04:00
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
2001-10-16 09:31:36 +04:00
|
|
|
#endif
|
2000-03-31 11:08:36 +04:00
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
// nsIDOMStyleSheet interface
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
NS_DECL_NSIDOMSTYLESHEET
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
// nsIDOMCSSStyleSheet interface
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
NS_DECL_NSIDOMCSSSTYLESHEET
|
1999-06-03 05:57:52 +04:00
|
|
|
|
2003-02-23 07:44:41 +03:00
|
|
|
private:
|
|
|
|
CSSStyleSheetImpl(const CSSStyleSheetImpl& aCopy,
|
|
|
|
nsICSSStyleSheet* aParentToUse,
|
|
|
|
nsICSSImportRule* aOwnerRuleToUse,
|
|
|
|
nsIDocument* aDocumentToUse,
|
|
|
|
nsIDOMNode* aOwningNodeToUse);
|
|
|
|
|
1999-06-03 05:57:52 +04:00
|
|
|
// 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:
|
|
|
|
nsString mTitle;
|
2000-04-26 17:58:56 +04:00
|
|
|
DOMMediaListImpl* mMedia;
|
1999-06-03 05:57:52 +04:00
|
|
|
CSSStyleSheetImpl* mFirstChild;
|
|
|
|
CSSStyleSheetImpl* mNext;
|
2002-08-06 09:08:47 +04:00
|
|
|
nsICSSStyleSheet* mParent; // weak ref
|
|
|
|
nsICSSImportRule* mOwnerRule; // weak ref
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
CSSImportsCollectionImpl* mImportsCollection;
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSRuleListImpl* mRuleCollection;
|
2003-03-17 06:44:02 +03:00
|
|
|
nsIDocument* mDocument; // weak ref; parents maintain this for their children
|
2002-08-06 09:08:47 +04:00
|
|
|
nsIDOMNode* mOwningNode; // weak ref
|
2002-12-03 08:48:14 +03:00
|
|
|
PRPackedBool mDisabled;
|
|
|
|
PRPackedBool mDirty; // has been modified
|
1999-06-03 05:57:52 +04:00
|
|
|
|
|
|
|
CSSStyleSheetInner* mInner;
|
1999-10-14 04:59:21 +04:00
|
|
|
|
2001-09-06 23:16:03 +04:00
|
|
|
nsAutoVoidArray* mRuleProcessors;
|
1999-10-14 04:59:21 +04:00
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
friend class CSSRuleProcessor;
|
|
|
|
friend class DOMMediaListImpl;
|
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
|
|
|
//
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
class CSSRuleListImpl : public nsIDOMCSSRuleList
|
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
|
|
|
|
|
|
|
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;
|
|
|
|
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
|
|
|
{
|
|
|
|
// Not reference counted to avoid circular references.
|
|
|
|
// The style sheet will tell us when its going away.
|
|
|
|
mStyleSheet = aStyleSheet;
|
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
|
|
|
{
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
// QueryInterface implementation for CSSRuleList
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_INTERFACE_MAP_BEGIN(CSSRuleListImpl)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMCSSRuleList)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_CONTENT_CLASSINFO(CSSRuleList)
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_INTERFACE_MAP_END
|
1998-10-06 05:39:33 +04:00
|
|
|
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
NS_IMPL_ADDREF(CSSRuleListImpl);
|
|
|
|
NS_IMPL_RELEASE(CSSRuleListImpl);
|
|
|
|
|
|
|
|
|
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;
|
2001-03-20 01:12:12 +03:00
|
|
|
if (mStyleSheet) {
|
1999-06-03 05:57:52 +04:00
|
|
|
result = mStyleSheet->EnsureUniqueInner(); // needed to ensure rules have correct parent
|
|
|
|
if (NS_SUCCEEDED(result)) {
|
2001-03-20 01:12:12 +03:00
|
|
|
nsCOMPtr<nsICSSRule> rule;
|
1999-06-03 05:57:52 +04:00
|
|
|
|
2001-03-20 01:12:12 +03:00
|
|
|
result = mStyleSheet->GetStyleRuleAt(aIndex, *getter_AddRefs(rule));
|
|
|
|
if (rule) {
|
|
|
|
result = CallQueryInterface(rule, aReturn);
|
1999-06-03 05:57:52 +04:00
|
|
|
mRulesAccessed = PR_TRUE; // signal to never share rules again
|
2001-03-20 01:12:12 +03:00
|
|
|
} else if (result == NS_ERROR_ILLEGAL_VALUE) {
|
|
|
|
result = NS_OK; // per spec: "Return Value ... null if ... not a valid index."
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
class DOMMediaListImpl : public nsIDOMMediaList,
|
2001-08-05 01:19:53 +04:00
|
|
|
public nsIMediaList
|
2000-04-26 17:58:56 +04:00
|
|
|
{
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
NS_DECL_NSIDOMMEDIALIST
|
2000-04-26 17:58:56 +04:00
|
|
|
|
|
|
|
NS_FORWARD_NSISUPPORTSARRAY(mArray->)
|
|
|
|
NS_FORWARD_NSICOLLECTION(mArray->);
|
2001-07-31 23:05:34 +04:00
|
|
|
NS_FORWARD_NSISERIALIZABLE(mArray->); // XXXbe temporary
|
2000-04-26 17:58:56 +04:00
|
|
|
|
|
|
|
NS_IMETHOD_(PRBool) operator==(const nsISupportsArray& other) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD_(nsISupports*) operator[](PRUint32 aIndex) {
|
|
|
|
return mArray->ElementAt(aIndex);
|
|
|
|
}
|
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
// nsIMediaList methods
|
|
|
|
NS_DECL_NSIMEDIALIST
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
DOMMediaListImpl(nsISupportsArray *aArray, CSSStyleSheetImpl *aStyleSheet);
|
|
|
|
virtual ~DOMMediaListImpl();
|
|
|
|
|
|
|
|
private:
|
2001-09-05 04:00:18 +04:00
|
|
|
nsresult BeginMediaChange(void);
|
|
|
|
nsresult EndMediaChange(void);
|
2002-03-24 01:56:05 +03:00
|
|
|
nsresult Delete(const nsAString & aOldMedium);
|
|
|
|
nsresult Append(const nsAString & aOldMedium);
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
nsCOMPtr<nsISupportsArray> mArray;
|
2001-09-05 04:00:18 +04:00
|
|
|
// not refcounted; sheet will let us know when it goes away
|
|
|
|
// mStyleSheet is the sheet that needs to be dirtied when this medialist
|
|
|
|
// changes
|
2000-04-26 17:58:56 +04:00
|
|
|
CSSStyleSheetImpl* mStyleSheet;
|
|
|
|
};
|
|
|
|
|
2001-08-05 01:19:53 +04:00
|
|
|
// QueryInterface implementation for DOMMediaListImpl
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_INTERFACE_MAP_BEGIN(DOMMediaListImpl)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMMediaList)
|
2001-08-05 01:19:53 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIMediaList)
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupportsArray)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMMediaList)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_CONTENT_CLASSINFO(MediaList)
|
2001-07-31 23:05:34 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISerializable)
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
|
|
|
|
NS_IMPL_ADDREF(DOMMediaListImpl);
|
|
|
|
NS_IMPL_RELEASE(DOMMediaListImpl);
|
|
|
|
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
DOMMediaListImpl::DOMMediaListImpl(nsISupportsArray *aArray,
|
|
|
|
CSSStyleSheetImpl *aStyleSheet)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
: mArray(aArray), mStyleSheet(aStyleSheet)
|
2000-04-26 17:58:56 +04:00
|
|
|
{
|
2000-04-27 03:24:30 +04:00
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_ABORT_IF_FALSE(mArray, "This can't be used without an array!!");
|
|
|
|
}
|
|
|
|
|
|
|
|
DOMMediaListImpl::~DOMMediaListImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-08-05 01:19:53 +04:00
|
|
|
nsresult
|
|
|
|
NS_NewMediaList(nsIMediaList** aInstancePtrResult) {
|
2001-09-05 04:00:18 +04:00
|
|
|
return NS_NewMediaList(NS_LITERAL_STRING(""), aInstancePtrResult);
|
2001-08-05 01:19:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2002-03-24 01:56:05 +03:00
|
|
|
NS_NewMediaList(const nsAString& aMediaText, nsIMediaList** aInstancePtrResult) {
|
2001-08-05 01:19:53 +04:00
|
|
|
nsresult rv;
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_ASSERTION(aInstancePtrResult, "Null out param.");
|
2001-08-05 01:19:53 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsISupportsArray> array;
|
|
|
|
rv = NS_NewISupportsArray(getter_AddRefs(array));
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
DOMMediaListImpl* medialist = new DOMMediaListImpl(array, nsnull);
|
2001-09-05 04:00:18 +04:00
|
|
|
*aInstancePtrResult = medialist;
|
2001-08-05 01:19:53 +04:00
|
|
|
NS_ENSURE_TRUE(medialist, NS_ERROR_OUT_OF_MEMORY);
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_ADDREF(*aInstancePtrResult);
|
2001-08-05 01:19:53 +04:00
|
|
|
rv = medialist->SetMediaText(aMediaText);
|
2001-09-05 04:00:18 +04:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_RELEASE(*aInstancePtrResult);
|
|
|
|
*aInstancePtrResult = nsnull;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult NS_NewMediaList(nsISupportsArray* aArray, nsICSSStyleSheet* aSheet, nsIMediaList** aInstancePtrResult)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aInstancePtrResult, "Null out param.");
|
|
|
|
DOMMediaListImpl* medialist = new DOMMediaListImpl(aArray, NS_STATIC_CAST(CSSStyleSheetImpl*, aSheet));
|
2001-08-05 01:19:53 +04:00
|
|
|
*aInstancePtrResult = medialist;
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_ENSURE_TRUE(medialist, NS_ERROR_OUT_OF_MEMORY);
|
2001-08-05 01:19:53 +04:00
|
|
|
NS_ADDREF(*aInstancePtrResult);
|
2001-09-05 04:00:18 +04:00
|
|
|
return NS_OK;
|
2001-08-05 01:19:53 +04:00
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_IMETHODIMP
|
2002-03-24 01:56:05 +03:00
|
|
|
DOMMediaListImpl::GetText(nsAString& 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) {
|
2001-09-05 04:00:18 +04:00
|
|
|
nsCOMPtr<nsIAtom> medium;
|
|
|
|
QueryElementAt(index++, NS_GET_IID(nsIAtom), getter_AddRefs(medium));
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_ENSURE_TRUE(medium, NS_ERROR_FAILURE);
|
|
|
|
|
2003-03-25 21:55:59 +03:00
|
|
|
nsAutoString buffer;
|
|
|
|
medium->ToString(buffer);
|
2000-04-26 17:58:56 +04:00
|
|
|
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
|
2002-03-24 01:56:05 +03:00
|
|
|
DOMMediaListImpl::SetText(const nsAString& 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();
|
|
|
|
|
2002-01-24 05:03:19 +03:00
|
|
|
if (!tmp.IsEmpty()) {
|
2000-04-26 17:58:56 +04:00
|
|
|
rv = Append(tmp);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
buf.Cut(0, n + 1);
|
|
|
|
|
|
|
|
n = buf.FindChar(',');
|
2002-01-24 05:03:19 +03:00
|
|
|
} while (!buf.IsEmpty());
|
2000-04-26 17:58:56 +04:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
/*
|
|
|
|
* aMatch is true when we contain the desired medium or contain the
|
|
|
|
* "all" medium or contain no media at all, which is the same as
|
|
|
|
* containing "all"
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMMediaListImpl::MatchesMedium(nsIAtom* aMedium, PRBool* aMatch)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aMatch);
|
|
|
|
*aMatch = PR_FALSE;
|
|
|
|
*aMatch = (-1 != IndexOf(aMedium)) ||
|
|
|
|
(-1 != IndexOf(nsLayoutAtoms::all));
|
|
|
|
if (*aMatch)
|
|
|
|
return NS_OK;
|
|
|
|
PRUint32 count;
|
|
|
|
nsresult rv = Count(&count);
|
|
|
|
if(NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
*aMatch = (count == 0);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
DOMMediaListImpl::DropReference(void)
|
|
|
|
{
|
|
|
|
mStyleSheet = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-03-24 01:56:05 +03:00
|
|
|
DOMMediaListImpl::GetMediaText(nsAString& aMediaText)
|
2001-09-05 04:00:18 +04:00
|
|
|
{
|
|
|
|
return GetText(aMediaText);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-03-24 01:56:05 +03:00
|
|
|
DOMMediaListImpl::SetMediaText(const nsAString& aMediaText)
|
2001-09-05 04:00:18 +04:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
rv = BeginMediaChange();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = SetText(aMediaText);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = EndMediaChange();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2000-04-26 17:58:56 +04:00
|
|
|
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
|
2002-03-24 01:56:05 +03:00
|
|
|
DOMMediaListImpl::Item(PRUint32 aIndex, nsAString& 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);
|
|
|
|
|
2003-03-25 21:55:59 +03:00
|
|
|
nsAutoString buffer;
|
|
|
|
medium->ToString(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
|
2002-03-24 01:56:05 +03:00
|
|
|
DOMMediaListImpl::DeleteMedium(const nsAString& aOldMedium)
|
2001-09-05 04:00:18 +04:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
rv = BeginMediaChange();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Delete(aOldMedium);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = EndMediaChange();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-03-24 01:56:05 +03:00
|
|
|
DOMMediaListImpl::AppendMedium(const nsAString& aNewMedium)
|
2001-09-05 04:00:18 +04:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
rv = BeginMediaChange();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = Append(aNewMedium);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = EndMediaChange();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2002-03-24 01:56:05 +03:00
|
|
|
DOMMediaListImpl::Delete(const nsAString& aOldMedium)
|
2000-04-26 17:58:56 +04:00
|
|
|
{
|
2002-01-24 05:03:19 +03:00
|
|
|
if (aOldMedium.IsEmpty())
|
2000-04-26 17:58:56 +04:00
|
|
|
return NS_ERROR_DOM_NOT_FOUND_ERR;
|
|
|
|
|
2002-12-11 17:24:49 +03:00
|
|
|
nsCOMPtr<nsIAtom> old = do_GetAtom(aOldMedium);
|
2000-04-26 17:58:56 +04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
nsresult
|
2002-03-24 01:56:05 +03:00
|
|
|
DOMMediaListImpl::Append(const nsAString& aNewMedium)
|
2000-04-26 17:58:56 +04:00
|
|
|
{
|
2002-01-24 05:03:19 +03:00
|
|
|
if (aNewMedium.IsEmpty())
|
2000-04-26 17:58:56 +04:00
|
|
|
return NS_ERROR_DOM_NOT_FOUND_ERR;
|
|
|
|
|
2002-12-11 17:24:49 +03:00
|
|
|
nsCOMPtr<nsIAtom> media = do_GetAtom(aNewMedium);
|
2000-04-26 17:58:56 +04:00
|
|
|
NS_ENSURE_TRUE(media, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
PRInt32 indx = IndexOf(media);
|
|
|
|
|
|
|
|
if (indx >= 0) {
|
|
|
|
RemoveElementAt(indx);
|
|
|
|
}
|
|
|
|
|
|
|
|
AppendElement(media);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
nsresult
|
|
|
|
DOMMediaListImpl::BeginMediaChange(void)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIDocument> doc;
|
|
|
|
|
|
|
|
if (mStyleSheet) {
|
|
|
|
rv = mStyleSheet->GetOwningDocument(*getter_AddRefs(doc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = doc->BeginUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = mStyleSheet->WillDirty();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
DOMMediaListImpl::EndMediaChange(void)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIDocument> doc;
|
|
|
|
if (mStyleSheet) {
|
|
|
|
mStyleSheet->DidDirty();
|
|
|
|
rv = mStyleSheet->GetOwningDocument(*getter_AddRefs(doc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = doc->StyleRuleChanged(mStyleSheet, nsnull, NS_STYLE_HINT_RECONSTRUCT_ALL);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = doc->EndUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2000-04-26 17:58:56 +04:00
|
|
|
|
1998-10-06 05:39:33 +04:00
|
|
|
// -------------------------------
|
|
|
|
// Imports Collection for the DOM
|
|
|
|
//
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
class CSSImportsCollectionImpl : public nsIDOMStyleSheetList
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
void DropReference() { mStyleSheet = nsnull; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~CSSImportsCollectionImpl();
|
|
|
|
|
|
|
|
nsICSSStyleSheet* mStyleSheet;
|
|
|
|
};
|
|
|
|
|
|
|
|
CSSImportsCollectionImpl::CSSImportsCollectionImpl(nsICSSStyleSheet *aStyleSheet)
|
|
|
|
{
|
|
|
|
// Not reference counted to avoid circular references.
|
|
|
|
// The style sheet will tell us when its going away.
|
|
|
|
mStyleSheet = aStyleSheet;
|
|
|
|
}
|
|
|
|
|
|
|
|
CSSImportsCollectionImpl::~CSSImportsCollectionImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
|
|
|
|
// QueryInterface implementation for CSSImportsCollectionImpl
|
|
|
|
NS_INTERFACE_MAP_BEGIN(CSSImportsCollectionImpl)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMStyleSheetList)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_CONTENT_CLASSINFO(StyleSheetList)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
|
1998-10-06 05:39:33 +04:00
|
|
|
NS_IMPL_ADDREF(CSSImportsCollectionImpl);
|
|
|
|
NS_IMPL_RELEASE(CSSImportsCollectionImpl);
|
|
|
|
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
NS_IMETHODIMP
|
1998-10-06 05:39:33 +04:00
|
|
|
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;
|
|
|
|
|
2002-12-11 17:24:49 +03:00
|
|
|
if (mStyleSheet) {
|
|
|
|
nsCOMPtr<nsICSSStyleSheet> sheet;
|
|
|
|
|
|
|
|
result = mStyleSheet->GetStyleSheetAt(aIndex, *getter_AddRefs(sheet));
|
|
|
|
if (NS_SUCCEEDED(result)) {
|
|
|
|
result = CallQueryInterface(sheet, aReturn);
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
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),
|
2002-12-03 08:48:14 +03:00
|
|
|
mComplete(PR_FALSE)
|
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
|
|
|
|
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),
|
2002-12-03 08:48:14 +03:00
|
|
|
mComplete(aCopy.mComplete)
|
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;
|
|
|
|
}
|
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);
|
|
|
|
}
|
|
|
|
}
|
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;
|
2001-09-05 04:00:18 +04:00
|
|
|
PRInt32 type = nsICSSRule::UNKNOWN_RULE;
|
1999-06-15 10:20:46 +04:00
|
|
|
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)
|
|
|
|
{
|
2002-11-30 02:44:07 +03:00
|
|
|
nsContentUtils::GetNSManagerWeakRef()->CreateRootNameSpace(*getter_AddRefs(mNameSpace));
|
|
|
|
if (kNameSpaceID_Unknown != mDefaultNameSpaceID) {
|
|
|
|
nsCOMPtr<nsINameSpace> defaultNameSpace;
|
|
|
|
mNameSpace->CreateChildNameSpace(nsnull, mDefaultNameSpaceID,
|
|
|
|
*getter_AddRefs(defaultNameSpace));
|
|
|
|
if (defaultNameSpace) {
|
|
|
|
mNameSpace = defaultNameSpace;
|
1999-06-15 10:20:46 +04:00
|
|
|
}
|
|
|
|
}
|
2002-11-30 02:44:07 +03:00
|
|
|
if (mOrderedRules) {
|
|
|
|
mOrderedRules->EnumerateForwards(CreateNameSpace, address_of(mNameSpace));
|
|
|
|
}
|
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
|
|
|
|
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(),
|
2002-09-17 08:49:28 +04:00
|
|
|
mRefCnt(0),
|
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),
|
2002-08-06 09:08:47 +04:00
|
|
|
mOwnerRule(nsnull),
|
1999-06-03 05:57:52 +04:00
|
|
|
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
|
|
|
mRuleProcessors(nsnull)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2003-02-23 07:44:41 +03:00
|
|
|
CSSStyleSheetImpl::CSSStyleSheetImpl(const CSSStyleSheetImpl& aCopy,
|
|
|
|
nsICSSStyleSheet* aParentToUse,
|
|
|
|
nsICSSImportRule* aOwnerRuleToUse,
|
|
|
|
nsIDocument* aDocumentToUse,
|
|
|
|
nsIDOMNode* aOwningNodeToUse)
|
1999-06-03 05:57:52 +04:00
|
|
|
: nsICSSStyleSheet(),
|
2002-09-17 08:49:28 +04:00
|
|
|
mRefCnt(0),
|
1999-06-03 05:57:52 +04:00
|
|
|
mTitle(aCopy.mTitle),
|
|
|
|
mMedia(nsnull),
|
|
|
|
mFirstChild(nsnull),
|
|
|
|
mNext(nsnull),
|
2003-02-23 07:44:41 +03:00
|
|
|
mParent(aParentToUse),
|
|
|
|
mOwnerRule(aOwnerRuleToUse),
|
1999-06-03 05:57:52 +04:00
|
|
|
mImportsCollection(nsnull), // re-created lazily
|
|
|
|
mRuleCollection(nsnull), // re-created lazily
|
2003-02-23 07:44:41 +03:00
|
|
|
mDocument(aDocumentToUse),
|
|
|
|
mOwningNode(aOwningNodeToUse),
|
1999-06-03 05:57:52 +04:00
|
|
|
mDisabled(aCopy.mDisabled),
|
1999-07-16 21:40:39 +04:00
|
|
|
mDirty(PR_FALSE),
|
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
|
|
|
mInner->AddSheet(this);
|
|
|
|
|
|
|
|
if (aCopy.mRuleCollection &&
|
|
|
|
aCopy.mRuleCollection->mRulesAccessed) { // CSSOM's been there, force full copy now
|
2002-12-03 08:48:14 +03:00
|
|
|
NS_ASSERTION(mInner->mComplete, "Why have rules been accessed on an incomplete sheet?");
|
1999-06-03 05:57:52 +04:00
|
|
|
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;
|
2001-05-23 00:53:00 +04:00
|
|
|
(NS_STATIC_CAST(nsISupportsArray *, aCopy.mMedia))->Clone(getter_AddRefs(tmp));
|
|
|
|
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 {
|
2003-02-23 07:44:41 +03:00
|
|
|
// XXX This is wrong; we should be keeping @import rules and
|
|
|
|
// sheets in sync!
|
2003-03-17 06:44:02 +03:00
|
|
|
CSSStyleSheetImpl* child = new CSSStyleSheetImpl(*otherChild,
|
|
|
|
this,
|
|
|
|
nsnull,
|
|
|
|
aDocumentToUse,
|
|
|
|
nsnull);
|
1999-06-03 05:57:52 +04:00
|
|
|
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;
|
2003-03-17 06:44:02 +03:00
|
|
|
child->mDocument = nsnull;
|
1999-05-19 03:14:29 +04:00
|
|
|
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
|
|
|
}
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
|
|
|
|
// QueryInterface implementation for CSSStyleSheetImpl
|
|
|
|
NS_INTERFACE_MAP_BEGIN(CSSStyleSheetImpl)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsICSSStyleSheet)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIStyleSheet)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMStyleSheet)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMCSSStyleSheet)
|
2002-08-06 09:08:47 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsICSSLoaderObserver)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsICSSStyleSheet)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_CONTENT_CLASSINFO(CSSStyleSheet)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
NS_IMPL_ADDREF(CSSStyleSheetImpl)
|
|
|
|
NS_IMPL_RELEASE(CSSStyleSheetImpl)
|
|
|
|
|
|
|
|
|
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) {
|
2001-09-06 23:16:03 +04:00
|
|
|
mRuleProcessors = new nsAutoVoidArray();
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
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
|
2002-12-03 08:48:14 +03:00
|
|
|
CSSStyleSheetImpl::SetTitle(const nsAString& 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
|
|
|
{
|
2001-12-16 14:58:03 +03:00
|
|
|
aType.Assign(NS_LITERAL_STRING("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
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_IMETHODIMP_(PRBool)
|
1999-10-14 04:59:21 +04:00
|
|
|
CSSStyleSheetImpl::UseForMedium(nsIAtom* aMedium) const
|
|
|
|
{
|
|
|
|
if (mMedia) {
|
2001-09-05 04:00:18 +04:00
|
|
|
PRBool matches = PR_FALSE;
|
|
|
|
mMedia->MatchesMedium(aMedium, &matches);
|
|
|
|
return matches;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
return PR_TRUE;
|
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
|
2002-12-03 08:48:14 +03:00
|
|
|
CSSStyleSheetImpl::GetApplicable(PRBool& aApplicable) const
|
1998-05-21 00:34:17 +04:00
|
|
|
{
|
2002-12-03 08:48:14 +03:00
|
|
|
aApplicable = !mDisabled && mInner && mInner->mComplete;
|
1999-10-14 04:59:21 +04:00
|
|
|
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
|
|
|
{
|
2002-12-03 08:48:14 +03:00
|
|
|
PRBool oldDisabled = mDisabled;
|
2002-08-14 16:34:39 +04:00
|
|
|
mDisabled = !aEnabled;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
if (mDocument && mInner && mInner->mComplete && oldDisabled != mDisabled) {
|
|
|
|
mDocument->SetStyleSheetApplicableState(this, !mDisabled);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
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
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::GetComplete(PRBool& aComplete) const
|
|
|
|
{
|
|
|
|
aComplete = mInner && mInner->mComplete;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::SetComplete()
|
|
|
|
{
|
|
|
|
if (!mInner)
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
NS_ASSERTION(!mDirty, "Can't set a dirty sheet complete!");
|
|
|
|
mInner->mComplete = PR_TRUE;
|
|
|
|
if (mDocument && !mDisabled) {
|
|
|
|
// Let the document know
|
|
|
|
mDocument->SetStyleSheetApplicableState(this, PR_TRUE);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
{
|
2003-03-17 06:44:02 +03:00
|
|
|
aDocument = mDocument;
|
|
|
|
NS_IF_ADDREF(aDocument);
|
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::SetOwningDocument(nsIDocument* aDocument)
|
|
|
|
{ // not ref counted
|
|
|
|
mDocument = aDocument;
|
2003-03-17 06:44:02 +03:00
|
|
|
// Now set the same document on all our child sheets....
|
|
|
|
for (CSSStyleSheetImpl* child = mFirstChild; child; child = child->mNext) {
|
|
|
|
child->mDocument = aDocument;
|
|
|
|
}
|
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::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
|
|
|
}
|
|
|
|
|
2002-08-06 09:08:47 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::SetOwnerRule(nsICSSImportRule* aOwnerRule)
|
|
|
|
{ // not ref counted
|
|
|
|
mOwnerRule = aOwnerRule;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
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;
|
2003-03-17 06:44:02 +03:00
|
|
|
sheet->mDocument = mDocument;
|
1999-10-14 04:59:21 +04:00
|
|
|
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;
|
2003-03-17 06:44:02 +03:00
|
|
|
sheet->mDocument = mDocument;
|
1999-10-14 04:59:21 +04:00
|
|
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
PRInt32 type = nsICSSRule::UNKNOWN_RULE;
|
1999-10-14 04:59:21 +04:00
|
|
|
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();
|
|
|
|
}
|
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
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
PRInt32 type = nsICSSRule::UNKNOWN_RULE;
|
1999-10-14 04:59:21 +04:00
|
|
|
aRule->GetType(type);
|
|
|
|
if (nsICSSRule::NAMESPACE_RULE == type) {
|
|
|
|
if (! mInner->mNameSpace) {
|
2002-11-30 02:44:07 +03:00
|
|
|
nsContentUtils::GetNSManagerWeakRef()->CreateRootNameSpace(*getter_AddRefs(mInner->mNameSpace));
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
1999-04-20 04:05:54 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mInner->mNameSpace) {
|
2001-09-05 04:00:18 +04:00
|
|
|
nsCOMPtr<nsICSSNameSpaceRule> nameSpaceRule(do_QueryInterface(aRule));
|
|
|
|
nsCOMPtr<nsINameSpace> newNameSpace;
|
1999-04-20 04:05:54 +04:00
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
nsCOMPtr<nsIAtom> prefix;
|
1999-10-14 04:59:21 +04:00
|
|
|
nsAutoString urlSpec;
|
2001-09-05 04:00:18 +04:00
|
|
|
nameSpaceRule->GetPrefix(*getter_AddRefs(prefix));
|
1999-10-14 04:59:21 +04:00
|
|
|
nameSpaceRule->GetURLSpec(urlSpec);
|
2001-09-05 04:00:18 +04:00
|
|
|
mInner->mNameSpace->CreateChildNameSpace(prefix, urlSpec,
|
|
|
|
*getter_AddRefs(newNameSpace));
|
1999-10-14 04:59:21 +04:00
|
|
|
if (newNameSpace) {
|
2001-09-05 04:00:18 +04:00
|
|
|
mInner->mNameSpace = newNameSpace;
|
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
|
|
|
|
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
|
|
|
|
{
|
2002-06-15 03:54:18 +04:00
|
|
|
// Important: If this function is ever made scriptable, we must add
|
|
|
|
// a security check here. See GetCSSRules below for an example.
|
1999-10-14 04:59:21 +04:00
|
|
|
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
|
|
|
{
|
2001-09-05 04:00:18 +04:00
|
|
|
if (mInner) {
|
|
|
|
aNameSpace = mInner->mNameSpace;
|
|
|
|
NS_IF_ADDREF(aNameSpace);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aNameSpace = nsnull;
|
|
|
|
}
|
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;
|
|
|
|
}
|
2002-12-03 08:48:14 +03:00
|
|
|
if (1 < mInner->mSheets.Count()) {
|
1999-10-14 04:59:21 +04:00
|
|
|
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
|
2003-02-23 07:44:41 +03:00
|
|
|
CSSStyleSheetImpl::Clone(nsICSSStyleSheet* aCloneParent,
|
|
|
|
nsICSSImportRule* aCloneOwnerRule,
|
|
|
|
nsIDocument* aCloneDocument,
|
|
|
|
nsIDOMNode* aCloneOwningNode,
|
|
|
|
nsICSSStyleSheet** aClone) const
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aClone, "Null out param!");
|
|
|
|
CSSStyleSheetImpl* clone = new CSSStyleSheetImpl(*this,
|
|
|
|
aCloneParent,
|
|
|
|
aCloneOwnerRule,
|
|
|
|
aCloneDocument,
|
|
|
|
aCloneOwningNode);
|
1999-10-14 04:59:21 +04:00
|
|
|
if (clone) {
|
2003-02-23 07:44:41 +03:00
|
|
|
*aClone = NS_STATIC_CAST(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
|
|
|
}
|
|
|
|
|
2001-10-16 09:31:36 +04:00
|
|
|
#ifdef DEBUG
|
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;
|
2002-06-13 12:29:51 +04:00
|
|
|
PRInt32 index;
|
1999-10-14 04:59:21 +04:00
|
|
|
if (aRules) {
|
|
|
|
aRules->Count(&count);
|
2002-04-16 02:49:26 +04:00
|
|
|
for (index = count - 1; index >= 0; --index) {
|
2001-09-06 17:14:35 +04:00
|
|
|
nsCOMPtr<nsICSSRule> rule = dont_AddRef((nsICSSRule*)aRules->ElementAt(index));
|
1999-10-14 04:59:21 +04:00
|
|
|
rule->List(aOut, aIndent);
|
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);
|
2001-10-16 07:53:44 +04:00
|
|
|
fputs(NS_LossyConvertUCS2toASCII(buffer).get(), data->mOut);
|
1999-10-14 04:59:21 +04:00
|
|
|
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);
|
2002-03-06 10:48:55 +03:00
|
|
|
nsCAutoString urlSpec;
|
|
|
|
nsresult rv = mInner->mURL->GetSpec(urlSpec);
|
|
|
|
if (NS_SUCCEEDED(rv) && !urlSpec.IsEmpty()) {
|
|
|
|
fputs(urlSpec.get(), out);
|
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)) {
|
2001-09-06 17:14:35 +04:00
|
|
|
nsCOMPtr<nsIAtom> medium = dont_AddRef((nsIAtom*)mMedia->ElementAt(index++));
|
1999-10-14 04:59:21 +04:00
|
|
|
medium->ToString(buffer);
|
2001-10-16 07:53:44 +04:00
|
|
|
fputs(NS_LossyConvertUCS2toASCII(buffer).get(), out);
|
1999-10-14 04:59:21 +04:00
|
|
|
if (index < PRInt32(count)) {
|
|
|
|
fputs(", ", out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
2001-10-16 09:31:36 +04:00
|
|
|
#endif
|
2000-03-31 11:08:36 +04:00
|
|
|
|
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)
|
|
|
|
{
|
2002-12-03 08:48:14 +03:00
|
|
|
if (mInner && !mInner->mComplete) {
|
|
|
|
// Do nothing
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
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
|
2002-03-24 01:56:05 +03:00
|
|
|
CSSStyleSheetImpl::GetType(nsAString& 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
|
|
|
{
|
2002-12-03 08:48:14 +03:00
|
|
|
PRBool oldDisabled = mDisabled;
|
1999-10-14 04:59:21 +04:00
|
|
|
mDisabled = aDisabled;
|
1998-11-26 04:34:53 +03:00
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
if (mDocument && mInner && mInner->mComplete && oldDisabled != mDisabled) {
|
|
|
|
mDocument->SetStyleSheetApplicableState(this, !mDisabled);
|
1998-11-26 04:34:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2002-03-24 01:56:05 +03:00
|
|
|
CSSStyleSheetImpl::GetHref(nsAString& aHref)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-10-14 04:59:21 +04:00
|
|
|
if (mInner && mInner->mURL) {
|
2002-03-06 10:48:55 +03:00
|
|
|
nsCAutoString str;
|
|
|
|
mInner->mURL->GetSpec(str);
|
|
|
|
aHref.Assign(NS_ConvertUTF8toUCS2(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
|
2002-03-24 01:56:05 +03:00
|
|
|
CSSStyleSheetImpl::GetTitle(nsAString& 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)
|
|
|
|
{
|
2002-08-06 09:08:47 +04:00
|
|
|
if (mOwnerRule) {
|
|
|
|
return CallQueryInterface(mOwnerRule, aOwnerRule);
|
|
|
|
}
|
2000-05-13 22:10:24 +04:00
|
|
|
|
2002-08-06 09:08:47 +04:00
|
|
|
*aOwnerRule = nsnull;
|
|
|
|
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
|
|
|
{
|
2002-12-03 08:48:14 +03:00
|
|
|
// No doing this on incomplete sheets!
|
|
|
|
PRBool complete;
|
|
|
|
GetComplete(complete);
|
|
|
|
if (!complete) {
|
|
|
|
return NS_ERROR_DOM_INVALID_ACCESS_ERR;
|
|
|
|
}
|
|
|
|
|
2002-06-15 03:54:18 +04:00
|
|
|
//-- Security check: Only scripts from the same origin as the
|
|
|
|
// style sheet can access rule collections
|
|
|
|
|
|
|
|
// Get JSContext from stack
|
|
|
|
nsCOMPtr<nsIJSContextStack> stack =
|
|
|
|
do_GetService("@mozilla.org/js/xpc/ContextStack;1");
|
|
|
|
NS_ENSURE_TRUE(stack, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
rv = stack->Peek(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (!cx)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Get the security manager and do the same-origin check
|
|
|
|
nsCOMPtr<nsIScriptSecurityManager> secMan =
|
|
|
|
do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = secMan->CheckSameOrigin(cx, mInner->mURL);
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OK, security check passed, so get the rule collection
|
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
|
2002-03-24 01:56:05 +03:00
|
|
|
CSSStyleSheetImpl::InsertRule(const nsAString& aRule,
|
1999-10-14 04:59:21 +04:00
|
|
|
PRUint32 aIndex,
|
|
|
|
PRUint32* aReturn)
|
|
|
|
{
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_ENSURE_TRUE(mInner, NS_ERROR_FAILURE);
|
2002-12-03 08:48:14 +03:00
|
|
|
// No doing this if the sheet is not complete!
|
|
|
|
PRBool complete;
|
|
|
|
GetComplete(complete);
|
|
|
|
if (!complete) {
|
|
|
|
return NS_ERROR_DOM_INVALID_ACCESS_ERR;
|
|
|
|
}
|
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
nsresult result;
|
2001-09-06 17:14:35 +04:00
|
|
|
result = WillDirty();
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
if (! mInner->mOrderedRules) {
|
|
|
|
result = NS_NewISupportsArray(&(mInner->mOrderedRules));
|
|
|
|
}
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
|
|
|
|
PRUint32 count;
|
|
|
|
mInner->mOrderedRules->Count(&count);
|
|
|
|
if (aIndex > count)
|
|
|
|
return NS_ERROR_DOM_INDEX_SIZE_ERR;
|
|
|
|
|
|
|
|
nsCOMPtr<nsICSSLoader> loader;
|
|
|
|
nsCOMPtr<nsICSSParser> css;
|
|
|
|
nsCOMPtr<nsIHTMLContentContainer> htmlContainer(do_QueryInterface(mDocument));
|
|
|
|
if (htmlContainer) {
|
|
|
|
htmlContainer->GetCSSLoader(*getter_AddRefs(loader));
|
|
|
|
}
|
2001-10-19 17:50:30 +04:00
|
|
|
NS_ASSERTION(loader || !mDocument, "Document with no CSS loader!");
|
2001-09-05 04:00:18 +04:00
|
|
|
if (loader) {
|
|
|
|
result = loader->GetParserFor(this, getter_AddRefs(css));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = NS_NewCSSParser(getter_AddRefs(css));
|
2001-10-19 17:50:30 +04:00
|
|
|
if (css) {
|
|
|
|
css->SetStyleSheet(this);
|
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
}
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
2001-10-19 17:50:30 +04:00
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
if (mDocument) {
|
|
|
|
result = mDocument->BeginUpdate();
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
nsCOMPtr<nsISupportsArray> rules;
|
|
|
|
result = css->ParseRule(aRule, mInner->mURL, getter_AddRefs(rules));
|
2001-09-05 04:00:18 +04:00
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
2001-09-06 17:14:35 +04:00
|
|
|
|
|
|
|
PRUint32 rulecount = 0;
|
|
|
|
rules->Count(&rulecount);
|
|
|
|
if (rulecount == 0 && !aRule.IsEmpty()) {
|
2001-09-05 04:00:18 +04:00
|
|
|
return NS_ERROR_DOM_SYNTAX_ERR;
|
2001-09-06 17:14:35 +04:00
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
// Hierarchy checking. Just check the first and last rule in the list.
|
|
|
|
|
|
|
|
// check that we're not inserting before a charset rule
|
|
|
|
nsCOMPtr<nsICSSRule> nextRule;
|
|
|
|
PRInt32 nextType = nsICSSRule::UNKNOWN_RULE;
|
|
|
|
nextRule = dont_AddRef((nsICSSRule*)mInner->mOrderedRules->ElementAt(aIndex));
|
|
|
|
if (nextRule) {
|
|
|
|
nextRule->GetType(nextType);
|
|
|
|
if (nextType == nsICSSRule::CHARSET_RULE) {
|
|
|
|
return NS_ERROR_DOM_HIERARCHY_REQUEST_ERR;
|
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
// check last rule in list
|
|
|
|
nsCOMPtr<nsICSSRule> lastRule = dont_AddRef((nsICSSRule*)rules->ElementAt(rulecount-1));
|
|
|
|
PRInt32 lastType = nsICSSRule::UNKNOWN_RULE;
|
|
|
|
lastRule->GetType(lastType);
|
|
|
|
|
|
|
|
if (nextType == nsICSSRule::IMPORT_RULE &&
|
|
|
|
lastType != nsICSSRule::CHARSET_RULE &&
|
|
|
|
lastType != nsICSSRule::IMPORT_RULE) {
|
|
|
|
return NS_ERROR_DOM_HIERARCHY_REQUEST_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nextType == nsICSSRule::NAMESPACE_RULE &&
|
|
|
|
lastType != nsICSSRule::CHARSET_RULE &&
|
|
|
|
lastType != nsICSSRule::IMPORT_RULE &&
|
|
|
|
lastType != nsICSSRule::NAMESPACE_RULE) {
|
|
|
|
return NS_ERROR_DOM_HIERARCHY_REQUEST_ERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check first rule in list
|
|
|
|
nsCOMPtr<nsICSSRule> firstRule = dont_AddRef((nsICSSRule*)rules->ElementAt(0));
|
|
|
|
PRInt32 firstType = nsICSSRule::UNKNOWN_RULE;
|
|
|
|
firstRule->GetType(firstType);
|
2001-09-05 04:00:18 +04:00
|
|
|
if (aIndex != 0) {
|
2001-09-06 17:14:35 +04:00
|
|
|
if (firstType == nsICSSRule::CHARSET_RULE) { // no inserting charset at nonzero position
|
2001-09-05 04:00:18 +04:00
|
|
|
return NS_ERROR_DOM_HIERARCHY_REQUEST_ERR;
|
|
|
|
}
|
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
nsCOMPtr<nsICSSRule> prevRule = dont_AddRef((nsICSSRule*)mInner->mOrderedRules->ElementAt(aIndex-1));
|
2001-09-05 04:00:18 +04:00
|
|
|
PRInt32 prevType = nsICSSRule::UNKNOWN_RULE;
|
|
|
|
prevRule->GetType(prevType);
|
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
if (firstType == nsICSSRule::IMPORT_RULE &&
|
2001-09-05 04:00:18 +04:00
|
|
|
prevType != nsICSSRule::CHARSET_RULE &&
|
|
|
|
prevType != nsICSSRule::IMPORT_RULE) {
|
|
|
|
return NS_ERROR_DOM_HIERARCHY_REQUEST_ERR;
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
1998-06-05 10:06:50 +04:00
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
if (firstType == nsICSSRule::NAMESPACE_RULE &&
|
2001-09-05 04:00:18 +04:00
|
|
|
prevType != nsICSSRule::CHARSET_RULE &&
|
|
|
|
prevType != nsICSSRule::IMPORT_RULE &&
|
|
|
|
prevType != nsICSSRule::NAMESPACE_RULE) {
|
|
|
|
return NS_ERROR_DOM_HIERARCHY_REQUEST_ERR;
|
|
|
|
}
|
1998-06-05 10:06:50 +04:00
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
result = mInner->mOrderedRules->InsertElementsAt(rules, aIndex);
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
2001-10-19 17:50:30 +04:00
|
|
|
DidDirty();
|
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
nsCOMPtr<nsICSSRule> cssRule;
|
|
|
|
PRUint32 counter;
|
|
|
|
for (counter = 0; counter < rulecount; counter++) {
|
|
|
|
cssRule = dont_AddRef((nsICSSRule*)rules->ElementAt(counter));
|
|
|
|
cssRule->SetStyleSheet(this);
|
|
|
|
|
|
|
|
PRInt32 type = nsICSSRule::UNKNOWN_RULE;
|
|
|
|
cssRule->GetType(type);
|
|
|
|
if (type == nsICSSRule::NAMESPACE_RULE) {
|
|
|
|
if (! mInner->mNameSpace) {
|
2002-11-30 02:44:07 +03:00
|
|
|
nsContentUtils::GetNSManagerWeakRef()->CreateRootNameSpace(*getter_AddRefs(mInner->mNameSpace));
|
2001-09-06 17:14:35 +04:00
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
NS_ENSURE_TRUE(mInner->mNameSpace, NS_ERROR_FAILURE);
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
nsCOMPtr<nsICSSNameSpaceRule> nameSpaceRule(do_QueryInterface(cssRule));
|
|
|
|
nsCOMPtr<nsINameSpace> newNameSpace;
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
nsCOMPtr<nsIAtom> prefix;
|
|
|
|
nsAutoString urlSpec;
|
|
|
|
nameSpaceRule->GetPrefix(*getter_AddRefs(prefix));
|
|
|
|
nameSpaceRule->GetURLSpec(urlSpec);
|
|
|
|
mInner->mNameSpace->CreateChildNameSpace(prefix, urlSpec,
|
|
|
|
*getter_AddRefs(newNameSpace));
|
|
|
|
if (newNameSpace) {
|
|
|
|
mInner->mNameSpace = newNameSpace;
|
|
|
|
}
|
|
|
|
}
|
2002-08-06 09:08:47 +04:00
|
|
|
|
|
|
|
// We don't notify immediately for @import rules, but rather when
|
|
|
|
// the sheet the rule is importing is loaded
|
|
|
|
PRBool notify = PR_TRUE;
|
|
|
|
if (type == nsICSSRule::IMPORT_RULE) {
|
|
|
|
nsCOMPtr<nsIDOMCSSImportRule> importRule(do_QueryInterface(cssRule));
|
|
|
|
NS_ASSERTION(importRule, "Rule which has type IMPORT_RULE and does not implement nsIDOMCSSImportRule!");
|
|
|
|
nsCOMPtr<nsIDOMCSSStyleSheet> childSheet;
|
|
|
|
importRule->GetStyleSheet(getter_AddRefs(childSheet));
|
|
|
|
if (!childSheet) {
|
|
|
|
notify = PR_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mDocument && notify) {
|
2001-09-06 17:14:35 +04:00
|
|
|
result = mDocument->StyleRuleAdded(this, cssRule);
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
2001-09-05 04:00:18 +04:00
|
|
|
}
|
|
|
|
}
|
2001-09-06 17:14:35 +04:00
|
|
|
|
|
|
|
if (mDocument) {
|
2001-09-05 04:00:18 +04:00
|
|
|
result = mDocument->EndUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
}
|
2001-09-28 05:38:36 +04:00
|
|
|
|
|
|
|
if (loader) {
|
|
|
|
loader->RecycleParser(css);
|
|
|
|
}
|
2001-09-06 17:14:35 +04:00
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
*aReturn = aIndex;
|
|
|
|
return NS_OK;
|
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
|
|
|
{
|
2001-09-05 04:00:18 +04:00
|
|
|
nsresult result = NS_ERROR_DOM_INDEX_SIZE_ERR;
|
2002-12-03 08:48:14 +03:00
|
|
|
// No doing this if the sheet is not complete!
|
|
|
|
PRBool complete;
|
|
|
|
GetComplete(complete);
|
|
|
|
if (!complete) {
|
|
|
|
return NS_ERROR_DOM_INVALID_ACCESS_ERR;
|
|
|
|
}
|
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) {
|
2001-09-05 04:00:18 +04:00
|
|
|
if (mDocument) {
|
|
|
|
result = mDocument->BeginUpdate();
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
result = WillDirty();
|
2001-09-05 04:00:18 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (NS_SUCCEEDED(result)) {
|
2001-09-05 04:00:18 +04:00
|
|
|
PRUint32 count;
|
|
|
|
mInner->mOrderedRules->Count(&count);
|
|
|
|
if (aIndex >= count)
|
|
|
|
return NS_ERROR_DOM_INDEX_SIZE_ERR;
|
1999-10-14 04:59:21 +04:00
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
nsCOMPtr<nsICSSRule> rule =
|
|
|
|
dont_AddRef((nsICSSRule*)mInner->mOrderedRules->ElementAt(aIndex));
|
2001-09-05 04:00:18 +04:00
|
|
|
if (rule) {
|
1999-10-14 04:59:21 +04:00
|
|
|
mInner->mOrderedRules->RemoveElementAt(aIndex);
|
|
|
|
rule->SetStyleSheet(nsnull);
|
|
|
|
DidDirty();
|
2001-09-05 04:00:18 +04:00
|
|
|
|
|
|
|
if (mDocument) {
|
|
|
|
result = mDocument->StyleRuleRemoved(this, rule);
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
|
|
|
|
result = mDocument->EndUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::DeleteRuleFromGroup(nsICSSGroupRule* aGroup, PRUint32 aIndex)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aGroup);
|
2002-12-03 08:48:14 +03:00
|
|
|
NS_ASSERTION(mInner && mInner->mComplete,
|
|
|
|
"No deleting from an incomplete sheet!");
|
2001-09-05 04:00:18 +04:00
|
|
|
nsresult result;
|
|
|
|
nsCOMPtr<nsICSSRule> rule;
|
|
|
|
result = aGroup->GetStyleRuleAt(aIndex, *getter_AddRefs(rule));
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
|
|
|
|
// check that the rule actually belongs to this sheet!
|
|
|
|
nsCOMPtr<nsIDOMCSSRule> domRule(do_QueryInterface(rule));
|
|
|
|
nsCOMPtr<nsIDOMCSSStyleSheet> ruleSheet;
|
|
|
|
result = domRule->GetParentStyleSheet(getter_AddRefs(ruleSheet));
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
nsCOMPtr<nsIDOMCSSStyleSheet> thisSheet;
|
|
|
|
this->QueryInterface(NS_GET_IID(nsIDOMCSSStyleSheet), getter_AddRefs(thisSheet));
|
|
|
|
|
|
|
|
if (thisSheet != ruleSheet) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
if (mDocument) {
|
|
|
|
result = mDocument->BeginUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
|
|
|
|
result = WillDirty();
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
|
|
|
|
result = aGroup->DeleteStyleRuleAt(aIndex);
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
|
|
|
|
rule->SetStyleSheet(nsnull);
|
|
|
|
|
|
|
|
DidDirty();
|
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
if (mDocument) {
|
|
|
|
result = mDocument->StyleRuleRemoved(this, rule);
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
|
|
|
|
result = mDocument->EndUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-03-24 01:56:05 +03:00
|
|
|
CSSStyleSheetImpl::InsertRuleIntoGroup(const nsAString & aRule, nsICSSGroupRule* aGroup, PRUint32 aIndex, PRUint32* _retval)
|
2001-09-05 04:00:18 +04:00
|
|
|
{
|
|
|
|
nsresult result;
|
2002-12-03 08:48:14 +03:00
|
|
|
NS_ASSERTION(mInner && mInner->mComplete,
|
|
|
|
"No inserting into an incomplete sheet!");
|
2001-09-05 04:00:18 +04:00
|
|
|
// check that the group actually belongs to this sheet!
|
|
|
|
nsCOMPtr<nsIDOMCSSRule> domGroup(do_QueryInterface(aGroup));
|
|
|
|
nsCOMPtr<nsIDOMCSSStyleSheet> groupSheet;
|
|
|
|
result = domGroup->GetParentStyleSheet(getter_AddRefs(groupSheet));
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
nsCOMPtr<nsIDOMCSSStyleSheet> thisSheet;
|
|
|
|
this->QueryInterface(NS_GET_IID(nsIDOMCSSStyleSheet), getter_AddRefs(thisSheet));
|
|
|
|
|
|
|
|
if (thisSheet != groupSheet) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the css parser
|
|
|
|
nsCOMPtr<nsICSSLoader> loader;
|
|
|
|
nsCOMPtr<nsICSSParser> css;
|
|
|
|
nsCOMPtr<nsIHTMLContentContainer> htmlContainer(do_QueryInterface(mDocument));
|
|
|
|
if (htmlContainer) {
|
|
|
|
htmlContainer->GetCSSLoader(*getter_AddRefs(loader));
|
|
|
|
}
|
2001-10-19 17:50:30 +04:00
|
|
|
NS_ASSERTION(loader || !mDocument, "Document with no CSS loader!");
|
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
if (loader) {
|
|
|
|
result = loader->GetParserFor(this, getter_AddRefs(css));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = NS_NewCSSParser(getter_AddRefs(css));
|
2001-10-19 17:50:30 +04:00
|
|
|
if (css) {
|
|
|
|
css->SetStyleSheet(this);
|
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
}
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
|
|
|
|
// parse and grab the rule
|
2002-12-03 08:48:14 +03:00
|
|
|
if (mDocument) {
|
|
|
|
result = mDocument->BeginUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
|
|
|
|
result = WillDirty();
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
nsCOMPtr<nsISupportsArray> rules;
|
|
|
|
result = css->ParseRule(aRule, mInner->mURL, getter_AddRefs(rules));
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
PRUint32 rulecount = 0;
|
|
|
|
rules->Count(&rulecount);
|
|
|
|
if (rulecount == 0 && !aRule.IsEmpty()) {
|
2001-09-05 04:00:18 +04:00
|
|
|
return NS_ERROR_DOM_SYNTAX_ERR;
|
|
|
|
}
|
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
PRUint32 counter;
|
|
|
|
nsCOMPtr<nsICSSRule> rule;
|
|
|
|
for (counter = 0; counter < rulecount; counter++) {
|
|
|
|
// Only rulesets are allowed in a group as of CSS2
|
|
|
|
PRInt32 type = nsICSSRule::UNKNOWN_RULE;
|
|
|
|
rule = dont_AddRef((nsICSSRule*)rules->ElementAt(counter));
|
|
|
|
rule->GetType(type);
|
|
|
|
if (type != nsICSSRule::STYLE_RULE) {
|
|
|
|
return NS_ERROR_DOM_HIERARCHY_REQUEST_ERR;
|
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
}
|
|
|
|
|
2001-09-06 17:14:35 +04:00
|
|
|
result = aGroup->InsertStyleRulesAt(aIndex, rules);
|
2001-09-05 04:00:18 +04:00
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
DidDirty();
|
2001-09-06 17:14:35 +04:00
|
|
|
for (counter = 0; counter < rulecount; counter++) {
|
|
|
|
rule = dont_AddRef((nsICSSRule*)rules->ElementAt(counter));
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
if (mDocument) {
|
|
|
|
result = mDocument->StyleRuleAdded(this, rule);
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
}
|
2001-09-06 17:14:35 +04:00
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
if (mDocument) {
|
|
|
|
result = mDocument->EndUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(result, result);
|
|
|
|
}
|
2001-09-05 04:00:18 +04:00
|
|
|
|
2001-09-28 05:38:36 +04:00
|
|
|
if (loader) {
|
|
|
|
loader->RecycleParser(css);
|
|
|
|
}
|
|
|
|
|
2001-09-05 04:00:18 +04:00
|
|
|
*_retval = aIndex;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-08-06 09:08:47 +04:00
|
|
|
// nsICSSLoaderObserver implementation
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSStyleSheetImpl::StyleSheetLoaded(nsICSSStyleSheet*aSheet, PRBool aNotify)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsCOMPtr<nsIStyleSheet> styleSheet(do_QueryInterface(aSheet));
|
|
|
|
NS_ASSERTION(styleSheet, "Sheet not implementing nsIStyleSheet!\n");
|
|
|
|
nsCOMPtr<nsIStyleSheet> parentSheet;
|
|
|
|
aSheet->GetParentSheet(*getter_AddRefs(parentSheet));
|
|
|
|
nsCOMPtr<nsIStyleSheet> thisSheet;
|
|
|
|
QueryInterface(NS_GET_IID(nsIStyleSheet), getter_AddRefs(thisSheet));
|
|
|
|
NS_ASSERTION(thisSheet == parentSheet, "We are being notified of a sheet load for a sheet that is not our child!\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (mDocument && aNotify) {
|
|
|
|
nsCOMPtr<nsIDOMCSSStyleSheet> domSheet(do_QueryInterface(aSheet));
|
|
|
|
NS_ENSURE_TRUE(domSheet, NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMCSSRule> ownerRule;
|
|
|
|
domSheet->GetOwnerRule(getter_AddRefs(ownerRule));
|
|
|
|
NS_ENSURE_TRUE(ownerRule, NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
nsresult rv = mDocument->BeginUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIStyleRule> styleRule(do_QueryInterface(ownerRule));
|
|
|
|
|
|
|
|
rv = mDocument->StyleRuleAdded(this, styleRule);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = mDocument->EndUpdate();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
// XXX for backwards compatibility and convenience
|
2003-03-05 18:08:41 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2003-03-05 18:08:41 +03:00
|
|
|
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),
|
2001-07-17 00:59:28 +04:00
|
|
|
mRuleCascades(nsnull)
|
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
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
MOZ_DECL_CTOR_COUNTER(RuleProcessorData)
|
2001-01-27 08:48:41 +03:00
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
RuleProcessorData::RuleProcessorData(nsIPresContext* aPresContext,
|
|
|
|
nsIContent* aContent,
|
|
|
|
nsRuleWalker* aRuleWalker,
|
|
|
|
nsCompatibility* aCompat /*= nsnull*/)
|
2001-01-27 08:48:41 +03:00
|
|
|
{
|
2001-11-11 02:51:45 +03:00
|
|
|
MOZ_COUNT_CTOR(RuleProcessorData);
|
2001-04-28 06:16:16 +04:00
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
NS_PRECONDITION(aPresContext, "null pointer");
|
2001-10-30 09:02:05 +03:00
|
|
|
NS_ASSERTION(!aContent || aContent->IsContentOfType(nsIContent::eELEMENT),
|
|
|
|
"non-element leaked into SelectorMatches");
|
|
|
|
|
2001-01-27 08:48:41 +03:00
|
|
|
mPresContext = aPresContext;
|
|
|
|
mContent = aContent;
|
|
|
|
mParentContent = nsnull;
|
2001-06-01 02:19:43 +04:00
|
|
|
mRuleWalker = aRuleWalker;
|
2001-11-11 02:51:45 +03:00
|
|
|
mScopedRoot = nsnull;
|
2001-01-27 08:48:41 +03:00
|
|
|
|
|
|
|
mContentTag = nsnull;
|
|
|
|
mContentID = nsnull;
|
|
|
|
mStyledContent = nsnull;
|
|
|
|
mIsHTMLContent = PR_FALSE;
|
|
|
|
mIsHTMLLink = PR_FALSE;
|
|
|
|
mIsSimpleXLink = PR_FALSE;
|
2002-03-07 06:34:29 +03:00
|
|
|
mIsChecked = PR_FALSE;
|
2001-01-27 08:48:41 +03:00
|
|
|
mLinkState = eLinkState_Unknown;
|
|
|
|
mEventState = NS_EVENT_STATE_UNSPECIFIED;
|
|
|
|
mNameSpaceID = kNameSpaceID_Unknown;
|
2001-04-28 06:16:16 +04:00
|
|
|
mPreviousSiblingData = nsnull;
|
|
|
|
mParentData = nsnull;
|
2002-08-14 18:01:39 +04:00
|
|
|
mLanguage = nsnull;
|
2001-01-27 08:48:41 +03:00
|
|
|
|
2002-06-26 01:16:17 +04:00
|
|
|
// get the compat. mode (unless it is provided)
|
2001-01-27 08:48:41 +03:00
|
|
|
if(!aCompat) {
|
2002-06-26 01:16:17 +04:00
|
|
|
mPresContext->GetCompatibilityMode(&mCompatMode);
|
2001-01-27 08:48:41 +03:00
|
|
|
} else {
|
2002-06-26 01:16:17 +04:00
|
|
|
mCompatMode = *aCompat;
|
2001-01-27 08:48:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
2001-08-17 12:14:14 +04:00
|
|
|
aContent->GetAttrCount(attrCount);
|
2001-01-27 08:48:41 +03:00
|
|
|
mHasAttributes = PRBool(attrCount > 0);
|
|
|
|
|
|
|
|
// check for HTMLContent and Link status
|
2001-06-01 02:19:43 +04:00
|
|
|
if (aContent->IsContentOfType(nsIContent::eHTML))
|
2001-01-27 08:48:41 +03:00
|
|
|
mIsHTMLContent = PR_TRUE;
|
|
|
|
|
|
|
|
// 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)
|
2002-08-14 16:34:39 +04:00
|
|
|
if (mIsHTMLContent && mHasAttributes) {
|
2001-01-27 08:48:41 +03:00
|
|
|
// 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
|
2002-08-14 16:34:39 +04:00
|
|
|
if(!mIsHTMLLink &&
|
2001-06-01 02:19:43 +04:00
|
|
|
mHasAttributes &&
|
2002-08-14 16:34:39 +04:00
|
|
|
!(mIsHTMLContent || aContent->IsContentOfType(nsIContent::eXUL)) &&
|
2001-01-27 08:48:41 +03:00
|
|
|
nsStyleUtil::IsSimpleXlink(aContent, mPresContext, &mLinkState)) {
|
|
|
|
mIsSimpleXLink = PR_TRUE;
|
|
|
|
}
|
2002-03-07 06:34:29 +03:00
|
|
|
|
|
|
|
if (mIsHTMLContent) {
|
|
|
|
PRBool isChecked = PR_FALSE;
|
|
|
|
if (mContentTag == nsHTMLAtoms::option) {
|
|
|
|
nsCOMPtr<nsIDOMHTMLOptionElement> optEl = do_QueryInterface(mContent);
|
|
|
|
optEl->GetSelected(&isChecked);
|
2002-03-13 13:12:33 +03:00
|
|
|
} else if (mContentTag == nsHTMLAtoms::input) {
|
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> inputEl = do_QueryInterface(mContent);
|
|
|
|
inputEl->GetChecked(&isChecked);
|
2002-03-07 06:34:29 +03:00
|
|
|
}
|
|
|
|
mIsChecked = isChecked;
|
|
|
|
}
|
2001-01-27 08:48:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
RuleProcessorData::~RuleProcessorData()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(RuleProcessorData);
|
|
|
|
|
|
|
|
if (mPreviousSiblingData)
|
|
|
|
mPreviousSiblingData->Destroy(mPresContext);
|
|
|
|
if (mParentData)
|
|
|
|
mParentData->Destroy(mPresContext);
|
|
|
|
|
|
|
|
NS_IF_RELEASE(mParentContent);
|
|
|
|
NS_IF_RELEASE(mContentTag);
|
|
|
|
NS_IF_RELEASE(mContentID);
|
|
|
|
NS_IF_RELEASE(mStyledContent);
|
2002-08-15 02:37:33 +04:00
|
|
|
|
|
|
|
delete mLanguage;
|
2001-11-11 02:51:45 +03:00
|
|
|
}
|
|
|
|
|
2002-08-14 16:34:39 +04:00
|
|
|
const nsString* RuleProcessorData::GetLang(void)
|
|
|
|
{
|
2002-08-14 18:01:39 +04:00
|
|
|
if (!mLanguage) {
|
|
|
|
mLanguage = new nsAutoString();
|
|
|
|
if (!mLanguage)
|
|
|
|
return nsnull;
|
2002-08-14 16:34:39 +04:00
|
|
|
nsCOMPtr<nsIContent> content = mContent;
|
|
|
|
while (content) {
|
|
|
|
PRInt32 attrCount = 0;
|
|
|
|
content->GetAttrCount(attrCount);
|
|
|
|
if (attrCount > 0) {
|
|
|
|
// xml:lang has precedence over lang on HTML elements (see
|
|
|
|
// XHTML1 section C.7).
|
|
|
|
nsAutoString value;
|
|
|
|
nsresult attrState = content->GetAttr(kNameSpaceID_XML,
|
|
|
|
nsHTMLAtoms::lang, value);
|
|
|
|
if (attrState != NS_CONTENT_ATTR_HAS_VALUE &&
|
|
|
|
content->IsContentOfType(nsIContent::eHTML)) {
|
|
|
|
attrState = content->GetAttr(kNameSpaceID_None,
|
|
|
|
nsHTMLAtoms::lang, value);
|
|
|
|
}
|
|
|
|
if (attrState == NS_CONTENT_ATTR_HAS_VALUE) {
|
2002-08-14 18:01:39 +04:00
|
|
|
*mLanguage = value;
|
2002-08-14 16:34:39 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nsIContent *parent;
|
|
|
|
content->GetParent(parent);
|
|
|
|
content = dont_AddRef(parent);
|
|
|
|
}
|
|
|
|
}
|
2002-08-14 18:01:39 +04:00
|
|
|
return mLanguage;
|
2002-08-14 16:34:39 +04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2001-06-30 15:02:25 +04:00
|
|
|
PRUnichar* value = (PRUnichar*)(const PRUnichar*)aValue.get();
|
|
|
|
PRUnichar* start = (PRUnichar*)(const PRUnichar*)valueList.get();
|
1999-10-14 04:59:21 +04:00
|
|
|
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 {
|
2002-02-10 18:49:46 +03:00
|
|
|
if (nsDependentString(value).Equals(nsDependentString(start),
|
|
|
|
nsCaseInsensitiveStringComparator())) {
|
1999-10-14 04:59:21 +04:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
start = ++end;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
|
|
|
|
2001-10-30 09:02:05 +03:00
|
|
|
inline PRBool IsEventPseudo(nsIAtom* aAtom)
|
1999-05-27 03:55:12 +04:00
|
|
|
{
|
2003-01-14 02:10:53 +03:00
|
|
|
return nsCSSPseudoClasses::active == aAtom ||
|
|
|
|
nsCSSPseudoClasses::mozDragOver == aAtom ||
|
|
|
|
nsCSSPseudoClasses::focus == aAtom ||
|
|
|
|
nsCSSPseudoClasses::hover == aAtom ||
|
|
|
|
nsCSSPseudoClasses::target == aAtom;
|
|
|
|
// XXX selected, enabled, disabled, selection?
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
|
2001-10-30 09:02:05 +03:00
|
|
|
inline PRBool IsLinkPseudo(nsIAtom* aAtom)
|
1999-06-03 05:57:52 +04:00
|
|
|
{
|
2002-11-17 18:37:56 +03:00
|
|
|
return PRBool ((nsCSSPseudoClasses::link == aAtom) ||
|
|
|
|
(nsCSSPseudoClasses::visited == aAtom) ||
|
|
|
|
(nsCSSPseudoClasses::mozAnyLink == aAtom));
|
1999-06-03 05:57:52 +04:00
|
|
|
}
|
|
|
|
|
2002-05-19 06:05:29 +04:00
|
|
|
// Return whether we should apply a "global" (i.e., universal-tag)
|
|
|
|
// selector for event states in quirks mode. Note that
|
|
|
|
// |data.mIsHTMLLink| is checked separately by the caller, so we return
|
|
|
|
// false for |nsHTMLAtoms::a|, which here means a named anchor.
|
|
|
|
inline PRBool IsQuirkEventSensitive(nsIAtom *aContentTag)
|
|
|
|
{
|
|
|
|
return PRBool ((nsHTMLAtoms::button == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::img == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::input == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::label == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::select == aContentTag) ||
|
|
|
|
(nsHTMLAtoms::textarea == aContentTag));
|
2000-03-31 11:08:36 +04:00
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2002-08-14 16:34:39 +04:00
|
|
|
static PRBool
|
|
|
|
DashMatchCompare(const nsAString& aAttributeValue,
|
|
|
|
const nsAString& aSelectorValue,
|
|
|
|
const PRBool aCaseSensitive)
|
|
|
|
{
|
|
|
|
PRBool result;
|
|
|
|
PRUint32 selectorLen = aSelectorValue.Length();
|
|
|
|
PRUint32 attributeLen = aAttributeValue.Length();
|
|
|
|
if (selectorLen > attributeLen) {
|
|
|
|
result = PR_FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nsAString::const_iterator iter;
|
|
|
|
if (selectorLen != attributeLen &&
|
|
|
|
*aAttributeValue.BeginReading(iter).advance(selectorLen) !=
|
|
|
|
PRUnichar('-')) {
|
|
|
|
// to match, the aAttributeValue must have a dash after the end of
|
|
|
|
// the aSelectorValue's text (unless the aSelectorValue and the
|
|
|
|
// aAttributeValue have the same text)
|
|
|
|
result = PR_FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const nsAString& attributeSubstring =
|
|
|
|
Substring(aAttributeValue, 0, selectorLen);
|
|
|
|
if (aCaseSensitive)
|
|
|
|
result = attributeSubstring.Equals(aSelectorValue);
|
|
|
|
else
|
|
|
|
result = attributeSubstring.Equals(aSelectorValue,
|
|
|
|
nsCaseInsensitiveStringComparator());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2000-04-28 14:02:12 +04:00
|
|
|
|
2002-04-11 07:49:30 +04:00
|
|
|
// NOTE: The |aStateMask| code isn't going to work correctly anymore if
|
|
|
|
// we start batching style changes, because if multiple states change in
|
|
|
|
// separate notifications then we might determine the style is not
|
|
|
|
// state-dependent when it really is (e.g., determining that a
|
|
|
|
// :hover:active rule no longer matches when both states are unset).
|
2001-11-11 02:51:45 +03:00
|
|
|
static PRBool SelectorMatches(RuleProcessorData &data,
|
2001-01-27 08:48:41 +03:00
|
|
|
nsCSSSelector* aSelector,
|
2002-04-11 07:49:30 +04:00
|
|
|
PRInt32 aStateMask, // states NOT to test
|
2003-02-22 19:10:53 +03:00
|
|
|
nsIAtom* aAttribute, // attribute NOT to test
|
2001-03-20 14:49:20 +03:00
|
|
|
PRInt8 aNegationIndex)
|
|
|
|
|
|
|
|
{
|
|
|
|
// if we are dealing with negations, reverse the values of PR_TRUE and PR_FALSE
|
|
|
|
PRBool localFalse = PRBool(0 < aNegationIndex);
|
|
|
|
PRBool localTrue = PRBool(0 == aNegationIndex);
|
2001-04-10 17:43:20 +04:00
|
|
|
PRBool result = localTrue;
|
2001-03-20 14:49:20 +03:00
|
|
|
|
2001-04-10 17:43:20 +04:00
|
|
|
// Do not perform the test if aNegationIndex==1
|
2001-03-20 14:49:20 +03:00
|
|
|
// because it then contains only negated IDs, classes, attributes and pseudo-
|
|
|
|
// classes
|
2001-06-05 05:00:11 +04:00
|
|
|
if (1 != aNegationIndex) {
|
2001-03-20 14:49:20 +03:00
|
|
|
if (kNameSpaceID_Unknown != aSelector->mNameSpace) {
|
|
|
|
if (data.mNameSpaceID != aSelector->mNameSpace) {
|
2001-04-10 17:43:20 +04:00
|
|
|
result = localFalse;
|
2001-03-20 14:49:20 +03:00
|
|
|
}
|
|
|
|
}
|
2001-04-10 17:43:20 +04:00
|
|
|
if (localTrue == result) {
|
|
|
|
if ((nsnull != aSelector->mTag) && (aSelector->mTag != data.mContentTag)) {
|
|
|
|
result = localFalse;
|
|
|
|
}
|
2001-03-20 14:49:20 +03:00
|
|
|
}
|
2001-06-05 05:00:11 +04:00
|
|
|
// optimization : bail out early if we can
|
|
|
|
if (!result) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
2001-04-10 17:43:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
result = PR_TRUE;
|
|
|
|
|
|
|
|
if (nsnull != aSelector->mPseudoClassList) { // test for pseudo class match
|
2001-04-05 23:53:13 +04:00
|
|
|
// first-child, root, lang, active, focus, hover, link, visited...
|
2001-03-20 14:49:20 +03:00
|
|
|
// XXX disabled, enabled, selected, selection
|
2002-08-14 16:34:39 +04:00
|
|
|
nsAtomStringList* pseudoClass = aSelector->mPseudoClassList;
|
2001-03-20 14:49:20 +03:00
|
|
|
|
2001-04-10 17:43:20 +04:00
|
|
|
while (result && (nsnull != pseudoClass)) {
|
2002-11-17 18:37:56 +03:00
|
|
|
if ((nsCSSPseudoClasses::firstChild == pseudoClass->mAtom) ||
|
|
|
|
(nsCSSPseudoClasses::firstNode == pseudoClass->mAtom) ) {
|
2001-03-20 14:49:20 +03:00
|
|
|
nsIContent* firstChild = nsnull;
|
|
|
|
nsIContent* parent = data.mParentContent;
|
|
|
|
if (parent) {
|
|
|
|
PRInt32 index = -1;
|
|
|
|
do {
|
|
|
|
parent->ChildAt(++index, firstChild);
|
2001-03-30 14:20:57 +04:00
|
|
|
if (firstChild) { // stop at first non-comment and non-whitespace node (and non-text node for firstChild)
|
2002-11-17 18:37:56 +03:00
|
|
|
if (IsSignificantChild(firstChild, (nsCSSPseudoClasses::firstNode == pseudoClass->mAtom))) {
|
1999-10-14 04:59:21 +04:00
|
|
|
break;
|
|
|
|
}
|
2001-03-20 14:49:20 +03:00
|
|
|
NS_RELEASE(firstChild);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (1 == 1);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
2001-03-20 14:49:20 +03:00
|
|
|
result = PRBool(localTrue == (data.mContent == firstChild));
|
|
|
|
NS_IF_RELEASE(firstChild);
|
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if ((nsCSSPseudoClasses::lastChild == pseudoClass->mAtom) ||
|
|
|
|
(nsCSSPseudoClasses::lastNode == pseudoClass->mAtom)) {
|
2001-03-20 14:49:20 +03:00
|
|
|
nsIContent* lastChild = nsnull;
|
|
|
|
nsIContent* parent = data.mParentContent;
|
|
|
|
if (parent) {
|
|
|
|
PRInt32 index;
|
|
|
|
parent->ChildCount(index);
|
|
|
|
do {
|
|
|
|
parent->ChildAt(--index, lastChild);
|
2001-03-30 14:20:57 +04:00
|
|
|
if (lastChild) { // stop at first non-comment and non-whitespace node (and non-text node for lastChild)
|
2002-11-17 18:37:56 +03:00
|
|
|
if (IsSignificantChild(lastChild, (nsCSSPseudoClasses::lastNode == pseudoClass->mAtom))) {
|
2000-04-28 14:02:12 +04:00
|
|
|
break;
|
|
|
|
}
|
2001-03-20 14:49:20 +03:00
|
|
|
NS_RELEASE(lastChild);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (1 == 1);
|
2000-04-28 14:02:12 +04:00
|
|
|
}
|
2001-03-20 14:49:20 +03:00
|
|
|
result = PRBool(localTrue == (data.mContent == lastChild));
|
|
|
|
NS_IF_RELEASE(lastChild);
|
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::empty == pseudoClass->mAtom) {
|
2001-04-11 06:55:41 +04:00
|
|
|
nsIContent* child = nsnull;
|
|
|
|
nsIContent* element = data.mContent;
|
|
|
|
PRInt32 index = -1;
|
|
|
|
do {
|
|
|
|
element->ChildAt(++index, child);
|
|
|
|
if (child) { // stop at first non-comment and non-whitespace node
|
|
|
|
if (IsSignificantChild(child, PR_TRUE)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NS_RELEASE(child);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (1 == 1);
|
|
|
|
result = PRBool(localTrue == (child == nsnull));
|
|
|
|
NS_IF_RELEASE(child);
|
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::root == pseudoClass->mAtom) {
|
2001-03-20 14:49:20 +03:00
|
|
|
if (data.mParentContent) {
|
|
|
|
result = localFalse;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = localTrue;
|
|
|
|
}
|
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::mozBoundElement == pseudoClass->mAtom) {
|
2001-11-11 02:51:45 +03:00
|
|
|
result = (data.mScopedRoot && data.mScopedRoot == data.mContent)
|
|
|
|
? localTrue : localFalse;
|
2001-04-09 02:22:47 +04:00
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::lang == pseudoClass->mAtom) {
|
2002-08-14 16:34:39 +04:00
|
|
|
NS_ASSERTION(nsnull != pseudoClass->mString, "null lang parameter");
|
|
|
|
result = localFalse;
|
|
|
|
if (pseudoClass->mString && *pseudoClass->mString) {
|
|
|
|
// We have to determine the language of the current element. Since
|
|
|
|
// this is currently no property and since the language is inherited
|
|
|
|
// from the parent we have to be prepared to look at all parent
|
|
|
|
// nodes. The language itself is encoded in the LANG attribute.
|
|
|
|
const nsString* lang = data.GetLang();
|
2002-08-14 18:01:39 +04:00
|
|
|
if (lang && !lang->IsEmpty()) { // null check for out-of-memory
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == DashMatchCompare(*lang,
|
|
|
|
nsDependentString(pseudoClass->mString), PR_FALSE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nsCOMPtr<nsIDocument> doc;
|
|
|
|
data.mContent->GetDocument(*getter_AddRefs(doc));
|
|
|
|
if (doc) {
|
|
|
|
// Try to get the language from the HTTP header or if this
|
|
|
|
// is missing as well from the preferences.
|
|
|
|
// The content language can be a comma-separated list of
|
|
|
|
// language codes.
|
|
|
|
nsAutoString language;
|
|
|
|
if (NS_SUCCEEDED(doc->GetContentLanguage(language))) {
|
|
|
|
nsDependentString langString(pseudoClass->mString);
|
|
|
|
language.StripWhitespace();
|
|
|
|
PRInt32 begin = 0;
|
|
|
|
PRInt32 len = language.Length();
|
|
|
|
while (begin < len) {
|
|
|
|
PRInt32 end = language.FindChar(PRUnichar(','), begin);
|
|
|
|
if (end == kNotFound) {
|
|
|
|
end = len;
|
|
|
|
}
|
|
|
|
if (DashMatchCompare(Substring(language, begin, end-begin),
|
|
|
|
langString,
|
|
|
|
PR_FALSE)) {
|
|
|
|
result = localTrue;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
begin = end + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-03-20 14:49:20 +03:00
|
|
|
}
|
|
|
|
else if (IsEventPseudo(pseudoClass->mAtom)) {
|
|
|
|
// check if the element is event-sensitive
|
2002-06-26 01:16:17 +04:00
|
|
|
if (data.mCompatMode == eCompatibility_NavQuirks &&
|
2003-01-15 00:50:27 +03:00
|
|
|
// global selector (but don't check .class):
|
|
|
|
!aSelector->mTag && !aSelector->mIDList && !aSelector->mAttrList &&
|
2002-05-19 06:05:29 +04:00
|
|
|
// :hover or :active
|
2002-11-17 18:37:56 +03:00
|
|
|
(nsCSSPseudoClasses::active == pseudoClass->mAtom ||
|
|
|
|
nsCSSPseudoClasses::hover == pseudoClass->mAtom) &&
|
2002-05-19 06:05:29 +04:00
|
|
|
// important for |IsQuirkEventSensitive|:
|
|
|
|
data.mIsHTMLContent && !data.mIsHTMLLink &&
|
|
|
|
!IsQuirkEventSensitive(data.mContentTag)) {
|
|
|
|
// In quirks mode, only make certain elements sensitive to
|
|
|
|
// selectors ":hover" and ":active".
|
|
|
|
// XXX Once we make ":active" work correctly (bug 65917) this
|
|
|
|
// quirk should apply only to ":hover" (if to anything at all).
|
2001-03-20 14:49:20 +03:00
|
|
|
result = localFalse;
|
2002-04-11 07:49:30 +04:00
|
|
|
} else {
|
2002-11-17 18:37:56 +03:00
|
|
|
if (nsCSSPseudoClasses::active == pseudoClass->mAtom) {
|
2002-04-11 07:49:30 +04:00
|
|
|
result = (aStateMask & NS_EVENT_STATE_ACTIVE) ||
|
|
|
|
(localTrue == (0 != (data.mEventState & NS_EVENT_STATE_ACTIVE)));
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::focus == pseudoClass->mAtom) {
|
2002-04-11 07:49:30 +04:00
|
|
|
result = (aStateMask & NS_EVENT_STATE_FOCUS) ||
|
|
|
|
(localTrue == (0 != (data.mEventState & NS_EVENT_STATE_FOCUS)));
|
2001-03-20 14:49:20 +03:00
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::hover == pseudoClass->mAtom) {
|
2002-04-11 07:49:30 +04:00
|
|
|
result = (aStateMask & NS_EVENT_STATE_HOVER) ||
|
|
|
|
(localTrue == (0 != (data.mEventState & NS_EVENT_STATE_HOVER)));
|
2001-03-20 14:49:20 +03:00
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::mozDragOver == pseudoClass->mAtom) {
|
2002-04-11 07:49:30 +04:00
|
|
|
result = (aStateMask & NS_EVENT_STATE_DRAGOVER) ||
|
|
|
|
(localTrue == (0 != (data.mEventState & NS_EVENT_STATE_DRAGOVER)));
|
2001-03-20 14:49:20 +03:00
|
|
|
}
|
2003-01-14 02:10:53 +03:00
|
|
|
else if (nsCSSPseudoClasses::target == pseudoClass->mAtom) {
|
|
|
|
result = (aStateMask & NS_EVENT_STATE_URLTARGET) ||
|
|
|
|
(localTrue == (0 != (data.mEventState & NS_EVENT_STATE_URLTARGET)));
|
|
|
|
}
|
2001-03-20 14:49:20 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (IsLinkPseudo(pseudoClass->mAtom)) {
|
|
|
|
if (data.mIsHTMLLink || data.mIsSimpleXLink) {
|
2002-04-11 07:49:30 +04:00
|
|
|
if (result) {
|
2002-11-17 18:37:56 +03:00
|
|
|
if (nsCSSPseudoClasses::mozAnyLink == pseudoClass->mAtom) {
|
2001-06-05 05:00:11 +04:00
|
|
|
result = localTrue;
|
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::link == pseudoClass->mAtom) {
|
2001-03-20 14:49:20 +03:00
|
|
|
result = PRBool(localTrue == (eLinkState_Unvisited == data.mLinkState));
|
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::visited == pseudoClass->mAtom) {
|
2001-03-20 14:49:20 +03:00
|
|
|
result = PRBool(localTrue == (eLinkState_Visited == data.mLinkState));
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2001-03-20 14:49:20 +03:00
|
|
|
result = localFalse; // not a link
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
}
|
2002-11-17 18:37:56 +03:00
|
|
|
else if (nsCSSPseudoClasses::checked == pseudoClass->mAtom) {
|
2002-03-07 06:34:29 +03:00
|
|
|
// This pseudoclass matches the selected state on the following elements:
|
|
|
|
// <option>
|
|
|
|
// <input type=checkbox>
|
|
|
|
// <input type=radio>
|
2002-04-11 07:49:30 +04:00
|
|
|
if (!(aStateMask & NS_EVENT_STATE_CHECKED))
|
2002-03-07 06:34:29 +03:00
|
|
|
result = data.mIsChecked ? localTrue : localFalse;
|
|
|
|
}
|
2001-03-20 14:49:20 +03:00
|
|
|
else {
|
|
|
|
result = localFalse; // unknown pseudo class
|
|
|
|
}
|
|
|
|
pseudoClass = pseudoClass->mNext;
|
1999-04-20 04:05:54 +04:00
|
|
|
}
|
|
|
|
}
|
2001-03-21 11:10:20 +03:00
|
|
|
|
|
|
|
// namespace/tag match
|
2003-02-22 19:10:53 +03:00
|
|
|
|
|
|
|
if (result && aSelector->mAttrList) {
|
|
|
|
// test for attribute match
|
|
|
|
if (!data.mHasAttributes && !aAttribute) {
|
|
|
|
// if no attributes on the content, no match
|
2001-03-21 11:10:20 +03:00
|
|
|
result = localFalse;
|
|
|
|
} else {
|
2001-04-10 17:43:20 +04:00
|
|
|
result = localTrue;
|
2001-03-21 11:10:20 +03:00
|
|
|
nsAttrSelector* attr = aSelector->mAttrList;
|
|
|
|
do {
|
2003-02-22 19:10:53 +03:00
|
|
|
if (attr->mAttr == aAttribute) {
|
|
|
|
result = PR_TRUE;
|
|
|
|
}
|
|
|
|
else if (!data.mContent->HasAttr(attr->mNameSpace, attr->mAttr)) {
|
2001-03-21 11:10:20 +03:00
|
|
|
result = localFalse;
|
|
|
|
}
|
2002-03-16 18:24:08 +03:00
|
|
|
else if (attr->mFunction != NS_ATTR_FUNC_SET) {
|
|
|
|
nsAutoString value;
|
2002-05-29 04:49:44 +04:00
|
|
|
#ifdef DEBUG
|
2002-03-16 18:24:08 +03:00
|
|
|
nsresult attrState =
|
2002-05-29 04:49:44 +04:00
|
|
|
#endif
|
2002-03-16 18:24:08 +03:00
|
|
|
data.mContent->GetAttr(attr->mNameSpace, attr->mAttr, value);
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(attrState) &&
|
|
|
|
NS_CONTENT_ATTR_NOT_THERE != attrState,
|
|
|
|
"HasAttr lied or GetAttr failed");
|
2001-04-18 08:36:52 +04:00
|
|
|
PRBool isCaseSensitive = attr->mCaseSensitive;
|
2001-03-21 11:10:20 +03:00
|
|
|
switch (attr->mFunction) {
|
|
|
|
case NS_ATTR_FUNC_EQUALS:
|
|
|
|
if (isCaseSensitive) {
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == value.Equals(attr->mValue);
|
2001-03-21 11:10:20 +03:00
|
|
|
}
|
|
|
|
else {
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == value.Equals(attr->mValue, nsCaseInsensitiveStringComparator());
|
2001-03-21 11:10:20 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_ATTR_FUNC_INCLUDES:
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == ValueIncludes(value, attr->mValue, isCaseSensitive);
|
2001-03-21 11:10:20 +03:00
|
|
|
break;
|
|
|
|
case NS_ATTR_FUNC_DASHMATCH:
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == DashMatchCompare(value, attr->mValue, isCaseSensitive);
|
2001-03-21 11:10:20 +03:00
|
|
|
break;
|
|
|
|
case NS_ATTR_FUNC_ENDSMATCH:
|
2001-04-28 06:16:16 +04:00
|
|
|
{
|
|
|
|
PRUint32 selLen = attr->mValue.Length();
|
|
|
|
PRUint32 valLen = value.Length();
|
|
|
|
if (selLen > valLen) {
|
2001-06-20 02:46:08 +04:00
|
|
|
result = localFalse;
|
2001-04-28 06:16:16 +04:00
|
|
|
} else {
|
|
|
|
if (isCaseSensitive)
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == Substring(value, valLen - selLen, selLen).Equals(attr->mValue, nsDefaultStringComparator());
|
2001-04-28 06:16:16 +04:00
|
|
|
else
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == Substring(value, valLen - selLen, selLen).Equals(attr->mValue, nsCaseInsensitiveStringComparator());
|
2001-04-28 06:16:16 +04:00
|
|
|
}
|
2001-03-21 11:10:20 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_ATTR_FUNC_BEGINSMATCH:
|
2001-04-28 06:16:16 +04:00
|
|
|
{
|
|
|
|
PRUint32 selLen = attr->mValue.Length();
|
|
|
|
PRUint32 valLen = value.Length();
|
|
|
|
if (selLen > valLen) {
|
2001-06-20 02:46:08 +04:00
|
|
|
result = localFalse;
|
2001-04-28 06:16:16 +04:00
|
|
|
} else {
|
|
|
|
if (isCaseSensitive)
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == Substring(value, 0, selLen).Equals(attr->mValue, nsDefaultStringComparator());
|
2001-04-28 06:16:16 +04:00
|
|
|
else
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == Substring(value, 0, selLen).Equals(attr->mValue, nsCaseInsensitiveStringComparator());
|
2001-04-28 06:16:16 +04:00
|
|
|
}
|
2001-03-21 11:10:20 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_ATTR_FUNC_CONTAINSMATCH:
|
2002-08-14 16:34:39 +04:00
|
|
|
result = localTrue == (FindInReadable(attr->mValue, value, nsCaseInsensitiveStringComparator()));
|
2001-03-21 11:10:20 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
attr = attr->mNext;
|
2001-04-10 17:43:20 +04:00
|
|
|
} while (result && (nsnull != attr));
|
2001-03-21 11:10:20 +03:00
|
|
|
}
|
|
|
|
}
|
2002-10-15 03:57:17 +04:00
|
|
|
if (result && (aSelector->mIDList || aSelector->mClassList)) {
|
|
|
|
// test for ID & class match
|
2001-03-21 11:10:20 +03:00
|
|
|
result = localFalse;
|
|
|
|
if (data.mStyledContent) {
|
2002-06-26 01:16:17 +04:00
|
|
|
// case sensitivity: bug 93371
|
|
|
|
PRBool isCaseSensitive = data.mCompatMode != eCompatibility_NavQuirks;
|
2001-03-21 11:10:20 +03:00
|
|
|
nsAtomList* IDList = aSelector->mIDList;
|
2003-02-22 19:10:53 +03:00
|
|
|
if (nsnull == IDList || aAttribute == nsHTMLAtoms::id) {
|
2001-04-10 17:43:20 +04:00
|
|
|
result = PR_TRUE;
|
2001-03-21 11:10:20 +03:00
|
|
|
}
|
|
|
|
else if (nsnull != data.mContentID) {
|
2001-06-20 02:46:08 +04:00
|
|
|
result = PR_TRUE;
|
2001-11-21 06:30:44 +03:00
|
|
|
if (isCaseSensitive) {
|
|
|
|
do {
|
|
|
|
if (localTrue == (IDList->mAtom != data.mContentID)) {
|
|
|
|
result = PR_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
IDList = IDList->mNext;
|
|
|
|
} while (IDList);
|
|
|
|
} else {
|
2003-03-25 21:55:59 +03:00
|
|
|
const char* id1Str;
|
|
|
|
data.mContentID->GetUTF8String(&id1Str);
|
|
|
|
nsDependentCString id1(id1Str);
|
2001-11-21 06:30:44 +03:00
|
|
|
do {
|
2003-03-25 21:55:59 +03:00
|
|
|
const char* id2Str;
|
|
|
|
IDList->mAtom->GetUTF8String(&id2Str);
|
|
|
|
nsDependentCString id2(id2Str);
|
2002-02-10 18:49:46 +03:00
|
|
|
if (localTrue !=
|
2003-03-25 21:55:59 +03:00
|
|
|
id1.Equals(id2, nsCaseInsensitiveCStringComparator())) {
|
2001-11-21 06:30:44 +03:00
|
|
|
result = PR_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
IDList = IDList->mNext;
|
|
|
|
} while (IDList);
|
2001-03-21 11:10:20 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
if (result && aAttribute != nsHTMLAtoms::kClass) {
|
2001-03-21 11:10:20 +03:00
|
|
|
nsAtomList* classList = aSelector->mClassList;
|
|
|
|
while (nsnull != classList) {
|
2002-11-25 14:21:22 +03:00
|
|
|
if (localTrue == (!data.mStyledContent->HasClass(classList->mAtom, isCaseSensitive))) {
|
2001-06-20 02:46:08 +04:00
|
|
|
result = PR_FALSE;
|
2001-03-21 11:10:20 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
classList = classList->mNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-20 14:49:20 +03:00
|
|
|
// apply SelectorMatches to the negated selectors in the chain
|
2001-04-10 17:43:20 +04:00
|
|
|
if (result && (nsnull != aSelector->mNegations)) {
|
2002-04-11 07:49:30 +04:00
|
|
|
result = SelectorMatches(data, aSelector->mNegations, aStateMask,
|
2003-02-22 19:10:53 +03:00
|
|
|
aAttribute, aNegationIndex+1);
|
2001-03-20 14:49:20 +03:00
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
return result;
|
1999-04-20 04:05:54 +04:00
|
|
|
}
|
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
static PRBool SelectorMatchesTree(RuleProcessorData &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);
|
2001-11-11 02:51:45 +03:00
|
|
|
RuleProcessorData* curdata = &data;
|
1999-10-14 04:59:21 +04:00
|
|
|
while (nsnull != selector) { // check compound selectors
|
2001-04-28 06:16:16 +04:00
|
|
|
// Find the appropriate content (whether parent or previous sibling)
|
2001-11-11 02:51:45 +03:00
|
|
|
// to check next, and if we don't already have a RuleProcessorData
|
2001-04-28 06:16:16 +04:00
|
|
|
// for it, create one.
|
|
|
|
|
2000-04-22 04:47:18 +04:00
|
|
|
// for adjacent sibling combinators, the content to test against the
|
|
|
|
// selector is the previous sibling
|
2002-06-26 01:16:17 +04:00
|
|
|
nsCompatibility compat = curdata->mCompatMode;
|
2001-11-11 02:51:45 +03:00
|
|
|
RuleProcessorData* newdata;
|
2000-04-22 04:47:18 +04:00
|
|
|
if (PRUnichar('+') == selector->mOperator) {
|
2001-04-28 06:16:16 +04:00
|
|
|
newdata = curdata->mPreviousSiblingData;
|
|
|
|
if (!newdata) {
|
|
|
|
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);
|
|
|
|
newdata =
|
2001-11-11 02:51:45 +03:00
|
|
|
new (curdata->mPresContext) RuleProcessorData(curdata->mPresContext, content,
|
2001-06-01 02:19:43 +04:00
|
|
|
curdata->mRuleWalker, &compat);
|
2001-04-28 06:16:16 +04:00
|
|
|
curdata->mPreviousSiblingData = newdata;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NS_RELEASE(content);
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IF_RELEASE(tag);
|
|
|
|
}
|
2001-04-28 06:16:16 +04:00
|
|
|
NS_RELEASE(parent);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
2001-04-28 06:16:16 +04:00
|
|
|
} else {
|
|
|
|
content = newdata->mContent;
|
|
|
|
NS_ADDREF(content);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
}
|
2000-04-22 04:47:18 +04:00
|
|
|
// for descendant combinators and child combinators, the content
|
|
|
|
// to test against is the parent
|
|
|
|
else {
|
2001-04-28 06:16:16 +04:00
|
|
|
newdata = curdata->mParentData;
|
|
|
|
if (!newdata) {
|
|
|
|
lastContent->GetParent(content);
|
|
|
|
if (content) {
|
2001-11-11 02:51:45 +03:00
|
|
|
newdata = new (curdata->mPresContext) RuleProcessorData(curdata->mPresContext, content,
|
2001-06-01 02:19:43 +04:00
|
|
|
curdata->mRuleWalker, &compat);
|
2001-04-28 06:16:16 +04:00
|
|
|
curdata->mParentData = newdata;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
content = newdata->mContent;
|
|
|
|
NS_ADDREF(content);
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
2001-04-28 06:16:16 +04:00
|
|
|
if (! newdata) {
|
|
|
|
NS_ASSERTION(!content, "content must be null");
|
1999-10-14 04:59:21 +04:00
|
|
|
break;
|
|
|
|
}
|
2003-02-22 19:10:53 +03:00
|
|
|
if (SelectorMatches(*newdata, selector, 0, nsnull, 0)) {
|
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-04-28 06:16:16 +04: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;
|
2001-04-28 06:16:16 +04:00
|
|
|
curdata = newdata;
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
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
|
|
|
{
|
2001-11-11 02:51:45 +03:00
|
|
|
ElementRuleProcessorData* data = (ElementRuleProcessorData*)aData;
|
1998-05-21 00:34:17 +04:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
nsCSSSelector* selector = aRule->FirstSelector();
|
2003-02-22 19:10:53 +03:00
|
|
|
if (SelectorMatches(*data, selector, 0, nsnull, 0)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
selector = selector->mNext;
|
2001-01-27 08:48:41 +03:00
|
|
|
if (SelectorMatchesTree(*data, selector)) {
|
2001-11-21 06:30:44 +03:00
|
|
|
// for performance, require that every implementation of
|
|
|
|
// nsICSSStyleRule return the same pointer for nsIStyleRule (why
|
|
|
|
// would anything multiply inherit nsIStyleRule anyway?)
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsCOMPtr<nsIStyleRule> iRule = do_QueryInterface(aRule);
|
|
|
|
NS_ASSERTION(NS_STATIC_CAST(nsIStyleRule*, aRule) == iRule.get(),
|
|
|
|
"Please fix QI so this performance optimization is valid");
|
|
|
|
#endif
|
|
|
|
data->mRuleWalker->Forward(NS_STATIC_CAST(nsIStyleRule*, aRule));
|
|
|
|
// nsStyleSet will deal with the !important rule
|
1999-06-10 09:29:22 +04:00
|
|
|
}
|
|
|
|
}
|
1999-05-27 03:55:12 +04:00
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
2001-11-11 02:51:45 +03:00
|
|
|
CSSRuleProcessor::RulesMatching(ElementRuleProcessorData *aData,
|
|
|
|
nsIAtom* aMedium)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aData->mContent->IsContentOfType(nsIContent::eELEMENT),
|
2001-10-30 09:02:05 +03:00
|
|
|
"content must be element");
|
1999-06-15 10:20:46 +04:00
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
RuleCascadeData* cascade = GetRuleCascade(aData->mPresContext, aMedium);
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
if (cascade) {
|
1999-12-01 06:27:25 +03:00
|
|
|
nsAutoVoidArray classArray;
|
1999-06-15 10:20:46 +04:00
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
nsIStyledContent* styledContent = aData->mStyledContent;
|
|
|
|
if (styledContent)
|
1999-10-14 04:59:21 +04:00
|
|
|
styledContent->GetClasses(classArray);
|
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
cascade->mRuleHash.EnumerateAllRules(aData->mNameSpaceID, aData->mContentTag, aData->mContentID, classArray, ContentEnumFunc, aData);
|
1999-06-15 10:20:46 +04:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
static void PseudoEnumFunc(nsICSSStyleRule* aRule, void* aData)
|
1999-05-27 03:55:12 +04:00
|
|
|
{
|
2001-11-11 02:51:45 +03:00
|
|
|
PseudoRuleProcessorData* data = (PseudoRuleProcessorData*)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
|
|
|
|
2001-06-05 05:00:11 +04:00
|
|
|
NS_ASSERTION(selector->mTag == data->mPseudoTag, "RuleHash failure");
|
|
|
|
PRBool matches = PR_TRUE;
|
2001-02-16 00:25:31 +03:00
|
|
|
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
|
|
|
|
}
|
2003-02-22 19:10:53 +03:00
|
|
|
if (SelectorMatches(*data, selector, 0, nsnull, 0)) {
|
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
|
|
|
|
}
|
|
|
|
|
2001-11-21 06:30:44 +03:00
|
|
|
// for performance, require that every implementation of
|
|
|
|
// nsICSSStyleRule return the same pointer for nsIStyleRule (why
|
|
|
|
// would anything multiply inherit nsIStyleRule anyway?)
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsCOMPtr<nsIStyleRule> iRule = do_QueryInterface(aRule);
|
|
|
|
NS_ASSERTION(NS_STATIC_CAST(nsIStyleRule*, aRule) == iRule.get(),
|
|
|
|
"Please fix QI so this performance optimization is valid");
|
|
|
|
#endif
|
|
|
|
data->mRuleWalker->Forward(NS_STATIC_CAST(nsIStyleRule*, aRule));
|
|
|
|
// nsStyleSet will deal with the !important rule
|
1998-05-21 00:34:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
NS_IMETHODIMP
|
2001-11-11 02:51:45 +03:00
|
|
|
CSSRuleProcessor::RulesMatching(PseudoRuleProcessorData* aData,
|
|
|
|
nsIAtom* aMedium)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(!aData->mContent ||
|
|
|
|
aData->mContent->IsContentOfType(nsIContent::eELEMENT),
|
2001-10-30 09:02:05 +03:00
|
|
|
"content (if present) must be element");
|
1998-10-06 05:39:33 +04:00
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
RuleCascadeData* cascade = GetRuleCascade(aData->mPresContext, aMedium);
|
1998-11-17 05:14:38 +03:00
|
|
|
|
1999-10-14 04:59:21 +04:00
|
|
|
if (cascade) {
|
2001-11-11 02:51:45 +03:00
|
|
|
cascade->mRuleHash.EnumerateTagRules(aData->mPseudoTag,
|
|
|
|
PseudoEnumFunc, aData);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(PRBool) StateEnumFunc(void* aSelector, void* aData)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
2003-02-22 19:10:53 +03:00
|
|
|
StateRuleProcessorData* data =
|
|
|
|
NS_STATIC_CAST(StateRuleProcessorData*, aData);
|
|
|
|
nsCSSSelector* selector = NS_STATIC_CAST(nsCSSSelector*, aSelector);
|
1998-10-06 05:39:33 +04:00
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
// Return whether we want to halt the enumeration, which is the
|
|
|
|
// negation of whether we find a match (ignoring the event state mask).
|
|
|
|
return !( SelectorMatches(*data, selector, data->mStateMask, nsnull, 0) &&
|
|
|
|
SelectorMatchesTree(*data, selector->mNext) );
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2001-11-11 02:51:45 +03:00
|
|
|
CSSRuleProcessor::HasStateDependentStyle(StateRuleProcessorData* aData,
|
2002-04-11 07:49:30 +04:00
|
|
|
nsIAtom* aMedium,
|
|
|
|
PRBool* aResult)
|
1999-10-14 04:59:21 +04:00
|
|
|
{
|
2001-11-11 02:51:45 +03:00
|
|
|
NS_PRECONDITION(aData->mContent->IsContentOfType(nsIContent::eELEMENT),
|
2001-10-30 09:02:05 +03:00
|
|
|
"content must be element");
|
|
|
|
|
2001-11-11 02:51:45 +03:00
|
|
|
RuleCascadeData* cascade = GetRuleCascade(aData->mPresContext, aMedium);
|
1999-10-14 04:59:21 +04:00
|
|
|
|
2002-04-16 02:49:26 +04:00
|
|
|
// Look up the content node in the state rule list, which points to
|
|
|
|
// any (CSS2 definition) simple selector (whether or not it is the
|
|
|
|
// subject) that has a state pseudo-class on it. This means that this
|
|
|
|
// code will be matching selectors that aren't real selectors in any
|
|
|
|
// stylesheet (e.g., if there is a selector "body > p:hover > a", then
|
|
|
|
// "body > p:hover" will be in |cascade->mStateSelectors|). Note that
|
|
|
|
// |IsStateSelector| below determines which selectors are in
|
|
|
|
// |cascade->mStateSelectors|.
|
|
|
|
// The enumeration function signals the presence of state by stopping
|
|
|
|
// the enumeration, which is reflected in the return value from
|
|
|
|
// |EnumerateForwards|.
|
2002-04-11 07:49:30 +04:00
|
|
|
*aResult = cascade &&
|
|
|
|
!cascade->mStateSelectors.EnumerateForwards(StateEnumFunc, aData);
|
1998-10-06 05:39:33 +04:00
|
|
|
|
2002-04-11 07:49:30 +04:00
|
|
|
return NS_OK;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
PR_STATIC_CALLBACK(PRBool) AttributeEnumFunc(void* aSelector, void* aData)
|
|
|
|
{
|
|
|
|
AttributeRuleProcessorData* data =
|
|
|
|
NS_STATIC_CAST(AttributeRuleProcessorData*, aData);
|
|
|
|
nsCSSSelector* selector = NS_STATIC_CAST(nsCSSSelector*, aSelector);
|
|
|
|
|
|
|
|
// Return whether we want to halt the enumeration, which is the
|
|
|
|
// negation of whether we find a match (ignoring the event state mask).
|
|
|
|
return !( SelectorMatches(*data, selector, 0, data->mAttribute, 0) &&
|
|
|
|
SelectorMatchesTree(*data, selector->mNext) );
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
CSSRuleProcessor::HasAttributeDependentStyle(AttributeRuleProcessorData* aData,
|
|
|
|
nsIAtom* aMedium,
|
|
|
|
PRBool* aResult)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aData->mContent->IsContentOfType(nsIContent::eELEMENT),
|
|
|
|
"content must be element");
|
|
|
|
|
2003-03-06 22:19:55 +03:00
|
|
|
// Since we always have :-moz-any-link (and almost always have :link
|
|
|
|
// and :visited rules from prefs), rather than hacking AddRule below
|
|
|
|
// to add |href| to the hash, we'll just handle it here.
|
|
|
|
if (aData->mAttribute == nsHTMLAtoms::href &&
|
|
|
|
aData->mIsHTMLContent &&
|
|
|
|
(aData->mContentTag == nsHTMLAtoms::a ||
|
|
|
|
aData->mContentTag == nsHTMLAtoms::area ||
|
|
|
|
aData->mContentTag == nsHTMLAtoms::link)) {
|
|
|
|
*aResult = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
// XXX What about XLinks?
|
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
RuleCascadeData* cascade = GetRuleCascade(aData->mPresContext, aMedium);
|
|
|
|
|
|
|
|
// We do the same thing for attributes that we do for state selectors
|
|
|
|
// (see HasStateDependentStyle), except that instead of one big list
|
|
|
|
// we have a hashtable with a per-attribute list.
|
|
|
|
|
|
|
|
*aResult = PR_FALSE;
|
|
|
|
if (cascade) {
|
|
|
|
AttributeSelectorEntry *entry = NS_STATIC_CAST(AttributeSelectorEntry*,
|
|
|
|
PL_DHashTableOperate(&cascade->mAttributeSelectors, aData->mAttribute,
|
|
|
|
PL_DHASH_LOOKUP));
|
|
|
|
if (PL_DHASH_ENTRY_IS_BUSY(entry)) {
|
|
|
|
*aResult =
|
|
|
|
!entry->mSelectors->EnumerateForwards(AttributeEnumFunc, aData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2001-07-17 00:59:28 +04:00
|
|
|
RuleCascadeData *data = mRuleCascades;
|
2001-08-14 06:54:35 +04:00
|
|
|
mRuleCascades = nsnull;
|
2001-07-17 00:59:28 +04:00
|
|
|
while (data) {
|
|
|
|
RuleCascadeData *next = data->mNext;
|
|
|
|
delete data;
|
|
|
|
data = next;
|
1998-10-06 05:39:33 +04:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-16 02:49:26 +04:00
|
|
|
// This function should return true only for selectors that need to be
|
|
|
|
// checked by |HasStateDependentStyle|.
|
2001-10-30 09:02:05 +03:00
|
|
|
inline
|
1999-10-14 04:59:21 +04:00
|
|
|
PRBool IsStateSelector(nsCSSSelector& aSelector)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
2002-08-14 16:34:39 +04:00
|
|
|
nsAtomStringList* pseudoClass = aSelector.mPseudoClassList;
|
1999-10-14 04:59:21 +04:00
|
|
|
while (pseudoClass) {
|
2002-11-17 18:37:56 +03:00
|
|
|
if ((pseudoClass->mAtom == nsCSSPseudoClasses::active) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSPseudoClasses::checked) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSPseudoClasses::mozDragOver) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSPseudoClasses::focus) ||
|
2003-01-14 02:10:53 +03:00
|
|
|
(pseudoClass->mAtom == nsCSSPseudoClasses::hover) ||
|
|
|
|
(pseudoClass->mAtom == nsCSSPseudoClasses::target)) {
|
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
|
|
|
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
|
|
|
}
|
|
|
|
|
2002-04-16 02:49:26 +04:00
|
|
|
static PRBool
|
2003-02-22 19:10:53 +03:00
|
|
|
AddRule(nsISupports* aRule, void* aCascade)
|
1998-10-06 05:39:33 +04:00
|
|
|
{
|
2002-04-16 02:49:26 +04:00
|
|
|
nsICSSStyleRule* rule = NS_STATIC_CAST(nsICSSStyleRule*, aRule);
|
|
|
|
RuleCascadeData *cascade = NS_STATIC_CAST(RuleCascadeData*, aCascade);
|
1999-06-03 05:57:52 +04:00
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
// Build the rule hash.
|
2002-05-29 04:49:44 +04:00
|
|
|
cascade->mRuleHash.PrependRule(rule);
|
1999-06-03 05:57:52 +04:00
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
nsVoidArray* stateArray = &cascade->mStateSelectors;
|
2002-04-16 02:49:26 +04:00
|
|
|
for (nsCSSSelector* selector = rule->FirstSelector();
|
2003-02-22 19:10:53 +03:00
|
|
|
selector; selector = selector->mNext) {
|
|
|
|
// Build mStateSelectors.
|
2002-04-16 02:49:26 +04:00
|
|
|
if (IsStateSelector(*selector))
|
2003-02-22 19:10:53 +03:00
|
|
|
stateArray->AppendElement(selector);
|
|
|
|
|
|
|
|
// Build mAttributeSelectors.
|
|
|
|
if (selector->mIDList) {
|
|
|
|
nsVoidArray *array = cascade->AttributeListFor(nsHTMLAtoms::id);
|
|
|
|
if (!array)
|
|
|
|
return PR_FALSE;
|
|
|
|
array->AppendElement(selector);
|
|
|
|
}
|
|
|
|
if (selector->mClassList) {
|
|
|
|
nsVoidArray *array = cascade->AttributeListFor(nsHTMLAtoms::kClass);
|
|
|
|
if (!array)
|
|
|
|
return PR_FALSE;
|
1999-10-14 04:59:21 +04:00
|
|
|
array->AppendElement(selector);
|
2003-02-22 19:10:53 +03:00
|
|
|
}
|
|
|
|
for (nsAttrSelector *attr = selector->mAttrList; attr; attr = attr->mNext) {
|
|
|
|
nsVoidArray *array = cascade->AttributeListFor(attr->mAttr);
|
|
|
|
if (!array)
|
|
|
|
return PR_FALSE;
|
|
|
|
array->AppendElement(selector);
|
|
|
|
}
|
|
|
|
}
|
2002-04-16 02:49:26 +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 {
|
2001-04-28 06:16:16 +04:00
|
|
|
CascadeEnumData(nsIAtom* aMedium)
|
1999-10-14 04:59:21 +04:00
|
|
|
: mMedium(aMedium),
|
2001-04-28 06:16:16 +04:00
|
|
|
mRuleArrays(64)
|
1999-10-14 04:59:21 +04:00
|
|
|
{
|
|
|
|
}
|
1998-10-06 05:39:33 +04:00
|
|
|
|
2001-04-28 06:16:16 +04:00
|
|
|
nsIAtom* mMedium;
|
|
|
|
nsSupportsHashtable mRuleArrays; // of nsISupportsArray
|
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 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;
|
2001-09-05 04:00:18 +04:00
|
|
|
PRInt32 type = nsICSSRule::UNKNOWN_RULE;
|
1999-10-14 04:59:21 +04:00
|
|
|
rule->GetType(type);
|
|
|
|
|
|
|
|
if (nsICSSRule::STYLE_RULE == type) {
|
|
|
|
nsICSSStyleRule* styleRule = (nsICSSStyleRule*)rule;
|
|
|
|
|
2001-04-28 06:16:16 +04:00
|
|
|
PRInt32 weight = styleRule->GetWeight();
|
2002-05-29 04:49:44 +04:00
|
|
|
nsPRUint32Key key(weight);
|
2001-04-28 06:16:16 +04:00
|
|
|
nsCOMPtr<nsISupportsArray> rules(dont_AddRef(
|
|
|
|
NS_STATIC_CAST(nsISupportsArray*, data->mRuleArrays.Get(&key))));
|
|
|
|
if (!rules) {
|
|
|
|
NS_NewISupportsArray(getter_AddRefs(rules));
|
|
|
|
if (!rules) return PR_FALSE; // out of memory
|
|
|
|
data->mRuleArrays.Put(&key, rules);
|
|
|
|
}
|
|
|
|
rules->AppendElement(styleRule);
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
else if (nsICSSRule::MEDIA_RULE == type) {
|
|
|
|
nsICSSMediaRule* mediaRule = (nsICSSMediaRule*)rule;
|
2001-09-05 04:00:18 +04:00
|
|
|
if (mediaRule->UseForMedium(data->mMedium)) {
|
1999-10-14 04:59:21 +04:00
|
|
|
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;
|
2002-12-03 08:48:14 +03:00
|
|
|
PRBool bSheetApplicable = PR_TRUE;
|
|
|
|
sheet->GetApplicable(bSheetApplicable);
|
1998-12-03 23:20:35 +03:00
|
|
|
|
2002-12-03 08:48:14 +03:00
|
|
|
if (bSheetApplicable && 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
|
|
|
}
|
|
|
|
|
2001-04-28 06:16:16 +04:00
|
|
|
struct RuleArrayData {
|
|
|
|
PRInt32 mWeight;
|
|
|
|
nsISupportsArray* mRuleArray;
|
|
|
|
};
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(int) CompareArrayData(const void* aArg1, const void* aArg2,
|
|
|
|
void* closure)
|
|
|
|
{
|
|
|
|
const RuleArrayData* arg1 = NS_STATIC_CAST(const RuleArrayData*, aArg1);
|
|
|
|
const RuleArrayData* arg2 = NS_STATIC_CAST(const RuleArrayData*, aArg2);
|
2002-04-16 02:49:26 +04:00
|
|
|
return arg1->mWeight - arg2->mWeight; // put lower weight first
|
2001-04-28 06:16:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct FillArrayData {
|
|
|
|
FillArrayData(RuleArrayData* aArrayData) :
|
|
|
|
mIndex(0),
|
|
|
|
mArrayData(aArrayData)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
PRInt32 mIndex;
|
|
|
|
RuleArrayData* mArrayData;
|
|
|
|
};
|
|
|
|
|
|
|
|
PR_STATIC_CALLBACK(PRBool) FillArray(nsHashKey* aKey, void* aData,
|
|
|
|
void* aClosure)
|
|
|
|
{
|
2002-05-29 04:49:44 +04:00
|
|
|
nsPRUint32Key* key = NS_STATIC_CAST(nsPRUint32Key*, aKey);
|
2001-04-28 06:16:16 +04:00
|
|
|
nsISupportsArray* weightArray = NS_STATIC_CAST(nsISupportsArray*, aData);
|
|
|
|
FillArrayData* data = NS_STATIC_CAST(FillArrayData*, aClosure);
|
|
|
|
|
|
|
|
RuleArrayData& ruleData = data->mArrayData[data->mIndex++];
|
|
|
|
ruleData.mRuleArray = weightArray;
|
2002-05-29 04:49:44 +04:00
|
|
|
ruleData.mWeight = key->GetValue();
|
2001-04-28 06:16:16 +04:00
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes the hashtable of arrays (keyed by weight, in order sort) and
|
|
|
|
* puts them all in one big array which has a primary sort by weight
|
2002-04-16 02:49:26 +04:00
|
|
|
* and secondary sort by order.
|
2001-04-28 06:16:16 +04:00
|
|
|
*/
|
|
|
|
static void PutRulesInList(nsSupportsHashtable* aRuleArrays,
|
|
|
|
nsISupportsArray* aWeightedRules)
|
|
|
|
{
|
|
|
|
PRInt32 arrayCount = aRuleArrays->Count();
|
|
|
|
RuleArrayData* arrayData = new RuleArrayData[arrayCount];
|
|
|
|
FillArrayData faData(arrayData);
|
|
|
|
aRuleArrays->Enumerate(FillArray, &faData);
|
|
|
|
NS_QuickSort(arrayData, arrayCount, sizeof(RuleArrayData),
|
|
|
|
CompareArrayData, nsnull);
|
2002-04-16 02:49:26 +04:00
|
|
|
for (PRInt32 i = 0; i < arrayCount; ++i)
|
|
|
|
aWeightedRules->AppendElements(arrayData[i].mRuleArray);
|
2001-04-28 06:16:16 +04:00
|
|
|
|
|
|
|
delete [] arrayData;
|
|
|
|
}
|
1999-10-14 04:59:21 +04:00
|
|
|
|
|
|
|
RuleCascadeData*
|
2001-09-07 04:23:37 +04:00
|
|
|
CSSRuleProcessor::GetRuleCascade(nsIPresContext* aPresContext, nsIAtom* aMedium)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2001-07-17 00:59:28 +04:00
|
|
|
RuleCascadeData **cascadep = &mRuleCascades;
|
|
|
|
RuleCascadeData *cascade;
|
|
|
|
while ((cascade = *cascadep)) {
|
|
|
|
if (cascade->mMedium == aMedium)
|
|
|
|
return cascade;
|
2001-08-14 06:54:35 +04:00
|
|
|
cascadep = &cascade->mNext;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
2001-07-17 00:59:28 +04:00
|
|
|
if (mSheets) {
|
2002-06-26 01:16:17 +04:00
|
|
|
nsCompatibility quirkMode;
|
2002-05-29 04:49:44 +04:00
|
|
|
aPresContext->GetCompatibilityMode(&quirkMode);
|
|
|
|
|
|
|
|
cascade = new RuleCascadeData(aMedium,
|
2002-06-26 01:16:17 +04:00
|
|
|
eCompatibility_NavQuirks == quirkMode);
|
2001-07-17 00:59:28 +04:00
|
|
|
if (cascade) {
|
|
|
|
CascadeEnumData data(aMedium);
|
|
|
|
mSheets->EnumerateForwards(CascadeSheetRulesInto, &data);
|
|
|
|
PutRulesInList(&data.mRuleArrays, cascade->mWeightedRules);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2003-02-22 19:10:53 +03:00
|
|
|
if (!cascade->mWeightedRules->EnumerateBackwards(AddRule, cascade)) {
|
|
|
|
delete cascade;
|
|
|
|
cascade = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
*cascadep = cascade;
|
1999-10-14 04:59:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return cascade;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|