mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 05:37:11 +00:00
8fd0c73b26
- test part of Bug 789788 - Revise the don't-use-document-fonts option (1b6a0e6ed)
- Bug 1172782 - Change how nsTHashtable::Clear() works. r=froydnj. (c8c2adc51)
- Bug 1180072 - Remove PL_DHashTableEnumerate(). r=froydnj. (b5448efda)
- Bug 1180122 - Make Chaos Mode affect PLDHashTable's iterators. r=froydnj. (11fd0e222)
- Bug 1182516 - Add Chaos Mode environment variable MOZ_CHAOSMODE. r=roc (d636f6c90)
- Bug 1182516 - Fix mid-air conflict with 3fd2ab6cb762 on a CLOSED TREE. r=bustage (8dec46b7a)
- Bug 1184280 - Remove warning about mDisabledJSAndPlugins being false. r=ehsan (c23e96fc1)
- Bug 1181411 - Test some expected aborts in PLDHashTable. r=glandium. (682788df7)
- Bug 1185399 (part 1) - Remove macros from pldhash.h. r=froydnj. (15001ff2a)
- Bug 1185399 (part 2) - Remove macros from pldhash.cpp. r=froydnj. (afeddcc90)
- Bug 1187197 (part 1) - Move comments from PL_DHashTable* functions to the equivalent methods. r=froydnj. (78921590e)
- Bug 1187197 (part 2) - Put function return types on their own line. r=froydnj. (9aae02f83)
- Bug 1187197 (part 3) - Convert pldhash.{cpp,h} to C++ style comments. r=froydnj. (57afe7e1f)
- Bug 1202526 (part 1) - Add PLDHashTable::RemoveEntry(). r=froydnj. (1b5453695)
- Bug 1202526 (part 2) - Avoid PL_DHashTableRawRemove() in nsLoadGroup. r=mcmanus. (1ad20b17f)
- Bug 1202526 (part 3) - Avoid PL_DHashTableRawRemove() in nsDocument. r=bz. (cdde6eff0)
- Bug 1202526 (part 4) - Avoid PL_DHashTableRawRemove() in nsPropertyTable. r=bz. (ed437f4d6)
- Bug 1202526 (part 5) - Use PLDHashTable::RemoveEntry() in nsSecureBrowserUIImpl. r=dkeeler. (ac1d44066)
- Bug 1202526 (part 6) - Use PLDHashTable::RemoveEntry() in XULDocument. r=bz. (2639a053e)
- Bug 1202526 (part 7) - Use PLDHashTable::RemoveEntry() in prefs code. r=bz. (2eb3b1097)
- Bug 1202526 (part 8) - Use PLDHashTable::RemoveEntry() in the cycle collector. r=mccr8. (ec77d7635)
- Bug 1130096 - Convert embedding/components/commandhandler/ to Gecko style. r=mccr8 (a5aecf9de)
- Bug 1184842. Remove layout.frames.force_resizability pref. r=mats (9226b0caf)
- Bug 1184842. Remove frameset mVisibilityOverride since it's always false now. r=mats (1b439feb8)
- Bug 1184842. Change nsAttrAndChildArray::SetAndTakeAttr to nsAttrAndChildArray::SetAndSwapAttr. r=peterv (1442f0eae)
- Bug 1184842. Make SetAttrAndNotify use the real old value instead of aOldValue when possible. r=bz (bc45970f5)
- Bug 1184842. Add aOldValue parameter to nsNodeUtils::AttributeChanged. r=peterv (31bf8c08e)
- Bug 1184842. Pass aOldValue to all mutation observers. r=peterv (e69daf7f7)
- Bug 1184842. Allow BeforeSetAttr to preparse aValue. r=peterv (9c51655de)
- follow up fix to Bug 1184842. Allow BeforeSetAttr to preparse aValue (fb997a066)
- Bug 1149042 - Call AttributeWillChange before a style="" attribute gets created when touching element.style. r=smaug (41f2ea361)
- Bug 1184842. Pass preparsed attribute values to nsNodeUtils::AttributeWillChange. r=peterv (646622252)
- Bug 1013743, MutationObserver should observe only the subtree it is attached to, r=wchen (ad606eb15)
- Bug 1184842. Add aNewValue to nsIMutationObserver::AttributeWillChange. r=peterv (796042972)
- Bug 1184842. Preparse class attribute values in Element::BeforeSetAttr. r=peterv (e18989b2b)
- Bug 1154149 - Remove nsPresContext arguments from a bunch of nsStyleSBug 1154149 - Remove nsPresContext arguments from a bunch of nsStyleS (b7797ef66)
- Bug 1184842. Route aOldValue/aNewValue to AttributeData. r=heycam (14489941b)
- Bug 1184842. Restyling should consider only the classes that have changed. r=heycam (5a5e670dc)
- Bug 1121760 (part 1) - Remove PL_DHashTableSearch(). r=poiru. (d92813655)
205 lines
6.6 KiB
C++
205 lines
6.6 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/* DOM object for element.style */
|
|
|
|
#include "nsDOMCSSAttrDeclaration.h"
|
|
|
|
#include "mozilla/css/Declaration.h"
|
|
#include "mozilla/css/StyleRule.h"
|
|
#include "mozilla/dom/Element.h"
|
|
#include "nsIDocument.h"
|
|
#include "nsIDOMMutationEvent.h"
|
|
#include "nsIURI.h"
|
|
#include "nsNodeUtils.h"
|
|
#include "nsWrapperCacheInlines.h"
|
|
#include "nsIFrame.h"
|
|
#include "ActiveLayerTracker.h"
|
|
|
|
using namespace mozilla;
|
|
|
|
nsDOMCSSAttributeDeclaration::nsDOMCSSAttributeDeclaration(dom::Element* aElement,
|
|
bool aIsSMILOverride)
|
|
: mElement(aElement)
|
|
, mIsSMILOverride(aIsSMILOverride)
|
|
{
|
|
MOZ_COUNT_CTOR(nsDOMCSSAttributeDeclaration);
|
|
|
|
NS_ASSERTION(aElement, "Inline style for a NULL element?");
|
|
}
|
|
|
|
nsDOMCSSAttributeDeclaration::~nsDOMCSSAttributeDeclaration()
|
|
{
|
|
MOZ_COUNT_DTOR(nsDOMCSSAttributeDeclaration);
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(nsDOMCSSAttributeDeclaration, mElement)
|
|
|
|
// mElement holds a strong ref to us, so if it's going to be
|
|
// skipped, the attribute declaration can't be part of a garbage
|
|
// cycle.
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_BEGIN(nsDOMCSSAttributeDeclaration)
|
|
if (tmp->mElement && Element::CanSkip(tmp->mElement, true)) {
|
|
if (tmp->PreservingWrapper()) {
|
|
// This marks the wrapper black.
|
|
tmp->GetWrapper();
|
|
}
|
|
return true;
|
|
}
|
|
return tmp->IsBlack();
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_BEGIN(nsDOMCSSAttributeDeclaration)
|
|
return tmp->IsBlack() ||
|
|
(tmp->mElement && Element::CanSkipInCC(tmp->mElement));
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_BEGIN(nsDOMCSSAttributeDeclaration)
|
|
return tmp->IsBlack() ||
|
|
(tmp->mElement && Element::CanSkipThis(tmp->mElement));
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_END
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsDOMCSSAttributeDeclaration)
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
NS_IMPL_QUERY_TAIL_INHERITING(nsDOMCSSDeclaration)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMCSSAttributeDeclaration)
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMCSSAttributeDeclaration)
|
|
|
|
nsresult
|
|
nsDOMCSSAttributeDeclaration::SetCSSDeclaration(css::Declaration* aDecl)
|
|
{
|
|
NS_ASSERTION(mElement, "Must have Element to set the declaration!");
|
|
css::StyleRule* oldRule =
|
|
mIsSMILOverride ? mElement->GetSMILOverrideStyleRule() :
|
|
mElement->GetInlineStyleRule();
|
|
NS_ASSERTION(oldRule, "Element must have rule");
|
|
|
|
nsRefPtr<css::StyleRule> newRule =
|
|
oldRule->DeclarationChanged(aDecl, false);
|
|
if (!newRule) {
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
}
|
|
|
|
return
|
|
mIsSMILOverride ? mElement->SetSMILOverrideStyleRule(newRule, true) :
|
|
mElement->SetInlineStyleRule(newRule, nullptr, true);
|
|
}
|
|
|
|
nsIDocument*
|
|
nsDOMCSSAttributeDeclaration::DocToUpdate()
|
|
{
|
|
// We need OwnerDoc() rather than GetCurrentDoc() because it might
|
|
// be the BeginUpdate call that inserts mElement into the document.
|
|
return mElement->OwnerDoc();
|
|
}
|
|
|
|
css::Declaration*
|
|
nsDOMCSSAttributeDeclaration::GetCSSDeclaration(Operation aOperation)
|
|
{
|
|
if (!mElement)
|
|
return nullptr;
|
|
|
|
css::StyleRule* cssRule;
|
|
if (mIsSMILOverride)
|
|
cssRule = mElement->GetSMILOverrideStyleRule();
|
|
else
|
|
cssRule = mElement->GetInlineStyleRule();
|
|
|
|
// Notify observers that our style="" attribute is going to change
|
|
// unless:
|
|
// * this is a declaration that holds SMIL animation values (which
|
|
// aren't reflected in the DOM style="" attribute), or
|
|
// * we're getting the declaration for reading, or
|
|
// * we're getting it for property removal but we don't currently have
|
|
// a declaration.
|
|
|
|
// 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.
|
|
if (!mIsSMILOverride &&
|
|
((aOperation == eOperation_Modify) ||
|
|
(aOperation == eOperation_RemoveProperty && cssRule))) {
|
|
nsNodeUtils::AttributeWillChange(mElement, kNameSpaceID_None,
|
|
nsGkAtoms::style,
|
|
nsIDOMMutationEvent::MODIFICATION,
|
|
nullptr);
|
|
}
|
|
|
|
if (cssRule) {
|
|
return cssRule->GetDeclaration();
|
|
}
|
|
|
|
if (aOperation != eOperation_Modify) {
|
|
return nullptr;
|
|
}
|
|
|
|
// cannot fail
|
|
css::Declaration *decl = new css::Declaration();
|
|
decl->InitializeEmpty();
|
|
nsRefPtr<css::StyleRule> newRule = new css::StyleRule(nullptr, decl, 0, 0);
|
|
|
|
// this *can* fail (inside SetAttrAndNotify, at least).
|
|
nsresult rv;
|
|
if (mIsSMILOverride)
|
|
rv = mElement->SetSMILOverrideStyleRule(newRule, false);
|
|
else
|
|
rv = mElement->SetInlineStyleRule(newRule, nullptr, false);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
return nullptr; // the decl will be destroyed along with the style rule
|
|
}
|
|
|
|
return decl;
|
|
}
|
|
|
|
void
|
|
nsDOMCSSAttributeDeclaration::GetCSSParsingEnvironment(CSSParsingEnvironment& aCSSParseEnv)
|
|
{
|
|
NS_ASSERTION(mElement, "Something is severely broken -- there should be an Element here!");
|
|
|
|
nsIDocument* doc = mElement->OwnerDoc();
|
|
aCSSParseEnv.mSheetURI = doc->GetDocumentURI();
|
|
aCSSParseEnv.mBaseURI = mElement->GetBaseURI();
|
|
aCSSParseEnv.mPrincipal = mElement->NodePrincipal();
|
|
aCSSParseEnv.mCSSLoader = doc->CSSLoader();
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSAttributeDeclaration::GetParentRule(nsIDOMCSSRule **aParent)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aParent);
|
|
|
|
*aParent = nullptr;
|
|
return NS_OK;
|
|
}
|
|
|
|
/* virtual */ nsINode*
|
|
nsDOMCSSAttributeDeclaration::GetParentObject()
|
|
{
|
|
return mElement;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSAttributeDeclaration::SetPropertyValue(const nsCSSProperty aPropID,
|
|
const nsAString& aValue)
|
|
{
|
|
// Scripted modifications to style.opacity or style.transform
|
|
// could immediately force us into the animated state if heuristics suggest
|
|
// this is scripted animation.
|
|
if (aPropID == eCSSProperty_opacity || aPropID == eCSSProperty_transform ||
|
|
aPropID == eCSSProperty_left || aPropID == eCSSProperty_top ||
|
|
aPropID == eCSSProperty_right || aPropID == eCSSProperty_bottom ||
|
|
aPropID == eCSSProperty_margin_left || aPropID == eCSSProperty_margin_top ||
|
|
aPropID == eCSSProperty_margin_right || aPropID == eCSSProperty_margin_bottom) {
|
|
nsIFrame* frame = mElement->GetPrimaryFrame();
|
|
if (frame) {
|
|
ActiveLayerTracker::NotifyInlineStyleRuleModified(frame, aPropID);
|
|
}
|
|
}
|
|
return nsDOMCSSDeclaration::SetPropertyValue(aPropID, aValue);
|
|
}
|