2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* methods for dealing with CSS properties and tables of the keyword
|
|
|
|
* values they accept
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsCSSProps_h___
|
|
|
|
#define nsCSSProps_h___
|
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsCSSProperty.h"
|
2013-09-15 18:06:52 -07:00
|
|
|
#include "nsStyleStructFwd.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCSSKeywords.h"
|
|
|
|
|
2013-07-15 14:28:49 -07:00
|
|
|
// Flags for ParseVariant method
|
|
|
|
#define VARIANT_KEYWORD 0x000001 // K
|
|
|
|
#define VARIANT_LENGTH 0x000002 // L
|
|
|
|
#define VARIANT_PERCENT 0x000004 // P
|
2013-09-15 16:35:48 -07:00
|
|
|
#define VARIANT_COLOR 0x000008 // C eCSSUnit_*Color, eCSSUnit_Ident (e.g. "red")
|
2013-07-15 14:28:49 -07: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 11:49:17 -07:00
|
|
|
#define VARIANT_INHERIT 0x020000 // H eCSSUnit_Initial, eCSSUnit_Inherit, eCSSUnit_Unset
|
2013-07-15 14:28:49 -07: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
|
|
|
|
#define VARIANT_POSITIVE_DIMENSION 0x10000000 // Only lengths greater than 0.0
|
|
|
|
#define VARIANT_NONNEGATIVE_DIMENSION 0x20000000 // Only lengths greater than or equal to 0.0
|
2013-05-15 19:35:15 -07:00
|
|
|
// Keyword used iff gfx.font_rendering.opentype_svg.enabled is true:
|
|
|
|
#define VARIANT_OPENTYPE_SVG_KEYWORD 0x40000000
|
2013-07-15 14:28:49 -07: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)
|
2013-07-22 15:08:33 -07:00
|
|
|
#define VARIANT_LCALC (VARIANT_LENGTH | VARIANT_CALC)
|
|
|
|
#define VARIANT_LPCALC (VARIANT_LCALC | VARIANT_PERCENT)
|
|
|
|
#define VARIANT_LNCALC (VARIANT_LCALC | VARIANT_NUMBER)
|
2013-07-15 14:28:49 -07:00
|
|
|
#define VARIANT_LPNCALC (VARIANT_LNCALC | VARIANT_PERCENT)
|
|
|
|
#define VARIANT_IMAGE (VARIANT_URL | VARIANT_NONE | VARIANT_GRADIENT | \
|
|
|
|
VARIANT_IMAGE_RECT | VARIANT_ELEMENT)
|
|
|
|
|
2008-10-07 15:10:19 -07:00
|
|
|
// Flags for the kFlagsTable bitfield (flags_ in nsCSSPropList.h)
|
|
|
|
|
|
|
|
// A property that is a *-ltr-source or *-rtl-source property for one of
|
|
|
|
// the directional pseudo-shorthand properties.
|
2008-12-12 10:59:03 -08:00
|
|
|
#define CSS_PROPERTY_DIRECTIONAL_SOURCE (1<<0)
|
2009-11-14 19:16:59 -08:00
|
|
|
|
2008-12-12 10:59:03 -08:00
|
|
|
#define CSS_PROPERTY_VALUE_LIST_USES_COMMAS (1<<1) /* otherwise spaces */
|
2009-11-14 19:16:59 -08:00
|
|
|
|
2008-12-12 10:59:03 -08:00
|
|
|
#define CSS_PROPERTY_APPLIES_TO_FIRST_LETTER (1<<2)
|
|
|
|
#define CSS_PROPERTY_APPLIES_TO_FIRST_LINE (1<<3)
|
|
|
|
#define CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE \
|
|
|
|
(CSS_PROPERTY_APPLIES_TO_FIRST_LETTER | CSS_PROPERTY_APPLIES_TO_FIRST_LINE)
|
2009-11-14 19:16:59 -08:00
|
|
|
|
2009-07-15 17:24:24 -07:00
|
|
|
// Note that 'background-color' is ignored differently from the other
|
|
|
|
// properties that have this set, but that's just special-cased.
|
|
|
|
#define CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED (1<<4)
|
2008-10-07 15:10:19 -07:00
|
|
|
|
2009-11-14 19:16:59 -08:00
|
|
|
// A property that needs to have image loads started when a URL value
|
2010-08-19 12:33:44 -07:00
|
|
|
// for the property is used for an element. This is supported only
|
|
|
|
// for a few possible value formats: image directly in the value; list
|
|
|
|
// of images; and with CSS_PROPERTY_IMAGE_IS_IN_ARRAY_0, image in slot
|
|
|
|
// 0 of an array, or list of such arrays.
|
2009-11-14 19:16:59 -08:00
|
|
|
#define CSS_PROPERTY_START_IMAGE_LOADS (1<<5)
|
|
|
|
|
|
|
|
// Should be set only for properties with START_IMAGE_LOADS. Indicates
|
|
|
|
// that the property has an array value with a URL/image value at index
|
|
|
|
// 0 in the array, rather than the URL/image being in the value or value
|
|
|
|
// list.
|
|
|
|
#define CSS_PROPERTY_IMAGE_IS_IN_ARRAY_0 (1<<6)
|
|
|
|
|
2009-12-23 11:10:31 -08:00
|
|
|
// This is a property for which the computed value should generally be
|
|
|
|
// reported as the computed value of a property of a different name. In
|
|
|
|
// particular, the directional box properties (margin-left-value, etc.)
|
|
|
|
// should be reported as being margin-left, etc. Call
|
|
|
|
// nsCSSProps::OtherNameFor to get the other property.
|
|
|
|
#define CSS_PROPERTY_REPORT_OTHER_NAME (1<<7)
|
|
|
|
|
2010-09-15 08:11:26 -07:00
|
|
|
// This property allows calc() between lengths and percentages and
|
|
|
|
// stores such calc() expressions in its style structs (typically in an
|
|
|
|
// nsStyleCoord, although this is not the case for 'background-position'
|
|
|
|
// and 'background-size').
|
|
|
|
#define CSS_PROPERTY_STORES_CALC (1<<8)
|
|
|
|
|
2011-03-05 09:58:33 -08:00
|
|
|
// Define what mechanism the CSS parser uses for parsing the property.
|
|
|
|
// See CSSParserImpl::ParseProperty(nsCSSProperty). Don't use 0 so that
|
|
|
|
// we can verify that every property sets one of the values.
|
2012-03-29 10:16:21 -07:00
|
|
|
//
|
|
|
|
// CSS_PROPERTY_PARSE_FUNCTION must be used for shorthand properties,
|
|
|
|
// since it's the only mechanism that allows appending values for
|
|
|
|
// separate properties. Longhand properties that require custom parsing
|
|
|
|
// functions should prefer using CSS_PROPERTY_PARSE_VALUE (or
|
|
|
|
// CSS_PROPERTY_PARSE_VALUE_LIST) and
|
|
|
|
// CSS_PROPERTY_VALUE_PARSER_FUNCTION, though a number of existing
|
|
|
|
// longhand properties use CSS_PROPERTY_PARSE_FUNCTION instead.
|
2011-03-05 09:58:33 -08:00
|
|
|
#define CSS_PROPERTY_PARSE_PROPERTY_MASK (7<<9)
|
|
|
|
#define CSS_PROPERTY_PARSE_INACCESSIBLE (1<<9)
|
|
|
|
#define CSS_PROPERTY_PARSE_FUNCTION (2<<9)
|
|
|
|
#define CSS_PROPERTY_PARSE_VALUE (3<<9)
|
2011-03-05 09:58:33 -08:00
|
|
|
#define CSS_PROPERTY_PARSE_VALUE_LIST (4<<9)
|
2011-03-05 09:58:33 -08:00
|
|
|
|
2012-03-29 10:16:21 -07:00
|
|
|
// See CSSParserImpl::ParseSingleValueProperty and comment above
|
|
|
|
// CSS_PROPERTY_PARSE_FUNCTION (which is different).
|
2011-03-05 09:58:33 -08:00
|
|
|
#define CSS_PROPERTY_VALUE_PARSER_FUNCTION (1<<12)
|
2013-07-18 10:59:53 -07: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 09:58:33 -08:00
|
|
|
|
2011-03-05 09:58:33 -08:00
|
|
|
#define CSS_PROPERTY_VALUE_RESTRICTION_MASK (3<<13)
|
|
|
|
// The parser (in particular, CSSParserImpl::ParseSingleValueProperty)
|
|
|
|
// should enforce that the value of this property must be 0 or larger.
|
|
|
|
#define CSS_PROPERTY_VALUE_NONNEGATIVE (1<<13)
|
|
|
|
// The parser (in particular, CSSParserImpl::ParseSingleValueProperty)
|
|
|
|
// should enforce that the value of this property must be 1 or larger.
|
2011-05-09 12:02:35 -07:00
|
|
|
#define CSS_PROPERTY_VALUE_AT_LEAST_ONE (2<<13)
|
2011-03-05 09:58:33 -08:00
|
|
|
|
2013-09-28 18:40:07 -07:00
|
|
|
// Does this property support the hashless hex color quirk in quirks mode?
|
2012-07-16 06:11:33 -07:00
|
|
|
#define CSS_PROPERTY_HASHLESS_COLOR_QUIRK (1<<15)
|
2011-03-05 09:58:33 -08:00
|
|
|
|
2013-09-28 18:40:07 -07:00
|
|
|
// Does this property support the unitless length quirk in quirks mode?
|
2012-07-16 06:11:33 -07:00
|
|
|
#define CSS_PROPERTY_UNITLESS_LENGTH_QUIRK (1<<16)
|
|
|
|
|
2012-09-18 11:37:14 -07:00
|
|
|
// Is this property (which must be a shorthand) really an alias?
|
|
|
|
#define CSS_PROPERTY_IS_ALIAS (1<<17)
|
|
|
|
|
2012-11-09 02:25:52 -08:00
|
|
|
// Does the property apply to ::-moz-placeholder?
|
|
|
|
#define CSS_PROPERTY_APPLIES_TO_PLACEHOLDER (1<<18)
|
|
|
|
|
2012-08-31 14:21:28 -07:00
|
|
|
// This property is allowed in an @page rule.
|
|
|
|
#define CSS_PROPERTY_APPLIES_TO_PAGE_RULE (1<<19)
|
|
|
|
|
2013-09-23 06:28:55 -07:00
|
|
|
// This property's getComputedStyle implementation requires layout to be
|
|
|
|
// flushed.
|
|
|
|
#define CSS_PROPERTY_GETCS_NEEDS_LAYOUT_FLUSH (1<<20)
|
|
|
|
|
2009-09-11 03:46:36 -07:00
|
|
|
/**
|
|
|
|
* Types of animatable values.
|
|
|
|
*/
|
|
|
|
enum nsStyleAnimType {
|
2009-10-13 19:38:20 -07:00
|
|
|
// requires a custom implementation in
|
|
|
|
// nsStyleAnimation::ExtractComputedValue
|
|
|
|
eStyleAnimType_Custom,
|
|
|
|
|
2009-09-11 03:46:36 -07: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-28 20:22:27 -07: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 03:46:36 -07:00
|
|
|
// nscoord values
|
|
|
|
eStyleAnimType_nscoord,
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
// enumerated values (stored in a uint8_t)
|
2009-10-21 14:57:57 -07:00
|
|
|
// In order for a property to use this unit, _all_ of its enumerated values
|
|
|
|
// must be listed in its keyword table, so that any enumerated value can be
|
|
|
|
// converted into a string via a nsCSSValue of type eCSSUnit_Enumerated.
|
|
|
|
eStyleAnimType_EnumU8,
|
|
|
|
|
2009-10-08 18:30:49 -07:00
|
|
|
// float values
|
|
|
|
eStyleAnimType_float,
|
|
|
|
|
2009-09-11 03:46:36 -07:00
|
|
|
// nscolor values
|
|
|
|
eStyleAnimType_Color,
|
|
|
|
|
2009-09-11 03:46:36 -07:00
|
|
|
// nsStyleSVGPaint values
|
|
|
|
eStyleAnimType_PaintServer,
|
|
|
|
|
2009-10-21 03:53:46 -07:00
|
|
|
// nsRefPtr<nsCSSShadowArray> values
|
|
|
|
eStyleAnimType_Shadow,
|
|
|
|
|
2009-09-11 03:46:36 -07:00
|
|
|
// property not animatable
|
|
|
|
eStyleAnimType_None
|
2009-09-11 03:46:36 -07:00
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsCSSProps {
|
|
|
|
public:
|
|
|
|
static void AddRefTable(void);
|
|
|
|
static void ReleaseTable(void);
|
|
|
|
|
|
|
|
// Given a property string, return the enum value
|
2012-07-13 16:59:05 -07:00
|
|
|
enum EnabledState {
|
|
|
|
eEnabled,
|
|
|
|
eAny
|
|
|
|
};
|
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-11 18:09:40 -08:00
|
|
|
// Looks up the property with name aProperty and returns its corresponding
|
|
|
|
// nsCSSProperty value. If aProperty is the name of a custom property,
|
|
|
|
// then eCSSPropertyExtra_variable will be returned.
|
2012-07-13 16:59:05 -07:00
|
|
|
static nsCSSProperty LookupProperty(const nsAString& aProperty,
|
|
|
|
EnabledState aEnabled);
|
|
|
|
static nsCSSProperty LookupProperty(const nsACString& aProperty,
|
|
|
|
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-11 18:09:40 -08:00
|
|
|
// Returns whether aProperty is a custom property name, i.e. begins with
|
|
|
|
// "var-" and has at least one more character. This assumes that
|
|
|
|
// the CSS Variables pref has been enabled.
|
|
|
|
static bool IsCustomPropertyName(const nsAString& aProperty);
|
|
|
|
static bool IsCustomPropertyName(const nsACString& aProperty);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static inline bool IsShorthand(nsCSSProperty aProperty) {
|
2010-08-19 12:33:44 -07:00
|
|
|
NS_ABORT_IF_FALSE(0 <= aProperty && aProperty < eCSSProperty_COUNT,
|
2007-03-22 10:30:00 -07:00
|
|
|
"out of range");
|
|
|
|
return (aProperty >= eCSSProperty_COUNT_no_shorthands);
|
|
|
|
}
|
|
|
|
|
2013-12-11 18:09:43 -08:00
|
|
|
// Must be given a longhand property.
|
|
|
|
static bool IsInherited(nsCSSProperty aProperty);
|
|
|
|
|
2008-08-07 16:15:40 -07:00
|
|
|
// Same but for @font-face descriptors
|
|
|
|
static nsCSSFontDesc LookupFontDesc(const nsAString& aProperty);
|
|
|
|
static nsCSSFontDesc LookupFontDesc(const nsACString& aProperty);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Given a property enum, get the string value
|
|
|
|
static const nsAFlatCString& GetStringValue(nsCSSProperty aProperty);
|
2008-08-07 16:15:40 -07:00
|
|
|
static const nsAFlatCString& GetStringValue(nsCSSFontDesc aFontDesc);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-12-23 11:10:31 -08:00
|
|
|
// Get the property to report the computed value of aProperty as being
|
|
|
|
// the computed value of. aProperty must have the
|
|
|
|
// CSS_PROPERTY_REPORT_OTHER_NAME bit set.
|
|
|
|
static nsCSSProperty OtherNameFor(nsCSSProperty aProperty);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Given a CSS Property and a Property Enum Value
|
2013-05-19 19:59:20 -07:00
|
|
|
// Return back a const nsString& representation of the
|
2007-03-22 10:30:00 -07:00
|
|
|
// value. Return back nullstr if no value is found
|
2012-08-22 08:56:38 -07:00
|
|
|
static const nsAFlatCString& LookupPropertyValue(nsCSSProperty aProperty, int32_t aValue);
|
2007-03-22 10:30:00 -07: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 08:56:38 -07:00
|
|
|
static bool GetColorName(int32_t aPropID, nsCString &aStr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-02 22:04:50 -07: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.
|
|
|
|
static int32_t FindIndexOfKeyword(nsCSSKeyword aKeyword, const int32_t aTable[]);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Find |aKeyword| in |aTable|, if found set |aValue| to its corresponding value.
|
2011-10-17 07:59:28 -07:00
|
|
|
// If not found, return false and do not set |aValue|.
|
2012-08-22 08:56:38 -07:00
|
|
|
static bool FindKeyword(nsCSSKeyword aKeyword, const int32_t aTable[], int32_t& aValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
// Return the first keyword in |aTable| that has the corresponding value |aValue|.
|
|
|
|
// Return |eCSSKeyword_UNKNOWN| if not found.
|
2012-08-22 08:56:38 -07:00
|
|
|
static nsCSSKeyword ValueToKeywordEnum(int32_t aValue, const int32_t aTable[]);
|
2007-03-22 10:30:00 -07:00
|
|
|
// Ditto but as a string, return "" when not found.
|
2012-08-22 08:56:38 -07:00
|
|
|
static const nsAFlatCString& ValueToKeyword(int32_t aValue, const int32_t aTable[]);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
static const nsStyleStructID kSIDTable[eCSSProperty_COUNT_no_shorthands];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t* const kKeywordTableTable[eCSSProperty_COUNT_no_shorthands];
|
2009-09-11 03:46:36 -07:00
|
|
|
static const nsStyleAnimType kAnimTypeTable[eCSSProperty_COUNT_no_shorthands];
|
|
|
|
static const ptrdiff_t
|
|
|
|
kStyleStructOffsetTable[eCSSProperty_COUNT_no_shorthands];
|
2008-12-23 06:06:57 -08:00
|
|
|
|
2008-10-27 10:55:51 -07:00
|
|
|
private:
|
2012-08-22 08:56:38 -07:00
|
|
|
static const uint32_t kFlagsTable[eCSSProperty_COUNT];
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-12-23 06:06:57 -08:00
|
|
|
public:
|
2012-08-22 08:56:38 -07:00
|
|
|
static inline bool PropHasFlags(nsCSSProperty aProperty, uint32_t aFlags)
|
2008-12-23 06:06:57 -08:00
|
|
|
{
|
2010-08-19 12:33:44 -07:00
|
|
|
NS_ABORT_IF_FALSE(0 <= aProperty && aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
2013-05-14 11:20:58 -07: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 06:06:57 -08:00
|
|
|
return (nsCSSProps::kFlagsTable[aProperty] & aFlags) == aFlags;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
static inline uint32_t PropertyParseType(nsCSSProperty aProperty)
|
2011-03-05 09:58:33 -08:00
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(0 <= aProperty && aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
|
|
|
return nsCSSProps::kFlagsTable[aProperty] &
|
|
|
|
CSS_PROPERTY_PARSE_PROPERTY_MASK;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
static inline uint32_t ValueRestrictions(nsCSSProperty aProperty)
|
2011-03-05 09:58:33 -08:00
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(0 <= aProperty && aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
|
|
|
return nsCSSProps::kFlagsTable[aProperty] &
|
|
|
|
CSS_PROPERTY_VALUE_RESTRICTION_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Lives in nsCSSParser.cpp for the macros it depends on.
|
2012-08-22 08:56:38 -07:00
|
|
|
static const uint32_t kParserVariantTable[eCSSProperty_COUNT_no_shorthands];
|
2011-03-05 09:58:33 -08:00
|
|
|
|
|
|
|
public:
|
2012-08-22 08:56:38 -07:00
|
|
|
static inline uint32_t ParserVariant(nsCSSProperty aProperty) {
|
2011-03-05 09:58:33 -08:00
|
|
|
NS_ABORT_IF_FALSE(0 <= aProperty &&
|
|
|
|
aProperty < eCSSProperty_COUNT_no_shorthands,
|
|
|
|
"out of range");
|
|
|
|
return nsCSSProps::kParserVariantTable[aProperty];
|
|
|
|
}
|
|
|
|
|
2008-12-23 06:06:57 -08:00
|
|
|
private:
|
2007-03-22 10:30:00 -07:00
|
|
|
// A table for shorthand properties. The appropriate index is the
|
|
|
|
// property ID minus eCSSProperty_COUNT_no_shorthands.
|
|
|
|
static const nsCSSProperty *const
|
|
|
|
kSubpropertyTable[eCSSProperty_COUNT - eCSSProperty_COUNT_no_shorthands];
|
|
|
|
|
|
|
|
public:
|
|
|
|
static inline
|
2008-12-23 06:06:57 -08:00
|
|
|
const nsCSSProperty * SubpropertyEntryFor(nsCSSProperty aProperty) {
|
2010-08-19 12:33:44 -07:00
|
|
|
NS_ABORT_IF_FALSE(eCSSProperty_COUNT_no_shorthands <= aProperty &&
|
|
|
|
aProperty < eCSSProperty_COUNT,
|
|
|
|
"out of range");
|
2007-03-22 10:30:00 -07:00
|
|
|
return nsCSSProps::kSubpropertyTable[aProperty -
|
|
|
|
eCSSProperty_COUNT_no_shorthands];
|
|
|
|
}
|
|
|
|
|
2008-12-23 06:06:57 -08:00
|
|
|
// Returns an eCSSProperty_UNKNOWN-terminated array of the shorthand
|
|
|
|
// properties containing |aProperty|, sorted from those that contain
|
|
|
|
// the most properties to those that contain the least.
|
|
|
|
static const nsCSSProperty * ShorthandsContaining(nsCSSProperty aProperty) {
|
2010-08-19 12:33:44 -07:00
|
|
|
NS_ABORT_IF_FALSE(gShorthandsContainingPool, "uninitialized");
|
|
|
|
NS_ABORT_IF_FALSE(0 <= aProperty &&
|
|
|
|
aProperty < eCSSProperty_COUNT_no_shorthands,
|
|
|
|
"out of range");
|
2008-12-23 06:06:57 -08:00
|
|
|
return gShorthandsContainingTable[aProperty];
|
2008-10-27 10:55:51 -07:00
|
|
|
}
|
2008-12-23 06:06:57 -08:00
|
|
|
private:
|
|
|
|
// gShorthandsContainingTable is an array of the return values for
|
|
|
|
// ShorthandsContaining (arrays of nsCSSProperty terminated by
|
|
|
|
// eCSSProperty_UNKNOWN) pointing into memory in
|
|
|
|
// gShorthandsContainingPool (which contains all of those arrays in a
|
|
|
|
// single allocation, and is the one pointer that should be |free|d).
|
|
|
|
static nsCSSProperty *gShorthandsContainingTable[eCSSProperty_COUNT_no_shorthands];
|
|
|
|
static nsCSSProperty* gShorthandsContainingPool;
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool BuildShorthandsContainingTable();
|
2008-12-23 06:06:57 -08:00
|
|
|
|
2011-03-17 20:14:31 -07:00
|
|
|
private:
|
|
|
|
static const size_t gPropertyCountInStruct[nsStyleStructID_Length];
|
|
|
|
static const size_t gPropertyIndexInStruct[eCSSProperty_COUNT_no_shorthands];
|
|
|
|
public:
|
|
|
|
/**
|
2011-03-18 14:02:44 -07:00
|
|
|
* Return the number of properties that must be cascaded when
|
2011-03-17 20:14:31 -07:00
|
|
|
* nsRuleNode builds the nsStyle* for aSID.
|
|
|
|
*/
|
|
|
|
static size_t PropertyCountInStruct(nsStyleStructID aSID) {
|
|
|
|
NS_ABORT_IF_FALSE(0 <= aSID && aSID < nsStyleStructID_Length,
|
|
|
|
"out of range");
|
|
|
|
return gPropertyCountInStruct[aSID];
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Return an index for aProperty that is unique within its SID and in
|
|
|
|
* the range 0 <= index < PropertyCountInStruct(aSID).
|
|
|
|
*/
|
|
|
|
static size_t PropertyIndexInStruct(nsCSSProperty aProperty) {
|
|
|
|
NS_ABORT_IF_FALSE(0 <= aProperty &&
|
|
|
|
aProperty < eCSSProperty_COUNT_no_shorthands,
|
|
|
|
"out of range");
|
|
|
|
return gPropertyIndexInStruct[aProperty];
|
|
|
|
}
|
|
|
|
|
2012-07-13 16:59:05 -07:00
|
|
|
private:
|
2013-03-13 09:58:39 -07:00
|
|
|
static bool gPropertyEnabled[eCSSProperty_COUNT_with_aliases];
|
2012-07-13 16:59:05 -07:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static bool IsEnabled(nsCSSProperty aProperty) {
|
2013-03-13 09:58:39 -07:00
|
|
|
NS_ABORT_IF_FALSE(0 <= aProperty &&
|
|
|
|
aProperty < eCSSProperty_COUNT_with_aliases,
|
2012-07-13 16:59:05 -07:00
|
|
|
"out of range");
|
|
|
|
return gPropertyEnabled[aProperty];
|
|
|
|
}
|
|
|
|
|
2008-12-23 06:06:57 -08:00
|
|
|
public:
|
2008-10-27 10:55:51 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#define CSSPROPS_FOR_SHORTHAND_SUBPROPERTIES(iter_, prop_) \
|
|
|
|
for (const nsCSSProperty* iter_ = nsCSSProps::SubpropertyEntryFor(prop_); \
|
2013-08-14 17:37:57 -07:00
|
|
|
*iter_ != eCSSProperty_UNKNOWN; ++iter_) \
|
|
|
|
if (nsCSSProps::IsEnabled(*iter_))
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Keyword/Enum value tables
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kAnimationDirectionKTable[];
|
|
|
|
static const int32_t kAnimationFillModeKTable[];
|
|
|
|
static const int32_t kAnimationIterationCountKTable[];
|
|
|
|
static const int32_t kAnimationPlayStateKTable[];
|
|
|
|
static const int32_t kAnimationTimingFunctionKTable[];
|
|
|
|
static const int32_t kAppearanceKTable[];
|
|
|
|
static const int32_t kAzimuthKTable[];
|
|
|
|
static const int32_t kBackfaceVisibilityKTable[];
|
|
|
|
static const int32_t kTransformStyleKTable[];
|
|
|
|
static const int32_t kBackgroundAttachmentKTable[];
|
|
|
|
static const int32_t kBackgroundInlinePolicyKTable[];
|
|
|
|
static const int32_t kBackgroundOriginKTable[];
|
|
|
|
static const int32_t kBackgroundPositionKTable[];
|
|
|
|
static const int32_t kBackgroundRepeatKTable[];
|
|
|
|
static const int32_t kBackgroundRepeatPartKTable[];
|
|
|
|
static const int32_t kBackgroundSizeKTable[];
|
2013-08-07 00:59:10 -07:00
|
|
|
static const int32_t kBlendModeKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kBorderCollapseKTable[];
|
|
|
|
static const int32_t kBorderColorKTable[];
|
|
|
|
static const int32_t kBorderImageRepeatKTable[];
|
|
|
|
static const int32_t kBorderImageSliceKTable[];
|
|
|
|
static const int32_t kBorderStyleKTable[];
|
|
|
|
static const int32_t kBorderWidthKTable[];
|
|
|
|
static const int32_t kBoxAlignKTable[];
|
|
|
|
static const int32_t kBoxDirectionKTable[];
|
|
|
|
static const int32_t kBoxOrientKTable[];
|
|
|
|
static const int32_t kBoxPackKTable[];
|
|
|
|
static const int32_t kDominantBaselineKTable[];
|
|
|
|
static const int32_t kFillRuleKTable[];
|
2013-08-06 00:53:30 -07:00
|
|
|
static const int32_t kFilterFunctionKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kImageRenderingKTable[];
|
|
|
|
static const int32_t kShapeRenderingKTable[];
|
|
|
|
static const int32_t kStrokeLinecapKTable[];
|
|
|
|
static const int32_t kStrokeLinejoinKTable[];
|
2013-05-15 19:35:15 -07:00
|
|
|
static const int32_t kStrokeContextValueKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kVectorEffectKTable[];
|
|
|
|
static const int32_t kTextAnchorKTable[];
|
|
|
|
static const int32_t kTextRenderingKTable[];
|
|
|
|
static const int32_t kColorInterpolationKTable[];
|
|
|
|
static const int32_t kColumnFillKTable[];
|
|
|
|
static const int32_t kBoxPropSourceKTable[];
|
|
|
|
static const int32_t kBoxShadowTypeKTable[];
|
|
|
|
static const int32_t kBoxSizingKTable[];
|
|
|
|
static const int32_t kCaptionSideKTable[];
|
|
|
|
static const int32_t kClearKTable[];
|
|
|
|
static const int32_t kColorKTable[];
|
|
|
|
static const int32_t kContentKTable[];
|
|
|
|
static const int32_t kCursorKTable[];
|
|
|
|
static const int32_t kDirectionKTable[];
|
2013-11-09 07:53:14 -08:00
|
|
|
static const int32_t kDisplayKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kElevationKTable[];
|
|
|
|
static const int32_t kEmptyCellsKTable[];
|
2013-12-05 10:57:50 -08:00
|
|
|
static const int32_t kAlignContentKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kAlignItemsKTable[];
|
|
|
|
static const int32_t kAlignSelfKTable[];
|
|
|
|
static const int32_t kFlexDirectionKTable[];
|
2013-12-05 10:57:50 -08:00
|
|
|
static const int32_t kFlexWrapKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kJustifyContentKTable[];
|
|
|
|
static const int32_t kFloatKTable[];
|
|
|
|
static const int32_t kFloatEdgeKTable[];
|
|
|
|
static const int32_t kFontKTable[];
|
2013-05-19 19:59:20 -07:00
|
|
|
static const int32_t kFontKerningKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kFontSizeKTable[];
|
2013-07-29 13:00:41 -07:00
|
|
|
static const int32_t kFontSmoothingKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kFontStretchKTable[];
|
|
|
|
static const int32_t kFontStyleKTable[];
|
2013-05-19 19:59:20 -07:00
|
|
|
static const int32_t kFontSynthesisKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kFontVariantKTable[];
|
2013-05-19 19:59:20 -07:00
|
|
|
static const int32_t kFontVariantAlternatesKTable[];
|
|
|
|
static const int32_t kFontVariantAlternatesFuncsKTable[];
|
|
|
|
static const int32_t kFontVariantCapsKTable[];
|
|
|
|
static const int32_t kFontVariantEastAsianKTable[];
|
|
|
|
static const int32_t kFontVariantLigaturesKTable[];
|
|
|
|
static const int32_t kFontVariantNumericKTable[];
|
|
|
|
static const int32_t kFontVariantPositionKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kFontWeightKTable[];
|
2013-08-28 15:39:06 -07:00
|
|
|
static const int32_t kImageOrientationKTable[];
|
|
|
|
static const int32_t kImageOrientationFlipKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kIMEModeKTable[];
|
|
|
|
static const int32_t kLineHeightKTable[];
|
|
|
|
static const int32_t kListStylePositionKTable[];
|
|
|
|
static const int32_t kListStyleKTable[];
|
2012-12-20 16:15:22 -08:00
|
|
|
static const int32_t kMaskTypeKTable[];
|
2013-12-02 08:49:00 -08:00
|
|
|
static const int32_t kMathVariantKTable[];
|
2014-01-14 06:39:50 -08:00
|
|
|
static const int32_t kMathDisplayKTable[];
|
2013-05-15 19:35:15 -07:00
|
|
|
static const int32_t kContextOpacityKTable[];
|
|
|
|
static const int32_t kContextPatternKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kOrientKTable[];
|
|
|
|
static const int32_t kOutlineStyleKTable[];
|
|
|
|
static const int32_t kOutlineColorKTable[];
|
|
|
|
static const int32_t kOverflowKTable[];
|
|
|
|
static const int32_t kOverflowSubKTable[];
|
|
|
|
static const int32_t kPageBreakKTable[];
|
|
|
|
static const int32_t kPageBreakInsideKTable[];
|
|
|
|
static const int32_t kPageMarksKTable[];
|
|
|
|
static const int32_t kPageSizeKTable[];
|
|
|
|
static const int32_t kPitchKTable[];
|
|
|
|
static const int32_t kPointerEventsKTable[];
|
2013-09-05 15:47:08 -07:00
|
|
|
// Not const because we modify its entries when the pref
|
|
|
|
// "layout.css.sticky.enabled" changes:
|
|
|
|
static int32_t kPositionKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kRadialGradientShapeKTable[];
|
|
|
|
static const int32_t kRadialGradientSizeKTable[];
|
|
|
|
static const int32_t kRadialGradientLegacySizeKTable[];
|
|
|
|
static const int32_t kResizeKTable[];
|
|
|
|
static const int32_t kSpeakKTable[];
|
|
|
|
static const int32_t kSpeakHeaderKTable[];
|
|
|
|
static const int32_t kSpeakNumeralKTable[];
|
|
|
|
static const int32_t kSpeakPunctuationKTable[];
|
|
|
|
static const int32_t kSpeechRateKTable[];
|
|
|
|
static const int32_t kStackSizingKTable[];
|
|
|
|
static const int32_t kTableLayoutKTable[];
|
2013-10-27 13:56:32 -07:00
|
|
|
// Not const because we modify its entries when the pref
|
|
|
|
// "layout.css.text-align-true-value.enabled" changes:
|
|
|
|
static int32_t kTextAlignKTable[];
|
|
|
|
static int32_t kTextAlignLastKTable[];
|
2013-08-19 03:26:44 -07:00
|
|
|
static const int32_t kTextCombineHorizontalKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kTextDecorationLineKTable[];
|
|
|
|
static const int32_t kTextDecorationStyleKTable[];
|
2013-08-19 03:26:44 -07:00
|
|
|
static const int32_t kTextOrientationKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kTextOverflowKTable[];
|
|
|
|
static const int32_t kTextTransformKTable[];
|
2014-01-15 07:03:15 -08:00
|
|
|
static const int32_t kTouchActionKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kTransitionTimingFunctionKTable[];
|
|
|
|
static const int32_t kUnicodeBidiKTable[];
|
|
|
|
static const int32_t kUserFocusKTable[];
|
|
|
|
static const int32_t kUserInputKTable[];
|
|
|
|
static const int32_t kUserModifyKTable[];
|
|
|
|
static const int32_t kUserSelectKTable[];
|
|
|
|
static const int32_t kVerticalAlignKTable[];
|
|
|
|
static const int32_t kVisibilityKTable[];
|
|
|
|
static const int32_t kVolumeKTable[];
|
|
|
|
static const int32_t kWhitespaceKTable[];
|
|
|
|
static const int32_t kWidthKTable[]; // also min-width, max-width
|
|
|
|
static const int32_t kWindowShadowKTable[];
|
|
|
|
static const int32_t kWordBreakKTable[];
|
|
|
|
static const int32_t kWordWrapKTable[];
|
2013-05-28 09:00:49 -07:00
|
|
|
static const int32_t kWritingModeKTable[];
|
2012-08-22 08:56:38 -07:00
|
|
|
static const int32_t kHyphensKTable[];
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsCSSProps_h___ */
|