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 Communicator client 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):
|
2010-08-27 00:03:36 -07:00
|
|
|
* Ms2ger <ms2ger@gmail.com>
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
/* DOM object for element.style */
|
|
|
|
|
|
|
|
#include "nsDOMCSSAttrDeclaration.h"
|
2010-08-27 00:03:36 -07:00
|
|
|
|
2010-06-28 15:49:35 -07:00
|
|
|
#include "mozilla/css/Declaration.h"
|
2010-08-27 00:03:36 -07:00
|
|
|
#include "mozilla/css/Loader.h"
|
|
|
|
#include "mozilla/dom/Element.h"
|
|
|
|
#include "nsICSSStyleRule.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDOMMutationEvent.h"
|
2007-05-02 18:15:53 -07:00
|
|
|
#include "nsIPrincipal.h"
|
2010-08-27 00:03:36 -07:00
|
|
|
#include "nsIURI.h"
|
2010-02-23 20:37:47 -08:00
|
|
|
#include "nsNodeUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-28 15:49:35 -07:00
|
|
|
namespace css = mozilla::css;
|
2010-08-27 00:03:36 -07:00
|
|
|
namespace dom = mozilla::dom;
|
2010-06-28 15:49:35 -07:00
|
|
|
|
2010-08-27 00:03:36 -07:00
|
|
|
nsDOMCSSAttributeDeclaration::nsDOMCSSAttributeDeclaration(dom::Element* aElement
|
2009-09-02 17:28:37 -07:00
|
|
|
#ifdef MOZ_SMIL
|
|
|
|
, PRBool aIsSMILOverride
|
|
|
|
#endif // MOZ_SMIL
|
|
|
|
)
|
2010-08-27 00:03:36 -07:00
|
|
|
: mElement(aElement)
|
2009-09-02 17:28:37 -07:00
|
|
|
#ifdef MOZ_SMIL
|
|
|
|
, mIsSMILOverride(aIsSMILOverride)
|
|
|
|
#endif // MOZ_SMIL
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDOMCSSAttributeDeclaration);
|
|
|
|
|
2010-08-27 00:03:36 -07:00
|
|
|
NS_ASSERTION(aElement, "Inline style for a NULL element?");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsDOMCSSAttributeDeclaration::~nsDOMCSSAttributeDeclaration()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsDOMCSSAttributeDeclaration);
|
|
|
|
}
|
|
|
|
|
2010-08-27 00:03:36 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_1(nsDOMCSSAttributeDeclaration, mElement)
|
2009-07-13 04:14:57 -07:00
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN(nsDOMCSSAttributeDeclaration)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRIES_CYCLE_COLLECTION(nsDOMCSSAttributeDeclaration)
|
|
|
|
NS_IMPL_QUERY_TAIL_INHERITING(nsDOMCSSDeclaration)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMCSSAttributeDeclaration)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMCSSAttributeDeclaration)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult
|
2010-07-23 11:00:47 -07:00
|
|
|
nsDOMCSSAttributeDeclaration::SetCSSDeclaration(css::Declaration* aDecl)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-08-27 00:03:36 -07:00
|
|
|
NS_ASSERTION(mElement, "Must have Element to set the declaration!");
|
2009-09-02 17:28:37 -07:00
|
|
|
nsICSSStyleRule* oldRule =
|
|
|
|
#ifdef MOZ_SMIL
|
2010-08-27 00:03:36 -07:00
|
|
|
mIsSMILOverride ? mElement->GetSMILOverrideStyleRule() :
|
2009-09-02 17:28:37 -07:00
|
|
|
#endif // MOZ_SMIL
|
2010-08-27 00:03:36 -07:00
|
|
|
mElement->GetInlineStyleRule();
|
|
|
|
NS_ASSERTION(oldRule, "Element must have rule");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-23 11:00:47 -07:00
|
|
|
nsCOMPtr<nsICSSStyleRule> newRule =
|
|
|
|
oldRule->DeclarationChanged(aDecl, PR_FALSE);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!newRule) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2010-07-23 11:00:47 -07:00
|
|
|
|
2009-09-02 17:28:37 -07:00
|
|
|
return
|
|
|
|
#ifdef MOZ_SMIL
|
2010-08-27 00:03:36 -07:00
|
|
|
mIsSMILOverride ? mElement->SetSMILOverrideStyleRule(newRule, PR_TRUE) :
|
2009-09-02 17:28:37 -07:00
|
|
|
#endif // MOZ_SMIL
|
2010-08-27 00:03:36 -07:00
|
|
|
mElement->SetInlineStyleRule(newRule, PR_TRUE);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-12-11 08:13:19 -08:00
|
|
|
nsIDocument*
|
|
|
|
nsDOMCSSAttributeDeclaration::DocToUpdate()
|
|
|
|
{
|
2010-02-23 20:37:47 -08:00
|
|
|
// XXXbz this is a bit of a hack, especially doing it before the
|
|
|
|
// BeginUpdate(), but this is a good chokepoint where we know we
|
|
|
|
// plan to modify the CSSDeclaration, so need to notify
|
|
|
|
// AttributeWillChange if this is inline style.
|
|
|
|
#ifdef MOZ_SMIL
|
|
|
|
if (!mIsSMILOverride)
|
|
|
|
#endif
|
|
|
|
{
|
2010-08-27 00:03:36 -07:00
|
|
|
nsNodeUtils::AttributeWillChange(mElement, kNameSpaceID_None,
|
2010-02-23 20:37:47 -08:00
|
|
|
nsGkAtoms::style,
|
|
|
|
nsIDOMMutationEvent::MODIFICATION);
|
|
|
|
}
|
2010-08-27 00:03:36 -07:00
|
|
|
|
2009-12-11 08:13:19 -08:00
|
|
|
// We need GetOwnerDoc() rather than GetCurrentDoc() because it might
|
2010-08-27 00:03:36 -07:00
|
|
|
// be the BeginUpdate call that inserts mElement into the document.
|
|
|
|
return mElement->GetOwnerDoc();
|
2009-12-11 08:13:19 -08:00
|
|
|
}
|
|
|
|
|
2010-07-23 11:00:34 -07:00
|
|
|
css::Declaration*
|
|
|
|
nsDOMCSSAttributeDeclaration::GetCSSDeclaration(PRBool aAllocate)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-08-27 00:03:36 -07:00
|
|
|
if (!mElement)
|
2010-07-23 11:00:34 -07:00
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-23 11:00:34 -07:00
|
|
|
nsICSSStyleRule* cssRule;
|
2009-09-02 17:28:37 -07:00
|
|
|
#ifdef MOZ_SMIL
|
2010-07-23 11:00:34 -07:00
|
|
|
if (mIsSMILOverride)
|
2010-08-27 00:03:36 -07:00
|
|
|
cssRule = mElement->GetSMILOverrideStyleRule();
|
2010-07-23 11:00:34 -07:00
|
|
|
else
|
2009-09-02 17:28:37 -07:00
|
|
|
#endif // MOZ_SMIL
|
2010-08-27 00:03:36 -07:00
|
|
|
cssRule = mElement->GetInlineStyleRule();
|
2010-07-23 11:00:34 -07:00
|
|
|
|
|
|
|
if (cssRule) {
|
|
|
|
return cssRule->GetDeclaration();
|
|
|
|
}
|
|
|
|
if (!aAllocate) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
// cannot fail
|
|
|
|
css::Declaration *decl = new css::Declaration();
|
|
|
|
decl->InitializeEmpty();
|
|
|
|
nsCOMPtr<nsICSSStyleRule> newRule = NS_NewCSSStyleRule(nsnull, decl);
|
|
|
|
|
|
|
|
// this *can* fail (inside SetAttrAndNotify, at least).
|
|
|
|
nsresult rv;
|
2009-09-02 17:28:37 -07:00
|
|
|
#ifdef MOZ_SMIL
|
2010-07-23 11:00:34 -07:00
|
|
|
if (mIsSMILOverride)
|
2010-08-27 00:03:36 -07:00
|
|
|
rv = mElement->SetSMILOverrideStyleRule(newRule, PR_FALSE);
|
2010-07-23 11:00:34 -07:00
|
|
|
else
|
2009-09-02 17:28:37 -07:00
|
|
|
#endif // MOZ_SMIL
|
2010-08-27 00:03:36 -07:00
|
|
|
rv = mElement->SetInlineStyleRule(newRule, PR_FALSE);
|
2010-07-23 11:00:34 -07:00
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return nsnull; // the decl will be destroyed along with the style rule
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-23 11:00:34 -07:00
|
|
|
return decl;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a utility function. It will only fail if it can't get a
|
|
|
|
* parser. This means it can return NS_OK without aURI or aCSSLoader
|
|
|
|
* being initialized.
|
|
|
|
*/
|
|
|
|
nsresult
|
|
|
|
nsDOMCSSAttributeDeclaration::GetCSSParsingEnvironment(nsIURI** aSheetURI,
|
|
|
|
nsIURI** aBaseURI,
|
2007-05-02 18:15:53 -07:00
|
|
|
nsIPrincipal** aSheetPrincipal,
|
2010-03-02 13:00:53 -08:00
|
|
|
mozilla::css::Loader** aCSSLoader)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-08-27 00:03:36 -07:00
|
|
|
NS_ASSERTION(mElement, "Something is severely broken -- there should be an Element here!");
|
2007-03-22 10:30:00 -07:00
|
|
|
// null out the out params since some of them may not get initialized below
|
|
|
|
*aSheetURI = nsnull;
|
|
|
|
*aBaseURI = nsnull;
|
2007-05-02 18:15:53 -07:00
|
|
|
*aSheetPrincipal = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
*aCSSLoader = nsnull;
|
|
|
|
|
2010-08-27 00:03:36 -07:00
|
|
|
nsIDocument* doc = mElement->GetOwnerDoc();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!doc) {
|
|
|
|
// document has been destroyed
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
2010-08-27 00:03:36 -07:00
|
|
|
nsCOMPtr<nsIURI> baseURI = mElement->GetBaseURI();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIURI> sheetURI = doc->GetDocumentURI();
|
|
|
|
|
|
|
|
NS_ADDREF(*aCSSLoader = doc->CSSLoader());
|
|
|
|
|
|
|
|
baseURI.swap(*aBaseURI);
|
|
|
|
sheetURI.swap(*aSheetURI);
|
2010-08-27 00:03:36 -07:00
|
|
|
NS_ADDREF(*aSheetPrincipal = mElement->NodePrincipal());
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMCSSAttributeDeclaration::GetParentRule(nsIDOMCSSRule **aParent)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aParent);
|
|
|
|
|
|
|
|
*aParent = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-08-27 00:03:36 -07:00
|
|
|
/* virtual */ nsINode*
|
|
|
|
nsDOMCSSAttributeDeclaration::GetParentObject()
|
|
|
|
{
|
|
|
|
return mElement;
|
|
|
|
}
|