2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* This Original Code has been modified by IBM Corporation. Modifications made by IBM
|
|
|
|
* described herein are Copyright (c) International Business Machines Corporation, 2000.
|
|
|
|
* Modifications to Mozilla code or documentation identified per MPL Section 3.3
|
|
|
|
*
|
|
|
|
* Date Modified by Description of modification
|
|
|
|
* 04/20/2000 IBM Corp. OS/2 VisualAge build.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* style sheet and style rule processor representing data from presentational
|
|
|
|
* HTML attributes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsHTMLStyleSheet.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsIURL.h"
|
|
|
|
#include "nsMappedAttributes.h"
|
|
|
|
#include "nsILink.h"
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsStyleContext.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsIEventStateManager.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsStyleConsts.h"
|
2009-12-27 05:48:10 -08:00
|
|
|
#include "nsIHTMLDocument.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMHTMLElement.h"
|
|
|
|
#include "nsCSSAnonBoxes.h"
|
|
|
|
#include "nsRuleWalker.h"
|
|
|
|
#include "nsRuleData.h"
|
|
|
|
#include "nsContentErrors.h"
|
2009-08-01 08:53:40 -07:00
|
|
|
#include "nsRuleProcessorData.h"
|
2010-05-05 11:18:05 -07:00
|
|
|
#include "mozilla/dom/Element.h"
|
2010-06-18 09:23:05 -07:00
|
|
|
#include "nsCSSFrameConstructor.h"
|
2010-04-30 06:12:06 -07:00
|
|
|
|
|
|
|
using namespace mozilla::dom;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(nsHTMLStyleSheet::HTMLColorRule, nsIStyleRule)
|
|
|
|
|
2010-05-19 19:28:00 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::HTMLColorRule::MapRuleInfoInto(nsRuleData* aRuleData)
|
|
|
|
{
|
2007-10-08 14:58:22 -07:00
|
|
|
if (aRuleData->mSIDs & NS_STYLE_INHERIT_BIT(Color)) {
|
2007-11-15 19:46:42 -08:00
|
|
|
if (aRuleData->mColorData->mColor.GetUnit() == eCSSUnit_Null &&
|
|
|
|
aRuleData->mPresContext->UseDocumentColors())
|
|
|
|
aRuleData->mColorData->mColor.SetColorValue(mColor);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2010-05-19 19:28:00 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::HTMLColorRule::List(FILE* out, PRInt32 aIndent) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(nsHTMLStyleSheet::GenericTableRule, nsIStyleRule)
|
|
|
|
|
2010-05-19 19:28:00 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::GenericTableRule::MapRuleInfoInto(nsRuleData* aRuleData)
|
|
|
|
{
|
|
|
|
// Nothing to do.
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2010-05-19 19:28:00 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::GenericTableRule::List(FILE* out, PRInt32 aIndent) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-19 19:28:00 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::TableTHRule::MapRuleInfoInto(nsRuleData* aRuleData)
|
|
|
|
{
|
2007-10-08 14:58:22 -07:00
|
|
|
if (aRuleData->mSIDs & NS_STYLE_INHERIT_BIT(Text)) {
|
2009-02-05 19:48:29 -08:00
|
|
|
if (aRuleData->mTextData->mTextAlign.GetUnit() == eCSSUnit_Null) {
|
|
|
|
aRuleData->mTextData->mTextAlign.
|
|
|
|
SetIntValue(NS_STYLE_TEXT_ALIGN_MOZ_CENTER_OR_INHERIT,
|
|
|
|
eCSSUnit_Enumerated);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
|
|
|
|
struct MappedAttrTableEntry : public PLDHashEntryHdr {
|
|
|
|
nsMappedAttributes *mAttributes;
|
|
|
|
};
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static PLDHashNumber
|
2007-03-22 10:30:00 -07:00
|
|
|
MappedAttrTable_HashKey(PLDHashTable *table, const void *key)
|
|
|
|
{
|
|
|
|
nsMappedAttributes *attributes =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsMappedAttributes*>(const_cast<void*>(key));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return attributes->HashValue();
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static void
|
2007-03-22 10:30:00 -07:00
|
|
|
MappedAttrTable_ClearEntry(PLDHashTable *table, PLDHashEntryHdr *hdr)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
MappedAttrTableEntry *entry = static_cast<MappedAttrTableEntry*>(hdr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
entry->mAttributes->DropStyleSheetReference();
|
|
|
|
memset(entry, 0, sizeof(MappedAttrTableEntry));
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static PRBool
|
2007-03-22 10:30:00 -07:00
|
|
|
MappedAttrTable_MatchEntry(PLDHashTable *table, const PLDHashEntryHdr *hdr,
|
|
|
|
const void *key)
|
|
|
|
{
|
|
|
|
nsMappedAttributes *attributes =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsMappedAttributes*>(const_cast<void*>(key));
|
2007-03-22 10:30:00 -07:00
|
|
|
const MappedAttrTableEntry *entry =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<const MappedAttrTableEntry*>(hdr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return attributes->Equals(entry->mAttributes);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PLDHashTableOps MappedAttrTable_Ops = {
|
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
|
|
|
MappedAttrTable_HashKey,
|
|
|
|
MappedAttrTable_MatchEntry,
|
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
MappedAttrTable_ClearEntry,
|
|
|
|
PL_DHashFinalizeStub,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
|
|
|
|
nsHTMLStyleSheet::nsHTMLStyleSheet(void)
|
2010-05-17 21:00:39 -07:00
|
|
|
: mDocument(nsnull)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
mMappedAttrTable.ops = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsHTMLStyleSheet::Init()
|
|
|
|
{
|
|
|
|
mTableTHRule = new TableTHRule();
|
|
|
|
if (!mTableTHRule)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsHTMLStyleSheet::~nsHTMLStyleSheet()
|
|
|
|
{
|
|
|
|
if (mMappedAttrTable.ops)
|
|
|
|
PL_DHashTableFinish(&mMappedAttrTable);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS2(nsHTMLStyleSheet, nsIStyleSheet, nsIStyleRuleProcessor)
|
|
|
|
|
|
|
|
static nsresult GetBodyColor(nsPresContext* aPresContext, nscolor* aColor)
|
|
|
|
{
|
|
|
|
nsIPresShell *shell = aPresContext->PresShell();
|
2009-12-27 05:48:10 -08:00
|
|
|
nsCOMPtr<nsIHTMLDocument> htmlDoc = do_QueryInterface(shell->GetDocument());
|
|
|
|
if (!htmlDoc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsIContent* bodyContent = htmlDoc->GetBodyContentExternal();
|
|
|
|
if (!bodyContent)
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
2009-12-24 13:20:06 -08:00
|
|
|
nsIFrame *bodyFrame = bodyContent->GetPrimaryFrame();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!bodyFrame)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
*aColor = bodyFrame->GetStyleColor()->mColor;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-18 14:20:40 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::RulesMatching(ElementRuleProcessorData* aData)
|
|
|
|
{
|
2010-04-30 06:12:06 -07:00
|
|
|
nsRuleWalker *ruleWalker = aData->mRuleWalker;
|
|
|
|
if (aData->mIsHTMLContent) {
|
|
|
|
nsIAtom* tag = aData->mContentTag;
|
|
|
|
|
|
|
|
// if we have anchor colors, check if this is an anchor with an href
|
|
|
|
if (tag == nsGkAtoms::a) {
|
|
|
|
if (mLinkRule || mVisitedRule || mActiveRule) {
|
2010-10-20 04:26:32 -07:00
|
|
|
nsEventStates state = aData->GetContentStateForVisitedHandling(
|
2010-04-30 06:12:06 -07:00
|
|
|
ruleWalker->VisitedHandling(),
|
|
|
|
// If the node being matched is a link,
|
|
|
|
// it's the relevant link.
|
|
|
|
aData->IsLink());
|
2010-10-20 04:26:32 -07:00
|
|
|
if (mLinkRule && state.HasState(NS_EVENT_STATE_UNVISITED)) {
|
2010-04-30 06:12:06 -07:00
|
|
|
ruleWalker->Forward(mLinkRule);
|
|
|
|
ruleWalker->SetHaveRelevantLink();
|
|
|
|
}
|
2010-10-20 04:26:32 -07:00
|
|
|
else if (mVisitedRule && state.HasState(NS_EVENT_STATE_VISITED)) {
|
2010-04-30 06:12:06 -07:00
|
|
|
ruleWalker->Forward(mVisitedRule);
|
|
|
|
ruleWalker->SetHaveRelevantLink();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-30 06:12:06 -07:00
|
|
|
// No need to add to the active rule if it's not a link
|
|
|
|
if (mActiveRule && aData->IsLink() &&
|
2010-10-20 04:26:32 -07:00
|
|
|
state.HasState(NS_EVENT_STATE_ACTIVE)) {
|
2010-04-30 06:12:06 -07:00
|
|
|
ruleWalker->Forward(mActiveRule);
|
|
|
|
}
|
|
|
|
} // end link/visited/active rules
|
|
|
|
} // end A tag
|
|
|
|
// add the rule to handle text-align for a <th>
|
|
|
|
else if (tag == nsGkAtoms::th) {
|
|
|
|
ruleWalker->Forward(mTableTHRule);
|
|
|
|
}
|
|
|
|
else if (tag == nsGkAtoms::table) {
|
|
|
|
if (aData->mCompatMode == eCompatibility_NavQuirks) {
|
|
|
|
nscolor bodyColor;
|
|
|
|
nsresult rv =
|
|
|
|
GetBodyColor(ruleWalker->CurrentNode()->GetPresContext(),
|
|
|
|
&bodyColor);
|
|
|
|
if (NS_SUCCEEDED(rv) &&
|
|
|
|
(!mDocumentColorRule || bodyColor != mDocumentColorRule->mColor)) {
|
|
|
|
mDocumentColorRule = new HTMLColorRule();
|
|
|
|
if (mDocumentColorRule) {
|
|
|
|
mDocumentColorRule->mColor = bodyColor;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2010-04-30 06:12:06 -07:00
|
|
|
if (mDocumentColorRule)
|
|
|
|
ruleWalker->Forward(mDocumentColorRule);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-04-30 06:12:06 -07:00
|
|
|
}
|
|
|
|
} // end html element
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// just get the style rules from the content
|
2010-04-30 06:12:06 -07:00
|
|
|
aData->mElement->WalkContentStyleRules(ruleWalker);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test if style is dependent on content state
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ nsRestyleHint
|
2009-12-11 22:36:34 -08:00
|
|
|
nsHTMLStyleSheet::HasStateDependentStyle(StateRuleProcessorData* aData)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-12-11 22:36:34 -08:00
|
|
|
if (aData->mIsHTMLContent &&
|
2007-03-22 10:30:00 -07:00
|
|
|
aData->mContentTag == nsGkAtoms::a &&
|
2009-12-10 14:36:03 -08:00
|
|
|
aData->IsLink() &&
|
2010-10-20 04:26:32 -07:00
|
|
|
((mActiveRule && aData->mStateMask.HasState(NS_EVENT_STATE_ACTIVE)) ||
|
|
|
|
(mLinkRule && aData->mStateMask.HasState(NS_EVENT_STATE_VISITED)) ||
|
|
|
|
(mVisitedRule && aData->mStateMask.HasState(NS_EVENT_STATE_VISITED)))) {
|
2010-06-18 09:23:05 -07:00
|
|
|
return eRestyle_Self;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-12-11 22:36:34 -08:00
|
|
|
|
2010-03-31 17:43:32 -07:00
|
|
|
return nsRestyleHint(0);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ PRBool
|
2010-03-17 10:10:57 -07:00
|
|
|
nsHTMLStyleSheet::HasDocumentStateDependentStyle(StateRuleProcessorData* aData)
|
|
|
|
{
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ nsRestyleHint
|
2009-12-10 14:36:03 -08:00
|
|
|
nsHTMLStyleSheet::HasAttributeDependentStyle(AttributeRuleProcessorData* aData)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-12-10 14:36:03 -08:00
|
|
|
// Do nothing on before-change checks
|
|
|
|
if (!aData->mAttrHasChanged) {
|
2010-03-31 17:43:32 -07:00
|
|
|
return nsRestyleHint(0);
|
2009-12-10 14:36:03 -08:00
|
|
|
}
|
|
|
|
|
2007-07-12 13:05:45 -07:00
|
|
|
// Note: no need to worry about whether some states changed with this
|
|
|
|
// attribute here, because we handle that under HasStateDependentStyle() as
|
|
|
|
// needed.
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Result is true for |href| changes on HTML links if we have link rules.
|
2010-04-30 06:12:06 -07:00
|
|
|
Element *element = aData->mElement;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aData->mAttribute == nsGkAtoms::href &&
|
|
|
|
(mLinkRule || mVisitedRule || mActiveRule) &&
|
2010-04-30 06:12:06 -07:00
|
|
|
element->IsHTML() &&
|
2007-03-22 10:30:00 -07:00
|
|
|
aData->mContentTag == nsGkAtoms::a) {
|
2010-06-18 09:23:05 -07:00
|
|
|
return eRestyle_Self;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Don't worry about the mDocumentColorRule since it only applies
|
|
|
|
// to descendants of body, when we're already reresolving.
|
|
|
|
|
|
|
|
// Handle the content style rules.
|
2010-04-30 06:12:06 -07:00
|
|
|
if (element->IsAttributeMapped(aData->mAttribute)) {
|
2010-08-25 11:54:47 -07:00
|
|
|
// cellpadding on tables is special and requires reresolving all
|
|
|
|
// the cells in the table
|
|
|
|
if (aData->mAttribute == nsGkAtoms::cellpadding &&
|
|
|
|
element->IsHTML() &&
|
|
|
|
aData->mContentTag == nsGkAtoms::table) {
|
|
|
|
return eRestyle_Subtree;
|
|
|
|
}
|
2010-06-18 09:23:05 -07:00
|
|
|
return eRestyle_Self;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-03-31 17:43:32 -07:00
|
|
|
return nsRestyleHint(0);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-18 14:20:40 -07:00
|
|
|
/* virtual */ PRBool
|
|
|
|
nsHTMLStyleSheet::MediumFeaturesChanged(nsPresContext* aPresContext)
|
2008-07-26 09:14:48 -07:00
|
|
|
{
|
2010-07-18 14:20:40 -07:00
|
|
|
return PR_FALSE;
|
2008-07-26 09:14:48 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-18 14:20:40 -07:00
|
|
|
/* virtual */ void
|
2009-12-10 23:37:40 -08:00
|
|
|
nsHTMLStyleSheet::RulesMatching(PseudoElementRuleProcessorData* aData)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-07-18 14:20:40 -07:00
|
|
|
/* virtual */ void
|
2009-12-10 23:37:40 -08:00
|
|
|
nsHTMLStyleSheet::RulesMatching(AnonBoxRuleProcessorData* aData)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-12-10 23:37:40 -08:00
|
|
|
#ifdef MOZ_XUL
|
2010-07-18 14:20:40 -07:00
|
|
|
/* virtual */ void
|
2009-12-10 23:37:40 -08:00
|
|
|
nsHTMLStyleSheet::RulesMatching(XULTreeRuleProcessorData* aData)
|
2009-12-10 23:37:40 -08:00
|
|
|
{
|
|
|
|
}
|
2009-12-10 23:37:40 -08:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIStyleSheet api
|
2010-05-17 21:00:39 -07:00
|
|
|
/* virtual */ nsIURI*
|
2010-05-12 13:18:47 -07:00
|
|
|
nsHTMLStyleSheet::GetSheetURI() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-05-12 13:18:47 -07:00
|
|
|
return mURL;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-17 21:00:39 -07:00
|
|
|
/* virtual */ nsIURI*
|
2010-05-12 13:18:47 -07:00
|
|
|
nsHTMLStyleSheet::GetBaseURI() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-05-12 13:18:47 -07:00
|
|
|
return mURL;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::GetTitle(nsString& aTitle) const
|
|
|
|
{
|
|
|
|
aTitle.Truncate();
|
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::GetType(nsString& aType) const
|
|
|
|
{
|
|
|
|
aType.AssignLiteral("text/html");
|
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ PRBool
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::HasRules() const
|
|
|
|
{
|
|
|
|
return PR_TRUE; // We have rules at all reasonable times
|
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ PRBool
|
|
|
|
nsHTMLStyleSheet::IsApplicable() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-05-12 13:18:47 -07:00
|
|
|
return PR_TRUE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::SetEnabled(PRBool aEnabled)
|
|
|
|
{ // these can't be disabled
|
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ PRBool
|
|
|
|
nsHTMLStyleSheet::IsComplete() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-05-12 13:18:47 -07:00
|
|
|
return PR_TRUE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::SetComplete()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-05-17 21:00:39 -07:00
|
|
|
/* virtual */ nsIStyleSheet*
|
2010-05-12 13:18:47 -07:00
|
|
|
nsHTMLStyleSheet::GetParentSheet() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-05-12 13:18:47 -07:00
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-17 21:00:39 -07:00
|
|
|
/* virtual */ nsIDocument*
|
2010-05-12 13:18:47 -07:00
|
|
|
nsHTMLStyleSheet::GetOwningDocument() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-05-12 13:18:47 -07:00
|
|
|
return mDocument;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::SetOwningDocument(nsIDocument* aDocument)
|
|
|
|
{
|
|
|
|
mDocument = aDocument; // not refcounted
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsHTMLStyleSheet::Init(nsIURI* aURL, nsIDocument* aDocument)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aURL && aDocument, "null ptr");
|
|
|
|
if (! aURL || ! aDocument)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
if (mURL || mDocument)
|
|
|
|
return NS_ERROR_ALREADY_INITIALIZED;
|
|
|
|
|
|
|
|
mDocument = aDocument; // not refcounted!
|
|
|
|
mURL = aURL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-05-17 21:00:39 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLStyleSheet::Reset(nsIURI* aURL)
|
|
|
|
{
|
|
|
|
mURL = aURL;
|
|
|
|
|
2010-05-17 21:00:39 -07:00
|
|
|
mLinkRule = nsnull;
|
|
|
|
mVisitedRule = nsnull;
|
|
|
|
mActiveRule = nsnull;
|
|
|
|
mDocumentColorRule = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (mMappedAttrTable.ops) {
|
|
|
|
PL_DHashTableFinish(&mMappedAttrTable);
|
|
|
|
mMappedAttrTable.ops = nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2010-06-18 09:23:05 -07:00
|
|
|
nsHTMLStyleSheet::ImplLinkColorSetter(nsRefPtr<HTMLColorRule>& aRule, nscolor aColor)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-06-18 09:23:05 -07:00
|
|
|
if (aRule && aRule->mColor == aColor) {
|
2010-06-25 06:59:57 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-06-18 09:23:05 -07:00
|
|
|
aRule = new HTMLColorRule();
|
|
|
|
if (!aRule)
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2010-06-18 09:23:05 -07:00
|
|
|
aRule->mColor = aColor;
|
|
|
|
// Now make sure we restyle any links that might need it. This
|
|
|
|
// shouldn't happen often, so just rebuilding everything is ok.
|
2010-06-25 06:59:57 -07:00
|
|
|
if (mDocument && mDocument->GetShell()) {
|
2010-06-18 09:23:05 -07:00
|
|
|
Element* root = mDocument->GetRootElement();
|
|
|
|
if (root) {
|
2010-06-25 06:59:57 -07:00
|
|
|
mDocument->GetShell()->FrameConstructor()->
|
2010-06-18 09:23:05 -07:00
|
|
|
PostRestyleEvent(root, eRestyle_Subtree, NS_STYLE_HINT_NONE);
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2010-06-18 09:23:05 -07:00
|
|
|
nsHTMLStyleSheet::SetLinkColor(nscolor aColor)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-06-18 09:23:05 -07:00
|
|
|
return ImplLinkColorSetter(mLinkRule, aColor);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
|
2010-06-18 09:23:05 -07:00
|
|
|
nsresult
|
|
|
|
nsHTMLStyleSheet::SetActiveLinkColor(nscolor aColor)
|
|
|
|
{
|
|
|
|
return ImplLinkColorSetter(mActiveRule, aColor);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsHTMLStyleSheet::SetVisitedLinkColor(nscolor aColor)
|
|
|
|
{
|
2010-06-18 09:23:05 -07:00
|
|
|
return ImplLinkColorSetter(mVisitedRule, aColor);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsMappedAttributes>
|
|
|
|
nsHTMLStyleSheet::UniqueMappedAttributes(nsMappedAttributes* aMapped)
|
|
|
|
{
|
|
|
|
if (!mMappedAttrTable.ops) {
|
|
|
|
PRBool res = PL_DHashTableInit(&mMappedAttrTable, &MappedAttrTable_Ops,
|
|
|
|
nsnull, sizeof(MappedAttrTableEntry), 16);
|
|
|
|
if (!res) {
|
|
|
|
mMappedAttrTable.ops = nsnull;
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
}
|
2007-07-08 00:08:04 -07:00
|
|
|
MappedAttrTableEntry *entry = static_cast<MappedAttrTableEntry*>
|
|
|
|
(PL_DHashTableOperate(&mMappedAttrTable, aMapped, PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!entry)
|
|
|
|
return nsnull;
|
|
|
|
if (!entry->mAttributes) {
|
|
|
|
// We added a new entry to the hashtable, so we have a new unique set.
|
|
|
|
entry->mAttributes = aMapped;
|
|
|
|
}
|
|
|
|
NS_ADDREF(entry->mAttributes); // for caller
|
|
|
|
return entry->mAttributes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHTMLStyleSheet::DropMappedAttributes(nsMappedAttributes* aMapped)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(aMapped, /**/);
|
|
|
|
|
|
|
|
NS_ASSERTION(mMappedAttrTable.ops, "table uninitialized");
|
|
|
|
#ifdef DEBUG
|
|
|
|
PRUint32 entryCount = mMappedAttrTable.entryCount - 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PL_DHashTableOperate(&mMappedAttrTable, aMapped, PL_DHASH_REMOVE);
|
|
|
|
|
|
|
|
NS_ASSERTION(entryCount == mMappedAttrTable.entryCount, "not removed");
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2010-05-14 12:05:14 -07:00
|
|
|
/* virtual */ void
|
|
|
|
nsHTMLStyleSheet::List(FILE* out, PRInt32 aIndent) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Indent
|
|
|
|
for (PRInt32 index = aIndent; --index >= 0; ) fputs(" ", out);
|
|
|
|
|
|
|
|
fputs("HTML Style Sheet: ", out);
|
|
|
|
nsCAutoString urlSpec;
|
|
|
|
mURL->GetSpec(urlSpec);
|
|
|
|
if (!urlSpec.IsEmpty()) {
|
|
|
|
fputs(urlSpec.get(), out);
|
|
|
|
}
|
|
|
|
fputs("\n", out);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// XXX For convenience and backwards compatibility
|
|
|
|
nsresult
|
|
|
|
NS_NewHTMLStyleSheet(nsHTMLStyleSheet** aInstancePtrResult, nsIURI* aURL,
|
|
|
|
nsIDocument* aDocument)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsHTMLStyleSheet* sheet;
|
|
|
|
if (NS_FAILED(rv = NS_NewHTMLStyleSheet(&sheet)))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
if (NS_FAILED(rv = sheet->Init(aURL, aDocument))) {
|
|
|
|
NS_RELEASE(sheet);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aInstancePtrResult = sheet;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewHTMLStyleSheet(nsHTMLStyleSheet** aInstancePtrResult)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aInstancePtrResult, "null out param");
|
|
|
|
|
|
|
|
nsHTMLStyleSheet *it = new nsHTMLStyleSheet();
|
|
|
|
if (!it) {
|
|
|
|
*aInstancePtrResult = nsnull;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ADDREF(it);
|
|
|
|
nsresult rv = it->Init();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
NS_RELEASE(it);
|
|
|
|
|
|
|
|
*aInstancePtrResult = it; // NS_ADDREF above, or set to null by NS_RELEASE
|
|
|
|
return rv;
|
|
|
|
}
|