This fixes the font-stretch issues diego is finding in bug 1911075. Differential Revision: https://phabricator.services.mozilla.com/D31250
214 lines
7.3 KiB
C++
214 lines
7.3 KiB
C++
/* 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/. */
|
|
|
|
/*
|
|
* methods for dealing with CSS properties and tables of the keyword
|
|
* values they accept
|
|
*/
|
|
|
|
#include "nsCSSProps.h"
|
|
|
|
#include "gfxPlatform.h"
|
|
#include "mozilla/ClearOnShutdown.h"
|
|
#include "mozilla/LookAndFeel.h" // for system colors
|
|
#include "mozilla/Preferences.h"
|
|
#include "mozilla/StaticPrefs_layout.h"
|
|
#include "mozilla/StaticPtr.h"
|
|
#include "mozilla/dom/Animation.h"
|
|
#include "mozilla/dom/AnimationEffectBinding.h" // for PlaybackDirection
|
|
#include "mozilla/gfx/gfxVarReceiver.h"
|
|
#include "mozilla/gfx/gfxVars.h" // for UseWebRender
|
|
#include "nsIWidget.h"
|
|
#include "nsLayoutUtils.h"
|
|
#include "nsString.h"
|
|
#include "nsStyleConsts.h" // For system widget appearance types
|
|
|
|
using namespace mozilla;
|
|
|
|
static StaticAutoPtr<nsTHashMap<nsCStringHashKey, NonCustomCSSPropertyId>>
|
|
gPropertyIDLNameTable;
|
|
|
|
static constexpr CSSPropFlags kFlagsTable[eCSSProperty_COUNT_with_aliases] = {
|
|
#define CSS_PROP_LONGHAND(name_, id_, method_, flags_, ...) flags_,
|
|
#define CSS_PROP_SHORTHAND(name_, id_, method_, flags_, ...) flags_,
|
|
#define CSS_PROP_ALIAS(name_, aliasid_, id_, method_, flags_, ...) flags_,
|
|
#include "mozilla/ServoCSSPropList.h"
|
|
#undef CSS_PROP_ALIAS
|
|
#undef CSS_PROP_SHORTHAND
|
|
#undef CSS_PROP_LONGHAND
|
|
};
|
|
|
|
void nsCSSProps::RecomputeEnabledState(const char* aPref, void*) {
|
|
MOZ_RELEASE_ASSERT(NS_IsMainThread());
|
|
DebugOnly<bool> foundPref = false;
|
|
for (const PropertyPref* pref = kPropertyPrefTable;
|
|
pref->mPropId != eCSSProperty_UNKNOWN; pref++) {
|
|
if (!aPref || !strcmp(aPref, pref->mPref)) {
|
|
foundPref = true;
|
|
gPropertyEnabled[pref->mPropId] = Preferences::GetBool(pref->mPref);
|
|
if (pref->mPropId == eCSSProperty_backdrop_filter) {
|
|
gPropertyEnabled[pref->mPropId] &=
|
|
gfx::gfxVars::GetAllowBackdropFilterOrDefault();
|
|
}
|
|
#ifdef FUZZING
|
|
// In fuzzing builds we want to enable all properties unconditionally.
|
|
gPropertyEnabled[pref->mPropId] = true;
|
|
#endif
|
|
}
|
|
}
|
|
MOZ_ASSERT(foundPref);
|
|
}
|
|
|
|
void nsCSSProps::Init() {
|
|
MOZ_ASSERT(!gPropertyIDLNameTable, "pre existing array!");
|
|
|
|
gPropertyIDLNameTable =
|
|
new nsTHashMap<nsCStringHashKey, NonCustomCSSPropertyId>;
|
|
for (NonCustomCSSPropertyId p = NonCustomCSSPropertyId(0);
|
|
size_t(p) < std::size(kIDLNameTable);
|
|
p = NonCustomCSSPropertyId(p + 1)) {
|
|
if (kIDLNameTable[p]) {
|
|
gPropertyIDLNameTable->InsertOrUpdate(
|
|
nsDependentCString(kIDLNameTable[p]), p);
|
|
}
|
|
}
|
|
|
|
ClearOnShutdown(&gPropertyIDLNameTable);
|
|
|
|
for (const PropertyPref* pref = kPropertyPrefTable;
|
|
pref->mPropId != eCSSProperty_UNKNOWN; pref++) {
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1472523
|
|
// We need to use nsCString instead of substring because the preference
|
|
// callback code stores them. Using AssignLiteral prevents any
|
|
// unnecessary allocations.
|
|
nsCString prefName;
|
|
prefName.AssignLiteral(pref->mPref, strlen(pref->mPref));
|
|
Preferences::RegisterCallback(nsCSSProps::RecomputeEnabledState, prefName);
|
|
}
|
|
RecomputeEnabledState(/* aPrefName = */ nullptr);
|
|
}
|
|
|
|
/* static */
|
|
bool nsCSSProps::IsCustomPropertyName(const nsACString& aProperty) {
|
|
return aProperty.Length() >= CSS_CUSTOM_NAME_PREFIX_LENGTH &&
|
|
StringBeginsWith(aProperty, "--"_ns);
|
|
}
|
|
|
|
NonCustomCSSPropertyId nsCSSProps::LookupPropertyByIDLName(
|
|
const nsACString& aPropertyIDLName, EnabledState aEnabled) {
|
|
MOZ_ASSERT(gPropertyIDLNameTable, "no lookup table, needs addref");
|
|
NonCustomCSSPropertyId res;
|
|
if (!gPropertyIDLNameTable->Get(aPropertyIDLName, &res)) {
|
|
return eCSSProperty_UNKNOWN;
|
|
}
|
|
MOZ_ASSERT(res < eCSSProperty_COUNT_with_aliases);
|
|
if (!IsEnabled(res, aEnabled)) {
|
|
return eCSSProperty_UNKNOWN;
|
|
}
|
|
return Servo_Property_ResolveAlias(res);
|
|
}
|
|
|
|
template <typename Id, size_t N>
|
|
static Maybe<Id> LookupDescriptor(
|
|
const nsACString& aName,
|
|
const nsCSSProps::DescriptorTableEntry<Id> (&aTable)[N]) {
|
|
for (const auto& entry : aTable) {
|
|
// XXX should probably handle aliases but doesn't right now.
|
|
if (aName.LowerCaseEqualsASCII(entry.mName.get(), entry.mName.Length())) {
|
|
return Some(entry.mId);
|
|
}
|
|
}
|
|
return Nothing();
|
|
}
|
|
|
|
Maybe<FontFaceDescriptorId> nsCSSProps::LookupFontDesc(
|
|
const nsACString& aFontDesc) {
|
|
return LookupDescriptor(aFontDesc, kFontFaceDescs);
|
|
}
|
|
|
|
Maybe<CounterStyleDescriptorId> nsCSSProps::LookupCounterStyleDesc(
|
|
const nsACString& aDesc) {
|
|
return LookupDescriptor(aDesc, kCounterStyleDescs);
|
|
}
|
|
|
|
const nsCString& nsCSSProps::GetStringValue(FontFaceDescriptorId aDesc) {
|
|
MOZ_ASSERT(size_t(aDesc) < kFontFaceDescriptorCount);
|
|
return kFontFaceDescs[size_t(aDesc)].mName;
|
|
}
|
|
|
|
const nsCString& nsCSSProps::GetStringValue(CounterStyleDescriptorId aDesc) {
|
|
MOZ_ASSERT(size_t(aDesc) < kCounterStyleDescriptorCount);
|
|
return kCounterStyleDescs[size_t(aDesc)].mName;
|
|
}
|
|
|
|
CSSPropFlags nsCSSProps::PropFlags(NonCustomCSSPropertyId aProperty) {
|
|
MOZ_ASSERT(aProperty != eCSSProperty_UNKNOWN &&
|
|
aProperty < eCSSProperty_COUNT_with_aliases,
|
|
"out of range");
|
|
return kFlagsTable[aProperty];
|
|
}
|
|
|
|
/* static */
|
|
bool nsCSSProps::gPropertyEnabled[eCSSProperty_COUNT_with_aliases] = {
|
|
// If the property has any "ENABLED_IN" flag set, it is disabled by
|
|
// default. Note that, if a property has pref, whatever its default
|
|
// value is, it will later be changed in nsCSSProps::AddRefTable().
|
|
// If the property has "ENABLED_IN" flags but doesn't have a pref,
|
|
// it is an internal property which is disabled elsewhere.
|
|
#define IS_ENABLED_BY_DEFAULT(flags_) \
|
|
(!((flags_) & (CSSPropFlags::EnabledMask | CSSPropFlags::Inaccessible)))
|
|
|
|
#define CSS_PROP_LONGHAND(name_, id_, method_, flags_, ...) \
|
|
IS_ENABLED_BY_DEFAULT(flags_),
|
|
#define CSS_PROP_SHORTHAND(name_, id_, method_, flags_, ...) \
|
|
IS_ENABLED_BY_DEFAULT(flags_),
|
|
#define CSS_PROP_ALIAS(name_, aliasid_, id_, method_, flags_, ...) \
|
|
IS_ENABLED_BY_DEFAULT(flags_),
|
|
#include "mozilla/ServoCSSPropList.h"
|
|
#undef CSS_PROP_ALIAS
|
|
#undef CSS_PROP_SHORTHAND
|
|
#undef CSS_PROP_LONGHAND
|
|
|
|
#undef IS_ENABLED_BY_DEFAULT
|
|
};
|
|
|
|
/**
|
|
* A singleton class to register as a receiver for gfxVars.
|
|
* Updates the state of backdrop-filter's pref if the gfx
|
|
* backdrop filter var changes state.
|
|
*/
|
|
class nsCSSPropsGfxVarReceiver final : public gfx::gfxVarReceiver {
|
|
constexpr nsCSSPropsGfxVarReceiver() = default;
|
|
|
|
// Backdrop filter's last known enabled state.
|
|
static bool sLastKnownAllowBackdropFilter;
|
|
static nsCSSPropsGfxVarReceiver sInstance;
|
|
|
|
public:
|
|
static gfx::gfxVarReceiver& GetInstance() { return sInstance; }
|
|
|
|
void OnVarChanged(const nsTArray<gfx::GfxVarUpdate>&) override {
|
|
bool enabled = gfx::gfxVars::AllowBackdropFilter();
|
|
if (sLastKnownAllowBackdropFilter != enabled) {
|
|
sLastKnownAllowBackdropFilter = enabled;
|
|
nsCSSProps::RecomputeEnabledState(
|
|
StaticPrefs::GetPrefName_layout_css_backdrop_filter_enabled());
|
|
}
|
|
}
|
|
};
|
|
|
|
/* static */
|
|
nsCSSPropsGfxVarReceiver nsCSSPropsGfxVarReceiver::sInstance =
|
|
nsCSSPropsGfxVarReceiver();
|
|
|
|
/* static */
|
|
bool nsCSSPropsGfxVarReceiver::sLastKnownAllowBackdropFilter = true;
|
|
|
|
/* static */
|
|
gfx::gfxVarReceiver& nsCSSProps::GfxVarReceiver() {
|
|
return nsCSSPropsGfxVarReceiver::GetInstance();
|
|
}
|
|
|
|
#include "nsCSSPropsGenerated.inc"
|