2001-11-07 07:06:31 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-17 21:52:36 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2001-11-07 07:06:31 +00:00
|
|
|
*
|
2004-04-17 21:52:36 +00:00
|
|
|
* 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/
|
2001-11-07 07:06:31 +00: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.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
2004-04-17 21:52:36 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-11-07 07:06:31 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2010-08-27 07:03:36 +00:00
|
|
|
* Ms2ger <ms2ger@gmail.com>
|
2001-11-07 07:06:31 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-17 21:52:36 +00:00
|
|
|
* 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"),
|
2001-11-07 07:06:31 +00:00
|
|
|
* 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
|
2004-04-17 21:52:36 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-11-07 07:06:31 +00:00
|
|
|
* 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
|
2004-04-17 21:52:36 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-11-07 07:06:31 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2006-03-25 05:47:31 +00:00
|
|
|
/* DOM object for element.style */
|
|
|
|
|
2001-11-07 07:06:31 +00:00
|
|
|
#include "nsDOMCSSAttrDeclaration.h"
|
2010-08-27 07:03:36 +00:00
|
|
|
|
2010-06-28 22:49:35 +00:00
|
|
|
#include "mozilla/css/Declaration.h"
|
2010-08-27 07:03:36 +00:00
|
|
|
#include "mozilla/css/Loader.h"
|
2011-03-11 02:48:57 +00:00
|
|
|
#include "mozilla/css/StyleRule.h"
|
2010-08-27 07:03:36 +00:00
|
|
|
#include "mozilla/dom/Element.h"
|
2001-11-07 07:06:31 +00:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDOMMutationEvent.h"
|
2007-05-03 01:15:53 +00:00
|
|
|
#include "nsIPrincipal.h"
|
2010-08-27 07:03:36 +00:00
|
|
|
#include "nsIURI.h"
|
2010-02-24 04:37:47 +00:00
|
|
|
#include "nsNodeUtils.h"
|
2001-11-07 07:06:31 +00:00
|
|
|
|
2010-06-28 22:49:35 +00:00
|
|
|
namespace css = mozilla::css;
|
2010-08-27 07:03:36 +00:00
|
|
|
namespace dom = mozilla::dom;
|
2010-06-28 22:49:35 +00:00
|
|
|
|
2010-08-27 07:03:36 +00:00
|
|
|
nsDOMCSSAttributeDeclaration::nsDOMCSSAttributeDeclaration(dom::Element* aElement
|
2009-09-03 00:28:37 +00:00
|
|
|
#ifdef MOZ_SMIL
|
|
|
|
, PRBool aIsSMILOverride
|
|
|
|
#endif // MOZ_SMIL
|
|
|
|
)
|
2010-08-27 07:03:36 +00:00
|
|
|
: mElement(aElement)
|
2009-09-03 00:28:37 +00:00
|
|
|
#ifdef MOZ_SMIL
|
|
|
|
, mIsSMILOverride(aIsSMILOverride)
|
|
|
|
#endif // MOZ_SMIL
|
2001-11-07 07:06:31 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsDOMCSSAttributeDeclaration);
|
|
|
|
|
2010-08-27 07:03:36 +00:00
|
|
|
NS_ASSERTION(aElement, "Inline style for a NULL element?");
|
2001-11-07 07:06:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsDOMCSSAttributeDeclaration::~nsDOMCSSAttributeDeclaration()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsDOMCSSAttributeDeclaration);
|
|
|
|
}
|
|
|
|
|
2010-08-27 07:03:36 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_1(nsDOMCSSAttributeDeclaration, mElement)
|
2009-07-13 11:14:57 +00: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)
|
2001-11-07 07:06:31 +00:00
|
|
|
|
2003-03-06 19:07:22 +00:00
|
|
|
nsresult
|
2010-07-23 18:00:47 +00:00
|
|
|
nsDOMCSSAttributeDeclaration::SetCSSDeclaration(css::Declaration* aDecl)
|
2003-03-06 19:07:22 +00:00
|
|
|
{
|
2010-08-27 07:03:36 +00:00
|
|
|
NS_ASSERTION(mElement, "Must have Element to set the declaration!");
|
2011-03-11 02:48:57 +00:00
|
|
|
css::StyleRule* oldRule =
|
2009-09-03 00:28:37 +00:00
|
|
|
#ifdef MOZ_SMIL
|
2010-08-27 07:03:36 +00:00
|
|
|
mIsSMILOverride ? mElement->GetSMILOverrideStyleRule() :
|
2009-09-03 00:28:37 +00:00
|
|
|
#endif // MOZ_SMIL
|
2010-08-27 07:03:36 +00:00
|
|
|
mElement->GetInlineStyleRule();
|
|
|
|
NS_ASSERTION(oldRule, "Element must have rule");
|
2003-06-18 01:59:57 +00:00
|
|
|
|
2011-03-11 02:48:57 +00:00
|
|
|
nsRefPtr<css::StyleRule> newRule =
|
2010-07-23 18:00:47 +00:00
|
|
|
oldRule->DeclarationChanged(aDecl, PR_FALSE);
|
2003-06-18 01:59:57 +00:00
|
|
|
if (!newRule) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2003-03-17 03:46:17 +00:00
|
|
|
}
|
2010-07-23 18:00:47 +00:00
|
|
|
|
2009-09-03 00:28:37 +00:00
|
|
|
return
|
|
|
|
#ifdef MOZ_SMIL
|
2010-08-27 07:03:36 +00:00
|
|
|
mIsSMILOverride ? mElement->SetSMILOverrideStyleRule(newRule, PR_TRUE) :
|
2009-09-03 00:28:37 +00:00
|
|
|
#endif // MOZ_SMIL
|
2010-08-27 07:03:36 +00:00
|
|
|
mElement->SetInlineStyleRule(newRule, PR_TRUE);
|
2003-03-06 19:07:22 +00:00
|
|
|
}
|
|
|
|
|
2009-12-11 16:13:19 +00:00
|
|
|
nsIDocument*
|
|
|
|
nsDOMCSSAttributeDeclaration::DocToUpdate()
|
|
|
|
{
|
2010-02-24 04:37:47 +00: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 07:03:36 +00:00
|
|
|
nsNodeUtils::AttributeWillChange(mElement, kNameSpaceID_None,
|
2010-02-24 04:37:47 +00:00
|
|
|
nsGkAtoms::style,
|
|
|
|
nsIDOMMutationEvent::MODIFICATION);
|
|
|
|
}
|
2010-08-27 07:03:36 +00:00
|
|
|
|
2009-12-11 16:13:19 +00:00
|
|
|
// We need GetOwnerDoc() rather than GetCurrentDoc() because it might
|
2010-08-27 07:03:36 +00:00
|
|
|
// be the BeginUpdate call that inserts mElement into the document.
|
|
|
|
return mElement->GetOwnerDoc();
|
2009-12-11 16:13:19 +00:00
|
|
|
}
|
|
|
|
|
2010-07-23 18:00:34 +00:00
|
|
|
css::Declaration*
|
|
|
|
nsDOMCSSAttributeDeclaration::GetCSSDeclaration(PRBool aAllocate)
|
2001-11-07 07:06:31 +00:00
|
|
|
{
|
2010-08-27 07:03:36 +00:00
|
|
|
if (!mElement)
|
2010-07-23 18:00:34 +00:00
|
|
|
return nsnull;
|
2001-11-07 07:06:31 +00:00
|
|
|
|
2011-03-11 02:48:57 +00:00
|
|
|
css::StyleRule* cssRule;
|
2009-09-03 00:28:37 +00:00
|
|
|
#ifdef MOZ_SMIL
|
2010-07-23 18:00:34 +00:00
|
|
|
if (mIsSMILOverride)
|
2010-08-27 07:03:36 +00:00
|
|
|
cssRule = mElement->GetSMILOverrideStyleRule();
|
2010-07-23 18:00:34 +00:00
|
|
|
else
|
2009-09-03 00:28:37 +00:00
|
|
|
#endif // MOZ_SMIL
|
2010-08-27 07:03:36 +00:00
|
|
|
cssRule = mElement->GetInlineStyleRule();
|
2010-07-23 18:00:34 +00:00
|
|
|
|
|
|
|
if (cssRule) {
|
|
|
|
return cssRule->GetDeclaration();
|
|
|
|
}
|
|
|
|
if (!aAllocate) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
// cannot fail
|
|
|
|
css::Declaration *decl = new css::Declaration();
|
|
|
|
decl->InitializeEmpty();
|
2011-03-11 02:48:57 +00:00
|
|
|
nsRefPtr<css::StyleRule> newRule = NS_NewCSSStyleRule(nsnull, decl);
|
2010-07-23 18:00:34 +00:00
|
|
|
|
|
|
|
// this *can* fail (inside SetAttrAndNotify, at least).
|
|
|
|
nsresult rv;
|
2009-09-03 00:28:37 +00:00
|
|
|
#ifdef MOZ_SMIL
|
2010-07-23 18:00:34 +00:00
|
|
|
if (mIsSMILOverride)
|
2010-08-27 07:03:36 +00:00
|
|
|
rv = mElement->SetSMILOverrideStyleRule(newRule, PR_FALSE);
|
2010-07-23 18:00:34 +00:00
|
|
|
else
|
2009-09-03 00:28:37 +00:00
|
|
|
#endif // MOZ_SMIL
|
2010-08-27 07:03:36 +00:00
|
|
|
rv = mElement->SetInlineStyleRule(newRule, PR_FALSE);
|
2010-07-23 18:00:34 +00:00
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return nsnull; // the decl will be destroyed along with the style rule
|
2001-11-07 07:06:31 +00:00
|
|
|
}
|
|
|
|
|
2010-07-23 18:00:34 +00:00
|
|
|
return decl;
|
2001-11-07 07:06:31 +00: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
|
2003-06-18 01:59:57 +00:00
|
|
|
* being initialized.
|
2001-11-07 07:06:31 +00:00
|
|
|
*/
|
|
|
|
nsresult
|
2004-09-10 23:31:48 +00:00
|
|
|
nsDOMCSSAttributeDeclaration::GetCSSParsingEnvironment(nsIURI** aSheetURI,
|
|
|
|
nsIURI** aBaseURI,
|
2007-05-03 01:15:53 +00:00
|
|
|
nsIPrincipal** aSheetPrincipal,
|
2010-03-02 21:00:53 +00:00
|
|
|
mozilla::css::Loader** aCSSLoader)
|
2001-11-07 07:06:31 +00:00
|
|
|
{
|
2010-08-27 07:03:36 +00:00
|
|
|
NS_ASSERTION(mElement, "Something is severely broken -- there should be an Element here!");
|
2001-11-07 07:06:31 +00:00
|
|
|
// null out the out params since some of them may not get initialized below
|
2004-09-10 23:31:48 +00:00
|
|
|
*aSheetURI = nsnull;
|
2001-11-07 07:06:31 +00:00
|
|
|
*aBaseURI = nsnull;
|
2007-05-03 01:15:53 +00:00
|
|
|
*aSheetPrincipal = nsnull;
|
2001-11-07 07:06:31 +00:00
|
|
|
*aCSSLoader = nsnull;
|
2003-09-27 04:18:26 +00:00
|
|
|
|
2010-08-27 07:03:36 +00:00
|
|
|
nsIDocument* doc = mElement->GetOwnerDoc();
|
2004-09-17 20:50:22 +00:00
|
|
|
if (!doc) {
|
|
|
|
// document has been destroyed
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
2003-07-03 02:45:34 +00:00
|
|
|
|
2010-08-27 07:03:36 +00:00
|
|
|
nsCOMPtr<nsIURI> baseURI = mElement->GetBaseURI();
|
2004-09-10 23:31:48 +00:00
|
|
|
nsCOMPtr<nsIURI> sheetURI = doc->GetDocumentURI();
|
2004-01-09 23:54:21 +00:00
|
|
|
|
2005-04-19 01:27:11 +00:00
|
|
|
NS_ADDREF(*aCSSLoader = doc->CSSLoader());
|
2003-09-27 04:18:26 +00:00
|
|
|
|
2004-09-10 23:31:48 +00:00
|
|
|
baseURI.swap(*aBaseURI);
|
|
|
|
sheetURI.swap(*aSheetURI);
|
2010-08-27 07:03:36 +00:00
|
|
|
NS_ADDREF(*aSheetPrincipal = mElement->NodePrincipal());
|
2004-01-09 23:54:21 +00:00
|
|
|
|
2001-11-07 07:06:31 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2003-06-24 06:20:18 +00:00
|
|
|
NS_IMETHODIMP
|
2003-06-24 05:40:37 +00:00
|
|
|
nsDOMCSSAttributeDeclaration::GetParentRule(nsIDOMCSSRule **aParent)
|
2001-11-07 07:06:31 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aParent);
|
|
|
|
|
2003-06-24 05:40:37 +00:00
|
|
|
*aParent = nsnull;
|
2001-11-07 07:06:31 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-08-27 07:03:36 +00:00
|
|
|
/* virtual */ nsINode*
|
|
|
|
nsDOMCSSAttributeDeclaration::GetParentObject()
|
|
|
|
{
|
|
|
|
return mElement;
|
|
|
|
}
|