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)
456 lines
14 KiB
C++
456 lines
14 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/. */
|
|
|
|
/* base class for DOM objects for element.style and cssStyleRule.style */
|
|
|
|
#include "nsDOMCSSDeclaration.h"
|
|
|
|
#include "nsCSSParser.h"
|
|
#include "mozilla/CSSStyleSheet.h"
|
|
#include "mozilla/css/Rule.h"
|
|
#include "mozilla/css/Declaration.h"
|
|
#include "mozilla/dom/CSS2PropertiesBinding.h"
|
|
#include "nsCSSProps.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "mozAutoDocUpdate.h"
|
|
#include "nsIURI.h"
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
#include "nsContentUtils.h"
|
|
#include "nsQueryObject.h"
|
|
|
|
using namespace mozilla;
|
|
|
|
nsDOMCSSDeclaration::~nsDOMCSSDeclaration()
|
|
{
|
|
}
|
|
|
|
/* virtual */ JSObject*
|
|
nsDOMCSSDeclaration::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
return dom::CSS2PropertiesBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
NS_INTERFACE_TABLE_HEAD(nsDOMCSSDeclaration)
|
|
NS_INTERFACE_TABLE(nsDOMCSSDeclaration,
|
|
nsICSSDeclaration,
|
|
nsIDOMCSSStyleDeclaration)
|
|
NS_INTERFACE_TABLE_TO_MAP_SEGUE
|
|
NS_INTERFACE_MAP_END
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::GetPropertyValue(const nsCSSProperty aPropID,
|
|
nsAString& aValue)
|
|
{
|
|
NS_PRECONDITION(aPropID != eCSSProperty_UNKNOWN,
|
|
"Should never pass eCSSProperty_UNKNOWN around");
|
|
|
|
css::Declaration* decl = GetCSSDeclaration(eOperation_Read);
|
|
|
|
aValue.Truncate();
|
|
if (decl) {
|
|
decl->GetValue(aPropID, aValue);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
nsDOMCSSDeclaration::GetCustomPropertyValue(const nsAString& aPropertyName,
|
|
nsAString& aValue)
|
|
{
|
|
MOZ_ASSERT(Substring(aPropertyName, 0,
|
|
CSS_CUSTOM_NAME_PREFIX_LENGTH).EqualsLiteral("--"));
|
|
|
|
css::Declaration* decl = GetCSSDeclaration(eOperation_Read);
|
|
if (!decl) {
|
|
aValue.Truncate();
|
|
return;
|
|
}
|
|
|
|
decl->GetVariableDeclaration(Substring(aPropertyName,
|
|
CSS_CUSTOM_NAME_PREFIX_LENGTH),
|
|
aValue);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::SetPropertyValue(const nsCSSProperty aPropID,
|
|
const nsAString& aValue)
|
|
{
|
|
if (aValue.IsEmpty()) {
|
|
// If the new value of the property is an empty string we remove the
|
|
// property.
|
|
return RemoveProperty(aPropID);
|
|
}
|
|
|
|
return ParsePropertyValue(aPropID, aValue, false);
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::GetCssText(nsAString& aCssText)
|
|
{
|
|
css::Declaration* decl = GetCSSDeclaration(eOperation_Read);
|
|
aCssText.Truncate();
|
|
|
|
if (decl) {
|
|
decl->ToString(aCssText);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::SetCssText(const nsAString& aCssText)
|
|
{
|
|
// We don't need to *do* anything with the old declaration, but we need
|
|
// to ensure that it exists, or else SetCSSDeclaration may crash.
|
|
css::Declaration* olddecl = GetCSSDeclaration(eOperation_Modify);
|
|
if (!olddecl) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
CSSParsingEnvironment env;
|
|
GetCSSParsingEnvironment(env);
|
|
if (!env.mPrincipal) {
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
}
|
|
|
|
// For nsDOMCSSAttributeDeclaration, SetCSSDeclaration will lead to
|
|
// Attribute setting code, which leads in turn to BeginUpdate. We
|
|
// need to start the update now so that the old rule doesn't get used
|
|
// between when we mutate the declaration and when we set the new
|
|
// rule (see stack in bug 209575).
|
|
mozAutoDocConditionalContentUpdateBatch autoUpdate(DocToUpdate(), true);
|
|
|
|
nsAutoPtr<css::Declaration> decl(new css::Declaration());
|
|
decl->InitializeEmpty();
|
|
nsCSSParser cssParser(env.mCSSLoader);
|
|
bool changed;
|
|
nsresult result = cssParser.ParseDeclarations(aCssText, env.mSheetURI,
|
|
env.mBaseURI,
|
|
env.mPrincipal, decl, &changed);
|
|
if (NS_FAILED(result) || !changed) {
|
|
return result;
|
|
}
|
|
|
|
return SetCSSDeclaration(decl.forget());
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::GetLength(uint32_t* aLength)
|
|
{
|
|
css::Declaration* decl = GetCSSDeclaration(eOperation_Read);
|
|
|
|
if (decl) {
|
|
*aLength = decl->Count();
|
|
} else {
|
|
*aLength = 0;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
already_AddRefed<dom::CSSValue>
|
|
nsDOMCSSDeclaration::GetPropertyCSSValue(const nsAString& aPropertyName, ErrorResult& aRv)
|
|
{
|
|
// We don't support CSSValue yet so we'll just return null...
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
void
|
|
nsDOMCSSDeclaration::IndexedGetter(uint32_t aIndex, bool& aFound, nsAString& aPropName)
|
|
{
|
|
css::Declaration* decl = GetCSSDeclaration(eOperation_Read);
|
|
aFound = decl && decl->GetNthProperty(aIndex, aPropName);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::GetPropertyValue(const nsAString& aPropertyName,
|
|
nsAString& aReturn)
|
|
{
|
|
const nsCSSProperty propID =
|
|
nsCSSProps::LookupProperty(aPropertyName,
|
|
nsCSSProps::eEnabledForAllContent);
|
|
if (propID == eCSSProperty_UNKNOWN) {
|
|
aReturn.Truncate();
|
|
return NS_OK;
|
|
}
|
|
|
|
if (propID == eCSSPropertyExtra_variable) {
|
|
GetCustomPropertyValue(aPropertyName, aReturn);
|
|
return NS_OK;
|
|
}
|
|
|
|
return GetPropertyValue(propID, aReturn);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::GetAuthoredPropertyValue(const nsAString& aPropertyName,
|
|
nsAString& aReturn)
|
|
{
|
|
const nsCSSProperty propID =
|
|
nsCSSProps::LookupProperty(aPropertyName,
|
|
nsCSSProps::eEnabledForAllContent);
|
|
if (propID == eCSSProperty_UNKNOWN) {
|
|
aReturn.Truncate();
|
|
return NS_OK;
|
|
}
|
|
|
|
if (propID == eCSSPropertyExtra_variable) {
|
|
GetCustomPropertyValue(aPropertyName, aReturn);
|
|
return NS_OK;
|
|
}
|
|
|
|
css::Declaration* decl = GetCSSDeclaration(eOperation_Read);
|
|
if (!decl) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
decl->GetAuthoredValue(propID, aReturn);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::GetPropertyPriority(const nsAString& aPropertyName,
|
|
nsAString& aReturn)
|
|
{
|
|
css::Declaration* decl = GetCSSDeclaration(eOperation_Read);
|
|
|
|
aReturn.Truncate();
|
|
if (decl && decl->GetValueIsImportant(aPropertyName)) {
|
|
aReturn.AssignLiteral("important");
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::SetProperty(const nsAString& aPropertyName,
|
|
const nsAString& aValue,
|
|
const nsAString& aPriority)
|
|
{
|
|
// In the common (and fast) cases we can use the property id
|
|
nsCSSProperty propID =
|
|
nsCSSProps::LookupProperty(aPropertyName,
|
|
nsCSSProps::eEnabledForAllContent);
|
|
if (propID == eCSSProperty_UNKNOWN) {
|
|
return NS_OK;
|
|
}
|
|
|
|
if (aValue.IsEmpty()) {
|
|
// If the new value of the property is an empty string we remove the
|
|
// property.
|
|
// XXX this ignores the priority string, should it?
|
|
if (propID == eCSSPropertyExtra_variable) {
|
|
return RemoveCustomProperty(aPropertyName);
|
|
}
|
|
return RemoveProperty(propID);
|
|
}
|
|
|
|
bool important;
|
|
if (aPriority.IsEmpty()) {
|
|
important = false;
|
|
} else if (aPriority.EqualsLiteral("important")) {
|
|
important = true;
|
|
} else {
|
|
// XXX silent failure?
|
|
return NS_OK;
|
|
}
|
|
|
|
if (propID == eCSSPropertyExtra_variable) {
|
|
return ParseCustomPropertyValue(aPropertyName, aValue, important);
|
|
}
|
|
return ParsePropertyValue(propID, aValue, important);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsDOMCSSDeclaration::RemoveProperty(const nsAString& aPropertyName,
|
|
nsAString& aReturn)
|
|
{
|
|
const nsCSSProperty propID =
|
|
nsCSSProps::LookupProperty(aPropertyName,
|
|
nsCSSProps::eEnabledForAllContent);
|
|
if (propID == eCSSProperty_UNKNOWN) {
|
|
aReturn.Truncate();
|
|
return NS_OK;
|
|
}
|
|
|
|
if (propID == eCSSPropertyExtra_variable) {
|
|
RemoveCustomProperty(aPropertyName);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult rv = GetPropertyValue(propID, aReturn);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
return RemoveProperty(propID);
|
|
}
|
|
|
|
/* static */ void
|
|
nsDOMCSSDeclaration::GetCSSParsingEnvironmentForRule(css::Rule* aRule,
|
|
CSSParsingEnvironment& aCSSParseEnv)
|
|
{
|
|
nsIStyleSheet* sheet = aRule ? aRule->GetStyleSheet() : nullptr;
|
|
nsRefPtr<CSSStyleSheet> cssSheet(do_QueryObject(sheet));
|
|
if (!cssSheet) {
|
|
aCSSParseEnv.mPrincipal = nullptr;
|
|
return;
|
|
}
|
|
|
|
nsIDocument* document = sheet->GetOwningDocument();
|
|
aCSSParseEnv.mSheetURI = sheet->GetSheetURI();
|
|
aCSSParseEnv.mBaseURI = sheet->GetBaseURI();
|
|
aCSSParseEnv.mPrincipal = cssSheet->Principal();
|
|
aCSSParseEnv.mCSSLoader = document ? document->CSSLoader() : nullptr;
|
|
}
|
|
|
|
nsresult
|
|
nsDOMCSSDeclaration::ParsePropertyValue(const nsCSSProperty aPropID,
|
|
const nsAString& aPropValue,
|
|
bool aIsImportant)
|
|
{
|
|
css::Declaration* olddecl = GetCSSDeclaration(eOperation_Modify);
|
|
if (!olddecl) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
CSSParsingEnvironment env;
|
|
GetCSSParsingEnvironment(env);
|
|
if (!env.mPrincipal) {
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
}
|
|
|
|
// For nsDOMCSSAttributeDeclaration, SetCSSDeclaration will lead to
|
|
// Attribute setting code, which leads in turn to BeginUpdate. We
|
|
// need to start the update now so that the old rule doesn't get used
|
|
// between when we mutate the declaration and when we set the new
|
|
// rule (see stack in bug 209575).
|
|
mozAutoDocConditionalContentUpdateBatch autoUpdate(DocToUpdate(), true);
|
|
css::Declaration* decl = olddecl->EnsureMutable();
|
|
|
|
nsCSSParser cssParser(env.mCSSLoader);
|
|
bool changed;
|
|
nsresult result = cssParser.ParseProperty(aPropID, aPropValue, env.mSheetURI,
|
|
env.mBaseURI, env.mPrincipal, decl,
|
|
&changed, aIsImportant);
|
|
if (NS_FAILED(result) || !changed) {
|
|
if (decl != olddecl) {
|
|
delete decl;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
return SetCSSDeclaration(decl);
|
|
}
|
|
|
|
nsresult
|
|
nsDOMCSSDeclaration::ParseCustomPropertyValue(const nsAString& aPropertyName,
|
|
const nsAString& aPropValue,
|
|
bool aIsImportant)
|
|
{
|
|
MOZ_ASSERT(nsCSSProps::IsCustomPropertyName(aPropertyName));
|
|
|
|
css::Declaration* olddecl = GetCSSDeclaration(eOperation_Modify);
|
|
if (!olddecl) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
CSSParsingEnvironment env;
|
|
GetCSSParsingEnvironment(env);
|
|
if (!env.mPrincipal) {
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
}
|
|
|
|
// For nsDOMCSSAttributeDeclaration, SetCSSDeclaration will lead to
|
|
// Attribute setting code, which leads in turn to BeginUpdate. We
|
|
// need to start the update now so that the old rule doesn't get used
|
|
// between when we mutate the declaration and when we set the new
|
|
// rule (see stack in bug 209575).
|
|
mozAutoDocConditionalContentUpdateBatch autoUpdate(DocToUpdate(), true);
|
|
css::Declaration* decl = olddecl->EnsureMutable();
|
|
|
|
nsCSSParser cssParser(env.mCSSLoader);
|
|
bool changed;
|
|
nsresult result =
|
|
cssParser.ParseVariable(Substring(aPropertyName,
|
|
CSS_CUSTOM_NAME_PREFIX_LENGTH),
|
|
aPropValue, env.mSheetURI,
|
|
env.mBaseURI, env.mPrincipal, decl,
|
|
&changed, aIsImportant);
|
|
if (NS_FAILED(result) || !changed) {
|
|
if (decl != olddecl) {
|
|
delete decl;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
return SetCSSDeclaration(decl);
|
|
}
|
|
|
|
nsresult
|
|
nsDOMCSSDeclaration::RemoveProperty(const nsCSSProperty aPropID)
|
|
{
|
|
css::Declaration* decl = GetCSSDeclaration(eOperation_RemoveProperty);
|
|
if (!decl) {
|
|
return NS_OK; // no decl, so nothing to remove
|
|
}
|
|
|
|
// For nsDOMCSSAttributeDeclaration, SetCSSDeclaration will lead to
|
|
// Attribute setting code, which leads in turn to BeginUpdate. We
|
|
// need to start the update now so that the old rule doesn't get used
|
|
// between when we mutate the declaration and when we set the new
|
|
// rule (see stack in bug 209575).
|
|
mozAutoDocConditionalContentUpdateBatch autoUpdate(DocToUpdate(), true);
|
|
|
|
decl = decl->EnsureMutable();
|
|
decl->RemoveProperty(aPropID);
|
|
return SetCSSDeclaration(decl);
|
|
}
|
|
|
|
nsresult
|
|
nsDOMCSSDeclaration::RemoveCustomProperty(const nsAString& aPropertyName)
|
|
{
|
|
MOZ_ASSERT(Substring(aPropertyName, 0,
|
|
CSS_CUSTOM_NAME_PREFIX_LENGTH).EqualsLiteral("--"));
|
|
|
|
css::Declaration* decl = GetCSSDeclaration(eOperation_RemoveProperty);
|
|
if (!decl) {
|
|
return NS_OK; // no decl, so nothing to remove
|
|
}
|
|
|
|
// For nsDOMCSSAttributeDeclaration, SetCSSDeclaration will lead to
|
|
// Attribute setting code, which leads in turn to BeginUpdate. We
|
|
// need to start the update now so that the old rule doesn't get used
|
|
// between when we mutate the declaration and when we set the new
|
|
// rule (see stack in bug 209575).
|
|
mozAutoDocConditionalContentUpdateBatch autoUpdate(DocToUpdate(), true);
|
|
|
|
decl = decl->EnsureMutable();
|
|
decl->RemoveVariableDeclaration(Substring(aPropertyName,
|
|
CSS_CUSTOM_NAME_PREFIX_LENGTH));
|
|
return SetCSSDeclaration(decl);
|
|
}
|
|
|
|
bool IsCSSPropertyExposedToJS(nsCSSProperty aProperty, JSContext* cx, JSObject* obj)
|
|
{
|
|
nsCSSProps::EnabledState enabledState = nsCSSProps::eEnabledForAllContent;
|
|
|
|
// Optimization: we skip checking properties of the JSContext
|
|
// in the majority case where the property does not have the
|
|
// CSS_PROPERTY_ALWAYS_ENABLED_IN_PRIVILEGED_CONTENT flag.
|
|
bool isEnabledInChromeOrCertifiedApp
|
|
= nsCSSProps::PropHasFlags(aProperty,
|
|
CSS_PROPERTY_ALWAYS_ENABLED_IN_CHROME_OR_CERTIFIED_APP);
|
|
|
|
if (isEnabledInChromeOrCertifiedApp) {
|
|
if (dom::IsInCertifiedApp(cx, obj) ||
|
|
nsContentUtils::ThreadsafeIsCallerChrome())
|
|
{
|
|
enabledState |= nsCSSProps::eEnabledInChromeOrCertifiedApp;
|
|
}
|
|
}
|
|
return nsCSSProps::IsEnabled(aProperty, enabledState);
|
|
}
|