2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2006-03-25 08:47:31 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* methods for dealing with CSS properties and tables of the keyword
|
|
|
|
* values they accept
|
|
|
|
*/
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#ifndef nsCSSProps_h___
|
|
|
|
#define nsCSSProps_h___
|
|
|
|
|
2016-07-28 10:40:09 +03:00
|
|
|
#include <limits>
|
|
|
|
#include <type_traits>
|
2018-03-09 22:55:12 +03:00
|
|
|
#include "nsStringFwd.h"
|
2016-08-17 04:37:48 +03:00
|
|
|
#include "nsCSSPropertyID.h"
|
2013-09-16 05:06:52 +04:00
|
|
|
#include "nsStyleStructFwd.h"
|
2004-10-01 21:15:15 +04:00
|
|
|
#include "nsCSSKeywords.h"
|
2016-05-10 11:44:05 +03:00
|
|
|
#include "mozilla/CSSEnabledState.h"
|
2015-06-03 22:21:24 +03:00
|
|
|
#include "mozilla/UseCounter.h"
|
2016-09-07 05:20:16 +03:00
|
|
|
#include "mozilla/EnumTypeTraits.h"
|
2017-03-17 00:43:17 +03:00
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
#include "nsXULAppAPI.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2014-04-02 07:32:16 +04:00
|
|
|
// Length of the "--" prefix on custom names (such as custom property names,
|
|
|
|
// and, in the future, custom media query names).
|
|
|
|
#define CSS_CUSTOM_NAME_PREFIX_LENGTH 2
|
|
|
|
|
2013-07-16 01:28:49 +04:00
|
|
|
// Flags for ParseVariant method
|
|
|
|
#define VARIANT_KEYWORD 0x000001 // K
|
|
|
|
#define VARIANT_LENGTH 0x000002 // L
|
|
|
|
#define VARIANT_PERCENT 0x000004 // P
|
2013-09-16 03:35:48 +04:00
|
|
|
#define VARIANT_COLOR 0x000008 // C eCSSUnit_*Color, eCSSUnit_Ident (e.g. "red")
|
2013-07-16 01:28:49 +04:00
|
|
|
#define VARIANT_URL 0x000010 // U
|
|
|
|
#define VARIANT_NUMBER 0x000020 // N
|
|
|
|
#define VARIANT_INTEGER 0x000040 // I
|
|
|
|
#define VARIANT_ANGLE 0x000080 // G
|
|
|
|
#define VARIANT_FREQUENCY 0x000100 // F
|
|
|
|
#define VARIANT_TIME 0x000200 // T
|
|
|
|
#define VARIANT_STRING 0x000400 // S
|
|
|
|
#define VARIANT_COUNTER 0x000800 //
|
|
|
|
#define VARIANT_ATTR 0x001000 //
|
|
|
|
#define VARIANT_IDENTIFIER 0x002000 // D
|
|
|
|
#define VARIANT_IDENTIFIER_NO_INHERIT 0x004000 // like above, but excluding
|
|
|
|
// 'inherit' and 'initial'
|
|
|
|
#define VARIANT_AUTO 0x010000 // A
|
2013-10-03 22:49:17 +04:00
|
|
|
#define VARIANT_INHERIT 0x020000 // H eCSSUnit_Initial, eCSSUnit_Inherit, eCSSUnit_Unset
|
2013-07-16 01:28:49 +04:00
|
|
|
#define VARIANT_NONE 0x040000 // O
|
|
|
|
#define VARIANT_NORMAL 0x080000 // M
|
|
|
|
#define VARIANT_SYSFONT 0x100000 // eCSSUnit_System_Font
|
|
|
|
#define VARIANT_GRADIENT 0x200000 // eCSSUnit_Gradient
|
|
|
|
#define VARIANT_TIMING_FUNCTION 0x400000 // cubic-bezier() and steps()
|
|
|
|
#define VARIANT_ALL 0x800000 //
|
|
|
|
#define VARIANT_IMAGE_RECT 0x01000000 // eCSSUnit_Function
|
|
|
|
// This is an extra bit that says that a VARIANT_ANGLE allows unitless zero:
|
|
|
|
#define VARIANT_ZERO_ANGLE 0x02000000 // unitless zero for angles
|
|
|
|
#define VARIANT_CALC 0x04000000 // eCSSUnit_Calc
|
|
|
|
#define VARIANT_ELEMENT 0x08000000 // eCSSUnit_Element
|
2016-08-12 07:52:48 +03:00
|
|
|
#define VARIANT_NONNEGATIVE_DIMENSION 0x10000000 // Only lengths greater than or equal to 0.0
|
2013-05-16 06:35:15 +04:00
|
|
|
// Keyword used iff gfx.font_rendering.opentype_svg.enabled is true:
|
2016-08-12 07:52:48 +03:00
|
|
|
#define VARIANT_OPENTYPE_SVG_KEYWORD 0x20000000
|
|
|
|
#define VARIANT_ABSOLUTE_DIMENSION 0x40000000 // B Only lengths with absolute length unit
|
2013-07-16 01:28:49 +04:00
|
|
|
|
2015-10-16 09:34:04 +03:00
|
|
|
// Variants that can consume more than one token
|
|
|
|
#define VARIANT_MULTIPLE_TOKENS \
|
|
|
|
(VARIANT_COLOR | /* rgb(...), hsl(...), etc. */ \
|
|
|
|
VARIANT_COUNTER | /* counter(...), counters(...) */ \
|
|
|
|
VARIANT_ATTR | /* attr(...) */ \
|
|
|
|
VARIANT_GRADIENT | /* linear-gradient(...), etc. */ \
|
|
|
|
VARIANT_TIMING_FUNCTION | /* cubic-bezier(...), steps(...) */ \
|
|
|
|
VARIANT_IMAGE_RECT | /* -moz-image-rect(...) */ \
|
|
|
|
VARIANT_CALC | /* calc(...) */ \
|
|
|
|
VARIANT_ELEMENT) /* -moz-element(...) */
|
|
|
|
|
2013-07-16 01:28:49 +04:00
|
|
|
// Common combinations of variants
|
|
|
|
#define VARIANT_AL (VARIANT_AUTO | VARIANT_LENGTH)
|
|
|
|
#define VARIANT_LP (VARIANT_LENGTH | VARIANT_PERCENT)
|
|
|
|
#define VARIANT_LN (VARIANT_LENGTH | VARIANT_NUMBER)
|
|
|
|
#define VARIANT_AH (VARIANT_AUTO | VARIANT_INHERIT)
|
|
|
|
#define VARIANT_AHLP (VARIANT_AH | VARIANT_LP)
|
|
|
|
#define VARIANT_AHI (VARIANT_AH | VARIANT_INTEGER)
|
|
|
|
#define VARIANT_AHK (VARIANT_AH | VARIANT_KEYWORD)
|
|
|
|
#define VARIANT_AHKLP (VARIANT_AHLP | VARIANT_KEYWORD)
|
|
|
|
#define VARIANT_AHL (VARIANT_AH | VARIANT_LENGTH)
|
|
|
|
#define VARIANT_AHKL (VARIANT_AHK | VARIANT_LENGTH)
|
|
|
|
#define VARIANT_HK (VARIANT_INHERIT | VARIANT_KEYWORD)
|
|
|
|
#define VARIANT_HKF (VARIANT_HK | VARIANT_FREQUENCY)
|
|
|
|
#define VARIANT_HKI (VARIANT_HK | VARIANT_INTEGER)
|
|
|
|
#define VARIANT_HKL (VARIANT_HK | VARIANT_LENGTH)
|
|
|
|
#define VARIANT_HKLP (VARIANT_HK | VARIANT_LP)
|
|
|
|
#define VARIANT_HKLPO (VARIANT_HKLP | VARIANT_NONE)
|
|
|
|
#define VARIANT_HL (VARIANT_INHERIT | VARIANT_LENGTH)
|
|
|
|
#define VARIANT_HI (VARIANT_INHERIT | VARIANT_INTEGER)
|
|
|
|
#define VARIANT_HLP (VARIANT_HL | VARIANT_PERCENT)
|
|
|
|
#define VARIANT_HLPN (VARIANT_HLP | VARIANT_NUMBER)
|
|
|
|
#define VARIANT_HLPO (VARIANT_HLP | VARIANT_NONE)
|
|
|
|
#define VARIANT_HTP (VARIANT_INHERIT | VARIANT_TIME | VARIANT_PERCENT)
|
|
|
|
#define VARIANT_HMK (VARIANT_HK | VARIANT_NORMAL)
|
|
|
|
#define VARIANT_HC (VARIANT_INHERIT | VARIANT_COLOR)
|
|
|
|
#define VARIANT_HCK (VARIANT_HK | VARIANT_COLOR)
|
|
|
|
#define VARIANT_HUK (VARIANT_HK | VARIANT_URL)
|
|
|
|
#define VARIANT_HUO (VARIANT_INHERIT | VARIANT_URL | VARIANT_NONE)
|
|
|
|
#define VARIANT_AHUO (VARIANT_AUTO | VARIANT_HUO)
|
|
|
|
#define VARIANT_HPN (VARIANT_INHERIT | VARIANT_PERCENT | VARIANT_NUMBER)
|
|
|
|
#define VARIANT_PN (VARIANT_PERCENT | VARIANT_NUMBER)
|
|
|
|
#define VARIANT_ALPN (VARIANT_AL | VARIANT_PN)
|
|
|
|
#define VARIANT_HN (VARIANT_INHERIT | VARIANT_NUMBER)
|
|
|
|
#define VARIANT_HON (VARIANT_HN | VARIANT_NONE)
|
|
|
|
#define VARIANT_HOS (VARIANT_INHERIT | VARIANT_NONE | VARIANT_STRING)
|
|
|
|
#define VARIANT_LPN (VARIANT_LP | VARIANT_NUMBER)
|
|
|
|
#define VARIANT_UK (VARIANT_URL | VARIANT_KEYWORD)
|
|
|
|
#define VARIANT_UO (VARIANT_URL | VARIANT_NONE)
|
|
|
|
#define VARIANT_ANGLE_OR_ZERO (VARIANT_ANGLE | VARIANT_ZERO_ANGLE)
|
2016-02-02 03:45:09 +03:00
|
|
|
#define VARIANT_LB (VARIANT_LENGTH | VARIANT_ABSOLUTE_DIMENSION)
|
|
|
|
#define VARIANT_LBCALC (VARIANT_LB | VARIANT_CALC)
|
2013-07-23 02:08:33 +04:00
|
|
|
#define VARIANT_LCALC (VARIANT_LENGTH | VARIANT_CALC)
|
|
|
|
#define VARIANT_LPCALC (VARIANT_LCALC | VARIANT_PERCENT)
|
|
|
|
#define VARIANT_LNCALC (VARIANT_LCALC | VARIANT_NUMBER)
|
2013-07-16 01:28:49 +04:00
|
|
|
#define VARIANT_LPNCALC (VARIANT_LNCALC | VARIANT_PERCENT)
|
|
|
|
#define VARIANT_IMAGE (VARIANT_URL | VARIANT_NONE | VARIANT_GRADIENT | \
|
|
|
|
VARIANT_IMAGE_RECT | VARIANT_ELEMENT)
|
|
|
|
|
2008-10-08 02:10:19 +04:00
|
|
|
// Flags for the kFlagsTable bitfield (flags_ in nsCSSPropList.h)
|
|
|
|
|
2008-12-12 21:59:03 +03:00
|
|
|
#define CSS_PROPERTY_VALUE_LIST_USES_COMMAS (1<<1) /* otherwise spaces */
|
2009-11-15 06:16:59 +03:00
|
|
|
|
2011-03-05 20:58:33 +03:00
|
|
|
// Define what mechanism the CSS parser uses for parsing the property.
|
2016-08-17 04:37:48 +03:00
|
|
|
// See CSSParserImpl::ParseProperty(nsCSSPropertyID). Don't use 0 so that
|
2011-03-05 20:58:33 +03:00
|
|
|
// we can verify that every property sets one of the values.
|
|
|
|
#define CSS_PROPERTY_PARSE_PROPERTY_MASK (7<<9)
|
|
|
|
#define CSS_PROPERTY_PARSE_INACCESSIBLE (1<<9)
|
|
|
|
#define CSS_PROPERTY_PARSE_FUNCTION (2<<9)
|
|
|
|
|
2012-03-29 21:16:21 +04:00
|
|
|
// See CSSParserImpl::ParseSingleValueProperty and comment above
|
|
|
|
// CSS_PROPERTY_PARSE_FUNCTION (which is different).
|
2011-03-05 20:58:33 +03:00
|
|
|
#define CSS_PROPERTY_VALUE_PARSER_FUNCTION (1<<12)
|
2013-07-18 21:59:53 +04:00
|
|
|
static_assert((CSS_PROPERTY_PARSE_PROPERTY_MASK &
|
|
|
|
CSS_PROPERTY_VALUE_PARSER_FUNCTION) == 0,
|
|
|
|
"didn't leave enough room for the parse property constants");
|
2011-03-05 20:58:33 +03:00
|
|
|
|
2018-03-25 16:26:26 +03:00
|
|
|
// There's a free bit here.
|
2012-09-18 22:37:14 +04:00
|
|
|
|
2013-09-23 17:28:55 +04:00
|
|
|
// This property's getComputedStyle implementation requires layout to be
|
|
|
|
// flushed.
|
|
|
|
#define CSS_PROPERTY_GETCS_NEEDS_LAYOUT_FLUSH (1<<20)
|
|
|
|
|
2015-10-03 04:12:09 +03:00
|
|
|
// The following two flags along with the pref defines where the this
|
|
|
|
// property can be used:
|
|
|
|
// * If none of the two flags is presented, the pref completely controls
|
|
|
|
// the availability of this property. And in that case, if it has no
|
|
|
|
// pref, this property is usable everywhere.
|
|
|
|
// * If any of the flags is set, this property is always enabled in the
|
|
|
|
// specific contexts regardless of the value of the pref. If there is
|
|
|
|
// no pref for this property at all in this case, it is an internal-
|
|
|
|
// only property, which cannot be used anywhere else, and should be
|
|
|
|
// wrapped in "#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL".
|
|
|
|
// Note that, these flags have no effect on the use of aliases of this
|
|
|
|
// property.
|
2016-04-21 11:05:46 +03:00
|
|
|
// Furthermore, for the purposes of animation (including triggering
|
|
|
|
// transitions) these flags are ignored. That is, if the property is disabled
|
|
|
|
// by a pref, we will *not* run animations or transitions on it even in
|
|
|
|
// UA sheets or chrome.
|
2015-10-03 04:12:09 +03:00
|
|
|
#define CSS_PROPERTY_ENABLED_MASK (3<<22)
|
|
|
|
#define CSS_PROPERTY_ENABLED_IN_UA_SHEETS (1<<22)
|
|
|
|
#define CSS_PROPERTY_ENABLED_IN_CHROME (1<<23)
|
|
|
|
#define CSS_PROPERTY_ENABLED_IN_UA_SHEETS_AND_CHROME \
|
|
|
|
(CSS_PROPERTY_ENABLED_IN_UA_SHEETS | CSS_PROPERTY_ENABLED_IN_CHROME)
|
2014-03-07 21:14:25 +04:00
|
|
|
|
2015-04-01 01:05:54 +03:00
|
|
|
// This property can be animated on the compositor.
|
2016-04-21 02:43:24 +03:00
|
|
|
#define CSS_PROPERTY_CAN_ANIMATE_ON_COMPOSITOR (1<<27)
|
2015-04-01 01:05:54 +03:00
|
|
|
|
2015-09-22 08:58:20 +03:00
|
|
|
// This property is an internal property that is not represented
|
|
|
|
// in the DOM. Properties with this flag must be defined in an #ifndef
|
|
|
|
// CSS_PROP_LIST_EXCLUDE_INTERNAL section of nsCSSPropList.h.
|
2016-04-21 02:43:24 +03:00
|
|
|
#define CSS_PROPERTY_INTERNAL (1<<28)
|
2015-09-22 08:58:20 +03:00
|
|
|
|
2009-09-11 14:46:36 +04:00
|
|
|
/**
|
|
|
|
* Types of animatable values.
|
|
|
|
*/
|
|
|
|
enum nsStyleAnimType {
|
2009-10-14 06:38:20 +04:00
|
|
|
// requires a custom implementation in
|
2014-06-24 10:29:54 +04:00
|
|
|
// StyleAnimationValue::ExtractComputedValue
|
2009-10-14 06:38:20 +04:00
|
|
|
eStyleAnimType_Custom,
|
|
|
|
|
2009-09-11 14:46:36 +04:00
|
|
|
// nsStyleCoord with animatable values
|
|
|
|
eStyleAnimType_Coord,
|
|
|
|
|
|
|
|
// same as Coord, except for one side of an nsStyleSides
|
|
|
|
// listed in the same order as the NS_STYLE_* constants
|
|
|
|
eStyleAnimType_Sides_Top,
|
|
|
|
eStyleAnimType_Sides_Right,
|
|
|
|
eStyleAnimType_Sides_Bottom,
|
|
|
|
eStyleAnimType_Sides_Left,
|
|
|
|
|
2009-10-29 06:22:27 +03:00
|
|
|
// similar, but for the *pair* of coord members of an nsStyleCorners
|
|
|
|
// for the relevant corner
|
|
|
|
eStyleAnimType_Corner_TopLeft,
|
|
|
|
eStyleAnimType_Corner_TopRight,
|
|
|
|
eStyleAnimType_Corner_BottomRight,
|
|
|
|
eStyleAnimType_Corner_BottomLeft,
|
|
|
|
|
2009-09-11 14:46:36 +04:00
|
|
|
// nscoord values
|
|
|
|
eStyleAnimType_nscoord,
|
|
|
|
|
2009-10-09 05:30:49 +04:00
|
|
|
// float values
|
|
|
|
eStyleAnimType_float,
|
|
|
|
|
2009-09-11 14:46:36 +04:00
|
|
|
// nscolor values
|
|
|
|
eStyleAnimType_Color,
|
|
|
|
|
2016-09-16 07:44:09 +03:00
|
|
|
// StyleComplexColor values
|
|
|
|
eStyleAnimType_ComplexColor,
|
|
|
|
|
2009-09-11 14:46:36 +04:00
|
|
|
// nsStyleSVGPaint values
|
|
|
|
eStyleAnimType_PaintServer,
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
// RefPtr<nsCSSShadowArray> values
|
2009-10-21 14:53:46 +04:00
|
|
|
eStyleAnimType_Shadow,
|
|
|
|
|
2016-08-16 08:29:21 +03:00
|
|
|
// discrete values
|
|
|
|
eStyleAnimType_Discrete,
|
|
|
|
|
2009-09-11 14:46:36 +04:00
|
|
|
// property not animatable
|
|
|
|
eStyleAnimType_None
|
2009-09-11 14:46:36 +04:00
|
|
|
};
|
|
|
|
|
2001-10-20 00:59:33 +04:00
|
|
|
class nsCSSProps {
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
2016-05-10 11:44:05 +03:00
|
|
|
typedef mozilla::CSSEnabledState EnabledState;
|
|
|
|
|
2016-07-28 10:40:09 +03:00
|
|
|
struct KTableEntry
|
|
|
|
{
|
|
|
|
// KTableEntry objects can be initialized either with an int16_t value
|
|
|
|
// or a value of an enumeration type that can fit within an int16_t.
|
|
|
|
|
2016-10-04 23:38:52 +03:00
|
|
|
constexpr KTableEntry(nsCSSKeyword aKeyword, int16_t aValue)
|
2016-07-28 10:40:09 +03:00
|
|
|
: mKeyword(aKeyword)
|
|
|
|
, mValue(aValue)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T,
|
|
|
|
typename = typename std::enable_if<std::is_enum<T>::value>::type>
|
2016-10-04 23:38:52 +03:00
|
|
|
constexpr KTableEntry(nsCSSKeyword aKeyword, T aValue)
|
2016-07-28 10:40:09 +03:00
|
|
|
: mKeyword(aKeyword)
|
|
|
|
, mValue(static_cast<int16_t>(aValue))
|
|
|
|
{
|
2016-09-07 05:20:16 +03:00
|
|
|
static_assert(mozilla::EnumTypeFitsWithin<T, int16_t>::value,
|
2016-07-28 10:40:09 +03:00
|
|
|
"aValue must be an enum that fits within mValue");
|
|
|
|
}
|
|
|
|
|
2018-01-15 19:14:55 +03:00
|
|
|
bool IsSentinel() const
|
|
|
|
{
|
|
|
|
return mKeyword == eCSSKeyword_UNKNOWN && mValue == -1;
|
|
|
|
}
|
|
|
|
|
2015-11-20 05:08:57 +03:00
|
|
|
nsCSSKeyword mKeyword;
|
|
|
|
int16_t mValue;
|
|
|
|
};
|
2014-02-05 15:10:44 +04:00
|
|
|
|
1999-07-18 04:32:32 +04:00
|
|
|
static void AddRefTable(void);
|
|
|
|
static void ReleaseTable(void);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
Bug 773296 - Part 2: Parse CSS variable declarations and store them on Declaration objects. p=ebassi,heycam r=dbaron
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.
2013-12-12 06:09:40 +04:00
|
|
|
// Looks up the property with name aProperty and returns its corresponding
|
2016-08-17 04:37:48 +03:00
|
|
|
// nsCSSPropertyID value. If aProperty is the name of a custom property,
|
Bug 773296 - Part 2: Parse CSS variable declarations and store them on Declaration objects. p=ebassi,heycam r=dbaron
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.
2013-12-12 06:09:40 +04:00
|
|
|
// then eCSSPropertyExtra_variable will be returned.
|
2016-08-17 04:37:48 +03:00
|
|
|
static nsCSSPropertyID LookupProperty(const nsAString& aProperty,
|
2012-07-14 03:59:05 +04:00
|
|
|
EnabledState aEnabled);
|
2015-10-22 11:22:37 +03:00
|
|
|
// As above, but looked up using a property's IDL name.
|
|
|
|
// eCSSPropertyExtra_variable won't be returned from these methods.
|
2016-08-17 04:37:48 +03:00
|
|
|
static nsCSSPropertyID LookupPropertyByIDLName(
|
2015-10-22 11:22:37 +03:00
|
|
|
const nsAString& aPropertyIDLName,
|
|
|
|
EnabledState aEnabled);
|
2016-08-17 04:37:48 +03:00
|
|
|
static nsCSSPropertyID LookupPropertyByIDLName(
|
2015-10-22 11:22:37 +03:00
|
|
|
const nsACString& aPropertyIDLName,
|
|
|
|
EnabledState aEnabled);
|
|
|
|
|
Bug 773296 - Part 2: Parse CSS variable declarations and store them on Declaration objects. p=ebassi,heycam r=dbaron
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.
2013-12-12 06:09:40 +04:00
|
|
|
// Returns whether aProperty is a custom property name, i.e. begins with
|
2014-04-02 07:32:16 +04:00
|
|
|
// "--". This assumes that the CSS Variables pref has been enabled.
|
Bug 773296 - Part 2: Parse CSS variable declarations and store them on Declaration objects. p=ebassi,heycam r=dbaron
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.
2013-12-12 06:09:40 +04:00
|
|
|
static bool IsCustomPropertyName(const nsAString& aProperty);
|
1998-07-18 03:00:54 +04:00
|
|
|
|
2016-08-17 04:37:48 +03:00
|
|
|
static inline bool IsShorthand(nsCSSPropertyID aProperty) {
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(0 <= aProperty && aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
2003-06-08 02:14:42 +04:00
|
|
|
return (aProperty >= eCSSProperty_COUNT_no_shorthands);
|
|
|
|
}
|
|
|
|
|
2008-08-08 03:15:40 +04:00
|
|
|
// Same but for @font-face descriptors
|
|
|
|
static nsCSSFontDesc LookupFontDesc(const nsAString& aProperty);
|
2014-06-12 05:10:00 +04:00
|
|
|
|
1999-07-18 04:32:32 +04:00
|
|
|
// Given a property enum, get the string value
|
2017-06-20 12:19:05 +03:00
|
|
|
static const nsCString& GetStringValue(nsCSSPropertyID aProperty);
|
|
|
|
static const nsCString& GetStringValue(nsCSSFontDesc aFontDesc);
|
|
|
|
static const nsCString& GetStringValue(nsCSSCounterDesc aCounterDesc);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-07-18 04:32:32 +04:00
|
|
|
// Given a CSS Property and a Property Enum Value
|
2013-05-20 06:59:20 +04:00
|
|
|
// Return back a const nsString& representation of the
|
1999-07-18 04:32:32 +04:00
|
|
|
// value. Return back nullstr if no value is found
|
2017-06-20 12:19:05 +03:00
|
|
|
static const nsCString& LookupPropertyValue(nsCSSPropertyID aProperty, int32_t aValue);
|
1998-09-30 03:50:56 +04:00
|
|
|
|
2000-03-31 11:08:36 +04:00
|
|
|
// Get a color name for a predefined color value like buttonhighlight or activeborder
|
|
|
|
// Sets the aStr param to the name of the propertyID
|
2012-08-22 19:56:38 +04:00
|
|
|
static bool GetColorName(int32_t aPropID, nsCString &aStr);
|
2000-03-31 11:08:36 +04:00
|
|
|
|
2012-10-03 09:04:50 +04:00
|
|
|
// Returns the index of |aKeyword| in |aTable|, if it exists there;
|
|
|
|
// otherwise, returns -1.
|
|
|
|
// NOTE: Generally, clients should call FindKeyword() instead of this method.
|
2014-02-05 15:10:44 +04:00
|
|
|
static int32_t FindIndexOfKeyword(nsCSSKeyword aKeyword,
|
2015-11-20 05:09:07 +03:00
|
|
|
const KTableEntry aTable[]);
|
2012-10-03 09:04:50 +04:00
|
|
|
|
2004-10-01 21:15:15 +04:00
|
|
|
// Find |aKeyword| in |aTable|, if found set |aValue| to its corresponding value.
|
2011-10-17 18:59:28 +04:00
|
|
|
// If not found, return false and do not set |aValue|.
|
2015-11-20 05:09:07 +03:00
|
|
|
static bool FindKeyword(nsCSSKeyword aKeyword, const KTableEntry aTable[],
|
2014-02-05 15:10:44 +04:00
|
|
|
int32_t& aValue);
|
2004-10-01 21:15:15 +04:00
|
|
|
// Return the first keyword in |aTable| that has the corresponding value |aValue|.
|
|
|
|
// Return |eCSSKeyword_UNKNOWN| if not found.
|
2016-07-29 11:18:48 +03:00
|
|
|
static nsCSSKeyword ValueToKeywordEnum(int32_t aValue,
|
2015-11-20 05:09:07 +03:00
|
|
|
const KTableEntry aTable[]);
|
2016-07-29 11:18:48 +03:00
|
|
|
template<typename T,
|
|
|
|
typename = typename std::enable_if<std::is_enum<T>::value>::type>
|
|
|
|
static nsCSSKeyword ValueToKeywordEnum(T aValue,
|
|
|
|
const KTableEntry aTable[])
|
|
|
|
{
|
2016-09-07 05:20:16 +03:00
|
|
|
static_assert(mozilla::EnumTypeFitsWithin<T, int16_t>::value,
|
2016-07-29 11:18:48 +03:00
|
|
|
"aValue must be an enum that fits within KTableEntry::mValue");
|
|
|
|
return ValueToKeywordEnum(static_cast<int16_t>(aValue), aTable);
|
|
|
|
}
|
2004-10-01 21:15:15 +04:00
|
|
|
// Ditto but as a string, return "" when not found.
|
2017-06-20 12:19:05 +03:00
|
|
|
static const nsCString& ValueToKeyword(int32_t aValue,
|
|
|
|
const KTableEntry aTable[]);
|
2016-07-29 11:18:48 +03:00
|
|
|
template<typename T,
|
|
|
|
typename = typename std::enable_if<std::is_enum<T>::value>::type>
|
2017-06-20 12:19:05 +03:00
|
|
|
static const nsCString& ValueToKeyword(T aValue, const KTableEntry aTable[])
|
2016-07-29 11:18:48 +03:00
|
|
|
{
|
2016-09-07 05:20:16 +03:00
|
|
|
static_assert(mozilla::EnumTypeFitsWithin<T, int16_t>::value,
|
2016-07-29 11:18:48 +03:00
|
|
|
"aValue must be an enum that fits within KTableEntry::mValue");
|
|
|
|
return ValueToKeyword(static_cast<int16_t>(aValue), aTable);
|
|
|
|
}
|
2001-03-03 03:44:19 +03:00
|
|
|
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry* const kKeywordTableTable[eCSSProperty_COUNT_no_shorthands];
|
2009-09-11 14:46:36 +04:00
|
|
|
static const nsStyleAnimType kAnimTypeTable[eCSSProperty_COUNT_no_shorthands];
|
2008-12-23 17:06:57 +03:00
|
|
|
|
2008-10-27 20:55:51 +03:00
|
|
|
private:
|
2012-08-22 19:56:38 +04:00
|
|
|
static const uint32_t kFlagsTable[eCSSProperty_COUNT];
|
2003-06-08 02:14:42 +04:00
|
|
|
|
2008-12-23 17:06:57 +03:00
|
|
|
public:
|
2016-08-17 04:37:48 +03:00
|
|
|
static inline bool PropHasFlags(nsCSSPropertyID aProperty, uint32_t aFlags)
|
2008-12-23 17:06:57 +03:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(0 <= aProperty && aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
2013-05-14 22:20:58 +04:00
|
|
|
MOZ_ASSERT(!(aFlags & CSS_PROPERTY_PARSE_PROPERTY_MASK),
|
|
|
|
"The CSS_PROPERTY_PARSE_* values are not bitflags; don't pass "
|
|
|
|
"them to PropHasFlags. You probably want PropertyParseType "
|
|
|
|
"instead.");
|
2008-12-23 17:06:57 +03:00
|
|
|
return (nsCSSProps::kFlagsTable[aProperty] & aFlags) == aFlags;
|
|
|
|
}
|
|
|
|
|
2016-08-17 04:37:48 +03:00
|
|
|
static inline uint32_t PropertyParseType(nsCSSPropertyID aProperty)
|
2011-03-05 20:58:33 +03:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(0 <= aProperty && aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
2011-03-05 20:58:33 +03:00
|
|
|
return nsCSSProps::kFlagsTable[aProperty] &
|
|
|
|
CSS_PROPERTY_PARSE_PROPERTY_MASK;
|
|
|
|
}
|
|
|
|
|
2011-03-05 20:58:33 +03:00
|
|
|
private:
|
2012-08-22 19:56:38 +04:00
|
|
|
static const uint32_t kParserVariantTable[eCSSProperty_COUNT_no_shorthands];
|
2011-03-05 20:58:33 +03:00
|
|
|
|
|
|
|
public:
|
2016-08-17 04:37:48 +03:00
|
|
|
static inline uint32_t ParserVariant(nsCSSPropertyID aProperty) {
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(0 <= aProperty && aProperty < eCSSProperty_COUNT_no_shorthands,
|
|
|
|
"out of range");
|
2011-03-05 20:58:33 +03:00
|
|
|
return nsCSSProps::kParserVariantTable[aProperty];
|
|
|
|
}
|
|
|
|
|
2008-12-23 17:06:57 +03:00
|
|
|
private:
|
2003-06-08 02:14:42 +04:00
|
|
|
// A table for shorthand properties. The appropriate index is the
|
|
|
|
// property ID minus eCSSProperty_COUNT_no_shorthands.
|
2016-08-17 04:37:48 +03:00
|
|
|
static const nsCSSPropertyID *const
|
2003-06-08 02:14:42 +04:00
|
|
|
kSubpropertyTable[eCSSProperty_COUNT - eCSSProperty_COUNT_no_shorthands];
|
|
|
|
|
|
|
|
public:
|
|
|
|
static inline
|
2016-08-17 04:37:48 +03:00
|
|
|
const nsCSSPropertyID * SubpropertyEntryFor(nsCSSPropertyID aProperty) {
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(eCSSProperty_COUNT_no_shorthands <= aProperty &&
|
|
|
|
aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
2003-06-08 02:14:42 +04:00
|
|
|
return nsCSSProps::kSubpropertyTable[aProperty -
|
|
|
|
eCSSProperty_COUNT_no_shorthands];
|
|
|
|
}
|
|
|
|
|
2012-07-14 03:59:05 +04:00
|
|
|
private:
|
2013-03-13 20:58:39 +04:00
|
|
|
static bool gPropertyEnabled[eCSSProperty_COUNT_with_aliases];
|
2012-07-14 03:59:05 +04:00
|
|
|
|
2015-09-22 08:58:20 +03:00
|
|
|
private:
|
|
|
|
// Defined in the generated nsCSSPropsGenerated.inc.
|
|
|
|
static const char* const kIDLNameTable[eCSSProperty_COUNT];
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Returns the IDL name of the specified property, which must be a
|
|
|
|
* longhand, logical or shorthand property. The IDL name is the property
|
|
|
|
* name with any hyphen-lowercase character pairs replaced by an
|
|
|
|
* uppercase character:
|
|
|
|
* https://drafts.csswg.org/cssom/#css-property-to-idl-attribute
|
|
|
|
*
|
|
|
|
* As a special case, the string "cssFloat" is returned for the float
|
|
|
|
* property. nullptr is returned for internal properties.
|
|
|
|
*/
|
2016-08-17 04:37:48 +03:00
|
|
|
static const char* PropertyIDLName(nsCSSPropertyID aProperty)
|
2015-09-22 08:58:20 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(0 <= aProperty && aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
|
|
|
return kIDLNameTable[aProperty];
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:37:17 +03:00
|
|
|
private:
|
|
|
|
static const int32_t kIDLNameSortPositionTable[eCSSProperty_COUNT];
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Returns the position of the specified property in a list of all
|
|
|
|
* properties sorted by their IDL name.
|
|
|
|
*/
|
2016-08-17 04:37:48 +03:00
|
|
|
static int32_t PropertyIDLNameSortPosition(nsCSSPropertyID aProperty)
|
2015-09-23 01:37:17 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(0 <= aProperty && aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
|
|
|
return kIDLNameSortPositionTable[aProperty];
|
|
|
|
}
|
|
|
|
|
2016-08-17 04:37:48 +03:00
|
|
|
static bool IsEnabled(nsCSSPropertyID aProperty) {
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(0 <= aProperty && aProperty < eCSSProperty_COUNT_with_aliases,
|
|
|
|
"out of range");
|
2017-11-30 01:14:32 +03:00
|
|
|
// In the child process, assert that we're not trying to parse stylesheets
|
|
|
|
// before we've gotten all our prefs.
|
|
|
|
MOZ_ASSERT_IF(!XRE_IsParentProcess(),
|
2018-03-08 07:47:24 +03:00
|
|
|
mozilla::Preferences::ArePrefsInitedInContentProcess());
|
2012-07-14 03:59:05 +04:00
|
|
|
return gPropertyEnabled[aProperty];
|
|
|
|
}
|
|
|
|
|
2015-06-03 22:21:24 +03:00
|
|
|
// A table for the use counter associated with each CSS property. If a
|
|
|
|
// property does not have a use counter defined in UseCounters.conf, then
|
|
|
|
// its associated entry is |eUseCounter_UNKNOWN|.
|
|
|
|
static const mozilla::UseCounter gPropertyUseCounter[eCSSProperty_COUNT_no_shorthands];
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2016-08-17 04:37:48 +03:00
|
|
|
static mozilla::UseCounter UseCounterFor(nsCSSPropertyID aProperty) {
|
2015-06-03 22:21:24 +03:00
|
|
|
MOZ_ASSERT(0 <= aProperty && aProperty < eCSSProperty_COUNT_no_shorthands,
|
|
|
|
"out of range");
|
|
|
|
return gPropertyUseCounter[aProperty];
|
|
|
|
}
|
|
|
|
|
2016-08-17 04:37:48 +03:00
|
|
|
static bool IsEnabled(nsCSSPropertyID aProperty, EnabledState aEnabled)
|
2014-03-07 21:14:23 +04:00
|
|
|
{
|
|
|
|
if (IsEnabled(aProperty)) {
|
|
|
|
return true;
|
|
|
|
}
|
2016-05-10 11:44:05 +03:00
|
|
|
if (aEnabled == EnabledState::eIgnoreEnabledState) {
|
2014-03-07 21:14:23 +04:00
|
|
|
return true;
|
|
|
|
}
|
2016-05-10 11:44:05 +03:00
|
|
|
if ((aEnabled & EnabledState::eInUASheets) &&
|
2015-10-03 04:12:09 +03:00
|
|
|
PropHasFlags(aProperty, CSS_PROPERTY_ENABLED_IN_UA_SHEETS))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2016-05-10 11:44:05 +03:00
|
|
|
if ((aEnabled & EnabledState::eInChrome) &&
|
2015-10-03 04:12:09 +03:00
|
|
|
PropHasFlags(aProperty, CSS_PROPERTY_ENABLED_IN_CHROME))
|
2014-03-07 21:14:23 +04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2014-02-22 05:18:23 +04:00
|
|
|
}
|
|
|
|
|
2008-12-23 17:06:57 +03:00
|
|
|
public:
|
2008-10-27 20:55:51 +03:00
|
|
|
|
2018-01-31 18:50:27 +03:00
|
|
|
// Return an array of possible list style types, and the length of
|
|
|
|
// the array.
|
|
|
|
static const char* const* GetListStyleTypes(int32_t *aLength);
|
|
|
|
|
2016-08-17 04:37:48 +03:00
|
|
|
// Storing the enabledstate_ value in an nsCSSPropertyID variable is a small hack
|
2015-01-17 07:55:07 +03:00
|
|
|
// to avoid needing a separate variable declaration for its real type
|
2016-05-10 11:44:05 +03:00
|
|
|
// (CSSEnabledState), which would then require using a block and
|
2015-01-17 07:55:07 +03:00
|
|
|
// therefore a pair of macros by consumers for the start and end of the loop.
|
2016-05-12 03:28:56 +03:00
|
|
|
#define CSSPROPS_FOR_SHORTHAND_SUBPROPERTIES(it_, prop_, enabledstate_) \
|
2016-08-17 04:37:48 +03:00
|
|
|
for (const nsCSSPropertyID *it_ = nsCSSProps::SubpropertyEntryFor(prop_), \
|
|
|
|
es_ = (nsCSSPropertyID)((enabledstate_) | \
|
2016-05-12 03:28:56 +03:00
|
|
|
CSSEnabledState(0)); \
|
|
|
|
*it_ != eCSSProperty_UNKNOWN; ++it_) \
|
2016-05-10 11:44:05 +03:00
|
|
|
if (nsCSSProps::IsEnabled(*it_, (mozilla::CSSEnabledState) es_))
|
1998-10-27 02:16:27 +03:00
|
|
|
|
|
|
|
// Keyword/Enum value tables
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kAnimationDirectionKTable[];
|
|
|
|
static const KTableEntry kAnimationFillModeKTable[];
|
|
|
|
static const KTableEntry kAnimationIterationCountKTable[];
|
|
|
|
static const KTableEntry kAnimationPlayStateKTable[];
|
|
|
|
static const KTableEntry kAnimationTimingFunctionKTable[];
|
|
|
|
static const KTableEntry kAppearanceKTable[];
|
|
|
|
static const KTableEntry kAzimuthKTable[];
|
|
|
|
static const KTableEntry kBackfaceVisibilityKTable[];
|
|
|
|
static const KTableEntry kTransformStyleKTable[];
|
2016-01-28 08:27:00 +03:00
|
|
|
static const KTableEntry kImageLayerAttachmentKTable[];
|
2016-10-19 10:48:47 +03:00
|
|
|
static const KTableEntry kBackgroundOriginKTable[];
|
|
|
|
static const KTableEntry kMaskOriginKTable[];
|
2016-01-28 08:27:00 +03:00
|
|
|
static const KTableEntry kImageLayerPositionKTable[];
|
|
|
|
static const KTableEntry kImageLayerRepeatKTable[];
|
|
|
|
static const KTableEntry kImageLayerRepeatPartKTable[];
|
|
|
|
static const KTableEntry kImageLayerSizeKTable[];
|
2016-01-28 08:28:00 +03:00
|
|
|
static const KTableEntry kImageLayerCompositeKTable[];
|
|
|
|
static const KTableEntry kImageLayerModeKTable[];
|
2016-04-14 11:28:06 +03:00
|
|
|
// Not const because we modify its entries when the pref
|
|
|
|
// "layout.css.background-clip.text" changes:
|
|
|
|
static KTableEntry kBackgroundClipKTable[];
|
2016-10-19 10:48:47 +03:00
|
|
|
static const KTableEntry kMaskClipKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kBlendModeKTable[];
|
|
|
|
static const KTableEntry kBorderCollapseKTable[];
|
|
|
|
static const KTableEntry kBorderImageRepeatKTable[];
|
|
|
|
static const KTableEntry kBorderImageSliceKTable[];
|
|
|
|
static const KTableEntry kBorderStyleKTable[];
|
|
|
|
static const KTableEntry kBorderWidthKTable[];
|
|
|
|
static const KTableEntry kBoxAlignKTable[];
|
|
|
|
static const KTableEntry kBoxDecorationBreakKTable[];
|
|
|
|
static const KTableEntry kBoxDirectionKTable[];
|
|
|
|
static const KTableEntry kBoxOrientKTable[];
|
|
|
|
static const KTableEntry kBoxPackKTable[];
|
2016-07-28 08:45:43 +03:00
|
|
|
static const KTableEntry kClipPathGeometryBoxKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kCounterRangeKTable[];
|
|
|
|
static const KTableEntry kCounterSpeakAsKTable[];
|
|
|
|
static const KTableEntry kCounterSymbolsSystemKTable[];
|
|
|
|
static const KTableEntry kCounterSystemKTable[];
|
|
|
|
static const KTableEntry kDominantBaselineKTable[];
|
|
|
|
static const KTableEntry kShapeRadiusKTable[];
|
|
|
|
static const KTableEntry kFillRuleKTable[];
|
|
|
|
static const KTableEntry kFilterFunctionKTable[];
|
|
|
|
static const KTableEntry kImageRenderingKTable[];
|
2016-07-22 10:40:01 +03:00
|
|
|
static const KTableEntry kShapeOutsideShapeBoxKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kShapeRenderingKTable[];
|
|
|
|
static const KTableEntry kStrokeLinecapKTable[];
|
|
|
|
static const KTableEntry kStrokeLinejoinKTable[];
|
|
|
|
static const KTableEntry kStrokeContextValueKTable[];
|
|
|
|
static const KTableEntry kVectorEffectKTable[];
|
|
|
|
static const KTableEntry kTextAnchorKTable[];
|
|
|
|
static const KTableEntry kTextRenderingKTable[];
|
2016-03-08 20:25:24 +03:00
|
|
|
static const KTableEntry kColorAdjustKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kColorInterpolationKTable[];
|
|
|
|
static const KTableEntry kColumnFillKTable[];
|
2017-02-14 03:57:33 +03:00
|
|
|
static const KTableEntry kColumnSpanKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kBoxPropSourceKTable[];
|
|
|
|
static const KTableEntry kBoxShadowTypeKTable[];
|
|
|
|
static const KTableEntry kBoxSizingKTable[];
|
|
|
|
static const KTableEntry kCaptionSideKTable[];
|
2017-04-21 13:58:17 +03:00
|
|
|
static const KTableEntry kClearKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kColorKTable[];
|
|
|
|
static const KTableEntry kContentKTable[];
|
|
|
|
static const KTableEntry kControlCharacterVisibilityKTable[];
|
|
|
|
static const KTableEntry kCursorKTable[];
|
|
|
|
static const KTableEntry kDirectionKTable[];
|
2017-07-06 15:00:35 +03:00
|
|
|
// Not const because we modify its entries when various
|
2014-11-20 21:24:09 +03:00
|
|
|
// "layout.css.*.enabled" prefs changes:
|
2015-11-20 05:09:07 +03:00
|
|
|
static KTableEntry kDisplayKTable[];
|
|
|
|
static const KTableEntry kElevationKTable[];
|
|
|
|
static const KTableEntry kEmptyCellsKTable[];
|
2016-02-08 19:35:01 +03:00
|
|
|
// -- tables for parsing the {align,justify}-{content,items,self} properties --
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kAlignAllKeywords[];
|
|
|
|
static const KTableEntry kAlignOverflowPosition[]; // <overflow-position>
|
|
|
|
static const KTableEntry kAlignSelfPosition[]; // <self-position>
|
|
|
|
static const KTableEntry kAlignLegacy[]; // 'legacy'
|
|
|
|
static const KTableEntry kAlignLegacyPosition[]; // 'left/right/center'
|
2016-11-05 04:57:07 +03:00
|
|
|
static const KTableEntry kAlignAutoNormalStretchBaseline[]; // 'auto/normal/stretch/baseline'
|
|
|
|
static const KTableEntry kAlignNormalStretchBaseline[]; // 'normal/stretch/baseline'
|
|
|
|
static const KTableEntry kAlignNormalBaseline[]; // 'normal/baseline'
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kAlignContentDistribution[]; // <content-distribution>
|
|
|
|
static const KTableEntry kAlignContentPosition[]; // <content-position>
|
2016-02-08 19:35:01 +03:00
|
|
|
// -- tables for auto-completion of the {align,justify}-{content,items,self} properties --
|
|
|
|
static const KTableEntry kAutoCompletionAlignJustifySelf[];
|
|
|
|
static const KTableEntry kAutoCompletionAlignItems[];
|
|
|
|
static const KTableEntry kAutoCompletionAlignJustifyContent[];
|
2015-11-03 17:18:05 +03:00
|
|
|
// ------------------------------------------------------------------
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kFlexDirectionKTable[];
|
|
|
|
static const KTableEntry kFlexWrapKTable[];
|
2017-04-21 13:58:17 +03:00
|
|
|
static const KTableEntry kFloatKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kFloatEdgeKTable[];
|
2016-01-07 08:02:58 +03:00
|
|
|
static const KTableEntry kFontDisplayKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kFontKTable[];
|
|
|
|
static const KTableEntry kFontKerningKTable[];
|
2018-03-03 20:53:11 +03:00
|
|
|
static const KTableEntry kFontOpticalSizingKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kFontSizeKTable[];
|
|
|
|
static const KTableEntry kFontSmoothingKTable[];
|
|
|
|
static const KTableEntry kFontStretchKTable[];
|
|
|
|
static const KTableEntry kFontStyleKTable[];
|
|
|
|
static const KTableEntry kFontSynthesisKTable[];
|
|
|
|
static const KTableEntry kFontVariantKTable[];
|
|
|
|
static const KTableEntry kFontVariantAlternatesKTable[];
|
|
|
|
static const KTableEntry kFontVariantAlternatesFuncsKTable[];
|
|
|
|
static const KTableEntry kFontVariantCapsKTable[];
|
|
|
|
static const KTableEntry kFontVariantEastAsianKTable[];
|
|
|
|
static const KTableEntry kFontVariantLigaturesKTable[];
|
|
|
|
static const KTableEntry kFontVariantNumericKTable[];
|
|
|
|
static const KTableEntry kFontVariantPositionKTable[];
|
|
|
|
static const KTableEntry kFontWeightKTable[];
|
|
|
|
static const KTableEntry kGridAutoFlowKTable[];
|
|
|
|
static const KTableEntry kGridTrackBreadthKTable[];
|
|
|
|
static const KTableEntry kHyphensKTable[];
|
|
|
|
static const KTableEntry kImageOrientationKTable[];
|
|
|
|
static const KTableEntry kImageOrientationFlipKTable[];
|
|
|
|
static const KTableEntry kIsolationKTable[];
|
|
|
|
static const KTableEntry kIMEModeKTable[];
|
|
|
|
static const KTableEntry kLineHeightKTable[];
|
|
|
|
static const KTableEntry kListStylePositionKTable[];
|
|
|
|
static const KTableEntry kMaskTypeKTable[];
|
|
|
|
static const KTableEntry kMathVariantKTable[];
|
|
|
|
static const KTableEntry kMathDisplayKTable[];
|
|
|
|
static const KTableEntry kContainKTable[];
|
|
|
|
static const KTableEntry kContextOpacityKTable[];
|
|
|
|
static const KTableEntry kContextPatternKTable[];
|
|
|
|
static const KTableEntry kObjectFitKTable[];
|
|
|
|
static const KTableEntry kOrientKTable[];
|
|
|
|
static const KTableEntry kOutlineStyleKTable[];
|
|
|
|
static const KTableEntry kOverflowKTable[];
|
|
|
|
static const KTableEntry kOverflowSubKTable[];
|
|
|
|
static const KTableEntry kOverflowClipBoxKTable[];
|
2016-05-24 03:27:21 +03:00
|
|
|
static const KTableEntry kOverflowWrapKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kPageBreakKTable[];
|
|
|
|
static const KTableEntry kPageBreakInsideKTable[];
|
|
|
|
static const KTableEntry kPageMarksKTable[];
|
|
|
|
static const KTableEntry kPageSizeKTable[];
|
|
|
|
static const KTableEntry kPitchKTable[];
|
|
|
|
static const KTableEntry kPointerEventsKTable[];
|
2016-03-21 09:06:53 +03:00
|
|
|
static const KTableEntry kPositionKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kRadialGradientShapeKTable[];
|
|
|
|
static const KTableEntry kRadialGradientSizeKTable[];
|
|
|
|
static const KTableEntry kRadialGradientLegacySizeKTable[];
|
|
|
|
static const KTableEntry kResizeKTable[];
|
|
|
|
static const KTableEntry kRubyAlignKTable[];
|
|
|
|
static const KTableEntry kRubyPositionKTable[];
|
|
|
|
static const KTableEntry kScrollBehaviorKTable[];
|
2017-11-23 03:01:11 +03:00
|
|
|
static const KTableEntry kOverscrollBehaviorKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kScrollSnapTypeKTable[];
|
|
|
|
static const KTableEntry kSpeakKTable[];
|
|
|
|
static const KTableEntry kSpeakHeaderKTable[];
|
|
|
|
static const KTableEntry kSpeakNumeralKTable[];
|
|
|
|
static const KTableEntry kSpeakPunctuationKTable[];
|
|
|
|
static const KTableEntry kSpeechRateKTable[];
|
|
|
|
static const KTableEntry kStackSizingKTable[];
|
|
|
|
static const KTableEntry kTableLayoutKTable[];
|
2013-10-28 00:56:32 +04:00
|
|
|
// Not const because we modify its entries when the pref
|
2016-02-24 21:40:30 +03:00
|
|
|
// "layout.css.text-align-unsafe-value.enabled" changes:
|
2015-11-20 05:09:07 +03:00
|
|
|
static KTableEntry kTextAlignKTable[];
|
|
|
|
static KTableEntry kTextAlignLastKTable[];
|
|
|
|
static const KTableEntry kTextCombineUprightKTable[];
|
|
|
|
static const KTableEntry kTextDecorationLineKTable[];
|
|
|
|
static const KTableEntry kTextDecorationStyleKTable[];
|
2015-11-28 03:56:33 +03:00
|
|
|
static const KTableEntry kTextEmphasisPositionKTable[];
|
|
|
|
static const KTableEntry kTextEmphasisStyleFillKTable[];
|
|
|
|
static const KTableEntry kTextEmphasisStyleShapeKTable[];
|
2017-03-01 15:58:25 +03:00
|
|
|
static const KTableEntry kTextJustifyKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kTextOrientationKTable[];
|
|
|
|
static const KTableEntry kTextOverflowKTable[];
|
2017-02-17 00:27:16 +03:00
|
|
|
static const KTableEntry kTextSizeAdjustKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kTextTransformKTable[];
|
|
|
|
static const KTableEntry kTouchActionKTable[];
|
|
|
|
static const KTableEntry kTopLayerKTable[];
|
|
|
|
static const KTableEntry kTransformBoxKTable[];
|
|
|
|
static const KTableEntry kTransitionTimingFunctionKTable[];
|
|
|
|
static const KTableEntry kUnicodeBidiKTable[];
|
|
|
|
static const KTableEntry kUserFocusKTable[];
|
|
|
|
static const KTableEntry kUserInputKTable[];
|
|
|
|
static const KTableEntry kUserModifyKTable[];
|
|
|
|
static const KTableEntry kUserSelectKTable[];
|
|
|
|
static const KTableEntry kVerticalAlignKTable[];
|
|
|
|
static const KTableEntry kVisibilityKTable[];
|
|
|
|
static const KTableEntry kVolumeKTable[];
|
|
|
|
static const KTableEntry kWhitespaceKTable[];
|
|
|
|
static const KTableEntry kWidthKTable[]; // also min-width, max-width
|
2018-03-31 02:50:04 +03:00
|
|
|
static const KTableEntry kFlexBasisKTable[];
|
2015-11-20 05:09:07 +03:00
|
|
|
static const KTableEntry kWindowDraggingKTable[];
|
|
|
|
static const KTableEntry kWindowShadowKTable[];
|
|
|
|
static const KTableEntry kWordBreakKTable[];
|
|
|
|
static const KTableEntry kWritingModeKTable[];
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsCSSProps_h___ */
|