mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
a8cf86e4b7
Patch co-authored by Emmanuele Bassi <ebassi@gmail.com> This defines a CSSVariableDeclarations class that holds a set of variable declarations. This is at the specified value stage, so values can either be 'initial', 'inherit' or a token stream (which is what you normally have). The variables are stored in a hash table. Although it's a bit of a hack, we store 'initial' and 'inherit' using special string values that can't be valid token streams (we use "!" and ";"). Declaration objects now can have two CSSVariableDeclarations objects on them, to store normal and !important variable declarations. So that we keep preserving the order of declarations on the object, we inflate mOrder to store uint32_ts, where values from eCSSProperty_COUNT onwards represent custom properties. mVariableOrder stores the names of the variables corresponding to those entries in mOrder. We also add a new nsCSSProperty value, eCSSPropertyExtra_variable, which is used to represent any custom property name. nsCSSProps::LookupProperty can return this value. The changes to nsCSSParser are straightforward. Custom properties are parsed and checked for syntactic validity (e.g. "var(a,)" being invalid) and stored on the Declaration. We use nsCSSScanner's recording ability to grab the unparsed CSS string corresponding to the variable's value.
76 lines
2.4 KiB
C
76 lines
2.4 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/. */
|
|
|
|
/* enum types for CSS properties and their values */
|
|
|
|
#ifndef nsCSSProperty_h___
|
|
#define nsCSSProperty_h___
|
|
|
|
/*
|
|
Declare the enum list using the magic of preprocessing
|
|
enum values are "eCSSProperty_foo" (where foo is the property)
|
|
|
|
To change the list of properties, see nsCSSPropList.h
|
|
|
|
*/
|
|
enum nsCSSProperty {
|
|
eCSSProperty_UNKNOWN = -1,
|
|
|
|
#define CSS_PROP(name_, id_, method_, flags_, pref_, parsevariant_, \
|
|
kwtable_, stylestruct_, stylestructoffset_, animtype_) \
|
|
eCSSProperty_##id_,
|
|
#include "nsCSSPropList.h"
|
|
#undef CSS_PROP
|
|
|
|
eCSSProperty_COUNT_no_shorthands,
|
|
// Make the count continue where it left off:
|
|
eCSSProperty_COUNT_DUMMY = eCSSProperty_COUNT_no_shorthands - 1,
|
|
|
|
#define CSS_PROP_SHORTHAND(name_, id_, method_, flags_, pref_) \
|
|
eCSSProperty_##id_,
|
|
#include "nsCSSPropList.h"
|
|
#undef CSS_PROP_SHORTHAND
|
|
|
|
eCSSProperty_COUNT,
|
|
// Make the count continue where it left off:
|
|
eCSSProperty_COUNT_DUMMY2 = eCSSProperty_COUNT - 1,
|
|
|
|
#define CSS_PROP_ALIAS(aliasname_, id_, method_, pref_) \
|
|
eCSSPropertyAlias_##method_,
|
|
#include "nsCSSPropAliasList.h"
|
|
#undef CSS_PROP_ALIAS
|
|
|
|
eCSSProperty_COUNT_with_aliases,
|
|
// Make the count continue where it left off:
|
|
eCSSProperty_COUNT_DUMMY3 = eCSSProperty_COUNT_with_aliases - 1,
|
|
|
|
// Some of the values below could probably overlap with each other
|
|
// if we had a need for them to do so.
|
|
|
|
// Extra values for use in the values of the 'transition-property'
|
|
// property.
|
|
eCSSPropertyExtra_no_properties,
|
|
eCSSPropertyExtra_all_properties,
|
|
|
|
// Extra dummy values for nsCSSParser internal use.
|
|
eCSSPropertyExtra_x_none_value,
|
|
eCSSPropertyExtra_x_auto_value,
|
|
|
|
// Extra value to represent custom properties (var-*).
|
|
eCSSPropertyExtra_variable
|
|
};
|
|
|
|
// The "descriptors" that can appear in a @font-face rule.
|
|
// They have the syntax of properties but different value rules.
|
|
enum nsCSSFontDesc {
|
|
eCSSFontDesc_UNKNOWN = -1,
|
|
#define CSS_FONT_DESC(name_, method_) eCSSFontDesc_##method_,
|
|
#include "nsCSSFontDescList.h"
|
|
#undef CSS_FONT_DESC
|
|
eCSSFontDesc_COUNT
|
|
};
|
|
|
|
#endif /* nsCSSProperty_h___ */
|