mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
721 lines
44 KiB
C
721 lines
44 KiB
C
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Mats Palmgren <mats.palmgren@bredband.net>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
/*
|
|
* a list of all CSS properties with considerable data about them, for
|
|
* preprocessing
|
|
*/
|
|
|
|
/******
|
|
|
|
This file contains the list of all parsed CSS properties. It is
|
|
designed to be used as inline input through the magic of C
|
|
preprocessing. All entries must be enclosed in the appropriate
|
|
CSS_PROP_* macro which will have cruel and unusual things done to it.
|
|
It is recommended (but not strictly necessary) to keep all entries in
|
|
alphabetical order.
|
|
|
|
The arguments to CSS_PROP_* are:
|
|
|
|
1. 'name' entries represent a CSS property name and *must* use only
|
|
lowercase characters.
|
|
|
|
2. 'id' should be the same as 'name' except that all hyphens ('-')
|
|
in 'name' are converted to underscores ('_') in 'id'. This lets us
|
|
do nice things with the macros without having to copy/convert strings
|
|
at runtime. These are the names used for the enum values of the
|
|
nsCSSProperty enumeration defined in nsCSSProps.h.
|
|
|
|
3. 'method' is designed to be as input for CSS2Properties and similar
|
|
callers. It must always be the same as 'name' except it must use
|
|
InterCaps and all hyphens ('-') must be removed.
|
|
|
|
4. 'datastruct' says which nsRuleData* struct this property goes in.
|
|
|
|
5. 'member' gives the name of the member variable in the nsRuleData
|
|
struct.
|
|
|
|
6. 'type' gives the |nsCSSType| of the data in the nsRuleData struct
|
|
and in the nsCSSDeclaration backend.
|
|
|
|
7. 'kwtable', which is either nsnull or the name of the appropriate
|
|
keyword table member of class nsCSSProps, for use in
|
|
nsCSSProps::LookupPropertyValue.
|
|
|
|
******/
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
// All includers must explicitly define CSS_PROP_NOTIMPLEMENTED if they
|
|
// want this. (Only the DOM cares.)
|
|
#ifndef CSS_PROP_NOTIMPLEMENTED
|
|
#define CSS_PROP_NOTIMPLEMENTED(name_, id_, method_) /* nothing */
|
|
#define DEFINED_CSS_PROP_NOTIMPLEMENTED
|
|
#endif
|
|
|
|
// All includers must explicitly define CSS_PROP_SHORTHAND if they
|
|
// want it.
|
|
#ifndef CSS_PROP_SHORTHAND
|
|
#define CSS_PROP_SHORTHAND(name_, id_, method_) /* nothing */
|
|
#define DEFINED_CSS_PROP_SHORTHAND
|
|
#endif
|
|
|
|
|
|
// Callers may define CSS_PROP_LIST_EXCLUDE_INTERNAL if they want to
|
|
// exclude internal properties that are not represented in the DOM (only
|
|
// the DOM style code defines this).
|
|
|
|
// A caller who wants all the properties can define the |CSS_PROP|
|
|
// macro.
|
|
#ifdef CSS_PROP
|
|
|
|
#define USED_CSS_PROP
|
|
#define CSS_PROP_FONT(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_COLOR(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_BACKGROUND(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_LIST(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_POSITION(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_TEXT(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_TEXTRESET(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_DISPLAY(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_VISIBILITY(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_CONTENT(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_QUOTES(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_USERINTERFACE(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_UIRESET(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_TABLE(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_TABLEBORDER(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_MARGIN(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_PADDING(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_BORDER(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_OUTLINE(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_XUL(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_COLUMN(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_SVG(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define CSS_PROP_SVGRESET(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
|
|
// For properties that are stored in the CSS backend but are not
|
|
// computed. An includer may define this in addition to CSS_PROP, but
|
|
// otherwise we treat it as the same.
|
|
#ifndef CSS_PROP_BACKENDONLY
|
|
#define CSS_PROP_BACKENDONLY(name_, id_, method_, datastruct_, member_, type_, kwtable_) CSS_PROP(name_, id_, method_, datastruct_, member_, type_, kwtable_)
|
|
#define DEFINED_CSS_PROP_BACKENDONLY
|
|
#endif
|
|
|
|
#else /* !defined(CSS_PROP) */
|
|
|
|
// An includer who does not define CSS_PROP can define any or all of the
|
|
// per-struct macros that are equivalent to it, and the rest will be
|
|
// ignored.
|
|
|
|
#ifndef CSS_PROP_FONT
|
|
#define CSS_PROP_FONT(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_FONT
|
|
#endif
|
|
#ifndef CSS_PROP_COLOR
|
|
#define CSS_PROP_COLOR(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_COLOR
|
|
#endif
|
|
#ifndef CSS_PROP_BACKGROUND
|
|
#define CSS_PROP_BACKGROUND(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_BACKGROUND
|
|
#endif
|
|
#ifndef CSS_PROP_LIST
|
|
#define CSS_PROP_LIST(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_LIST
|
|
#endif
|
|
#ifndef CSS_PROP_POSITION
|
|
#define CSS_PROP_POSITION(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_POSITION
|
|
#endif
|
|
#ifndef CSS_PROP_TEXT
|
|
#define CSS_PROP_TEXT(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_TEXT
|
|
#endif
|
|
#ifndef CSS_PROP_TEXTRESET
|
|
#define CSS_PROP_TEXTRESET(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_TEXTRESET
|
|
#endif
|
|
#ifndef CSS_PROP_DISPLAY
|
|
#define CSS_PROP_DISPLAY(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_DISPLAY
|
|
#endif
|
|
#ifndef CSS_PROP_VISIBILITY
|
|
#define CSS_PROP_VISIBILITY(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_VISIBILITY
|
|
#endif
|
|
#ifndef CSS_PROP_CONTENT
|
|
#define CSS_PROP_CONTENT(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_CONTENT
|
|
#endif
|
|
#ifndef CSS_PROP_QUOTES
|
|
#define CSS_PROP_QUOTES(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_QUOTES
|
|
#endif
|
|
#ifndef CSS_PROP_USERINTERFACE
|
|
#define CSS_PROP_USERINTERFACE(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_USERINTERFACE
|
|
#endif
|
|
#ifndef CSS_PROP_UIRESET
|
|
#define CSS_PROP_UIRESET(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_UIRESET
|
|
#endif
|
|
#ifndef CSS_PROP_TABLE
|
|
#define CSS_PROP_TABLE(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_TABLE
|
|
#endif
|
|
#ifndef CSS_PROP_TABLEBORDER
|
|
#define CSS_PROP_TABLEBORDER(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_TABLEBORDER
|
|
#endif
|
|
#ifndef CSS_PROP_MARGIN
|
|
#define CSS_PROP_MARGIN(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_MARGIN
|
|
#endif
|
|
#ifndef CSS_PROP_PADDING
|
|
#define CSS_PROP_PADDING(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_PADDING
|
|
#endif
|
|
#ifndef CSS_PROP_BORDER
|
|
#define CSS_PROP_BORDER(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_BORDER
|
|
#endif
|
|
#ifndef CSS_PROP_OUTLINE
|
|
#define CSS_PROP_OUTLINE(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_OUTLINE
|
|
#endif
|
|
#ifndef CSS_PROP_XUL
|
|
#define CSS_PROP_XUL(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_XUL
|
|
#endif
|
|
#ifndef CSS_PROP_COLUMN
|
|
#define CSS_PROP_COLUMN(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_COLUMN
|
|
#endif
|
|
#ifndef CSS_PROP_SVG
|
|
#define CSS_PROP_SVG(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_SVG
|
|
#endif
|
|
#ifndef CSS_PROP_SVGRESET
|
|
#define CSS_PROP_SVGRESET(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_SVGRESET
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_BACKENDONLY
|
|
#define CSS_PROP_BACKENDONLY(name_, id_, method_, datastruct_, member_, type_, kwtable_) /* nothing */
|
|
#define DEFINED_CSS_PROP_BACKENDONLY
|
|
#endif
|
|
|
|
#endif /* !defined(CSS_PROP) */
|
|
|
|
/*************************************************************************/
|
|
|
|
// For notes XXX bug 3935 below, the names being parsed do not correspond
|
|
// to the constants used internally. It would be nice to bring the
|
|
// constants into line sometime.
|
|
|
|
// The parser will refuse to parse properties marked with -x-.
|
|
|
|
// Those marked XXX bug 48973 are CSS2 properties that we support
|
|
// differently from the spec for UI requirements. If we ever
|
|
// support them correctly the old constants need to be renamed and
|
|
// new ones should be entered.
|
|
|
|
CSS_PROP_DISPLAY(-moz-appearance, appearance, MozAppearance, Display, mAppearance, eCSSType_Value, kAppearanceKTable)
|
|
CSS_PROP_SHORTHAND(-moz-border-radius, _moz_border_radius, MozBorderRadius)
|
|
CSS_PROP_BORDER(-moz-border-radius-topleft, _moz_border_radius_topLeft, MozBorderRadiusTopleft, Margin, mBorderRadius.mTop, eCSSType_Value, nsnull)
|
|
CSS_PROP_BORDER(-moz-border-radius-topright, _moz_border_radius_topRight, MozBorderRadiusTopright, Margin, mBorderRadius.mRight, eCSSType_Value, nsnull)
|
|
CSS_PROP_BORDER(-moz-border-radius-bottomleft, _moz_border_radius_bottomLeft, MozBorderRadiusBottomleft, Margin, mBorderRadius.mLeft, eCSSType_Value, nsnull)
|
|
CSS_PROP_BORDER(-moz-border-radius-bottomright, _moz_border_radius_bottomRight, MozBorderRadiusBottomright, Margin, mBorderRadius.mBottom, eCSSType_Value, nsnull)
|
|
CSS_PROP_SHORTHAND(-moz-outline-radius, _moz_outline_radius, MozOutlineRadius)
|
|
CSS_PROP_OUTLINE(-moz-outline-radius-topleft, _moz_outline_radius_topLeft, MozOutlineRadiusTopleft, Margin, mOutlineRadius.mTop, eCSSType_Value, nsnull)
|
|
CSS_PROP_OUTLINE(-moz-outline-radius-topright, _moz_outline_radius_topRight, MozOutlineRadiusTopright, Margin, mOutlineRadius.mRight, eCSSType_Value, nsnull)
|
|
CSS_PROP_OUTLINE(-moz-outline-radius-bottomleft, _moz_outline_radius_bottomLeft, MozOutlineRadiusBottomleft, Margin, mOutlineRadius.mLeft, eCSSType_Value, nsnull)
|
|
CSS_PROP_OUTLINE(-moz-outline-radius-bottomright, _moz_outline_radius_bottomRight, MozOutlineRadiusBottomright, Margin, mOutlineRadius.mBottom, eCSSType_Value, nsnull)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_FONT(-x-system-font, _x_system_font, X, Font, mSystemFont, eCSSType_Value, kFontKTable)
|
|
#endif
|
|
CSS_PROP_BACKENDONLY(azimuth, azimuth, Azimuth, Aural, mAzimuth, eCSSType_Value, kAzimuthKTable)
|
|
CSS_PROP_SHORTHAND(background, background, Background)
|
|
CSS_PROP_BACKGROUND(background-attachment, background_attachment, BackgroundAttachment, Color, mBackAttachment, eCSSType_Value, kBackgroundAttachmentKTable)
|
|
CSS_PROP_BACKGROUND(-moz-background-clip, _moz_background_clip, MozBackgroundClip, Color, mBackClip, eCSSType_Value, kBackgroundClipKTable)
|
|
CSS_PROP_BACKGROUND(background-color, background_color, BackgroundColor, Color, mBackColor, eCSSType_Value, kBackgroundColorKTable)
|
|
CSS_PROP_BACKGROUND(background-image, background_image, BackgroundImage, Color, mBackImage, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKGROUND(-moz-background-inline-policy, _moz_background_inline_policy, MozBackgroundInlinePolicy, Color, mBackInlinePolicy, eCSSType_Value, kBackgroundInlinePolicyKTable)
|
|
CSS_PROP_BACKGROUND(-moz-background-origin, _moz_background_origin, MozBackgroundOrigin, Color, mBackOrigin, eCSSType_Value, kBackgroundOriginKTable)
|
|
CSS_PROP_BACKGROUND(background-position, background_position, BackgroundPosition, Color, mBackPosition, eCSSType_ValuePair, kBackgroundPositionKTable)
|
|
CSS_PROP_BACKGROUND(background-repeat, background_repeat, BackgroundRepeat, Color, mBackRepeat, eCSSType_Value, kBackgroundRepeatKTable)
|
|
CSS_PROP_DISPLAY(-moz-binding, binding, MozBinding, Display, mBinding, eCSSType_Value, nsnull) // XXX bug 3935
|
|
CSS_PROP_SHORTHAND(border, border, Border)
|
|
CSS_PROP_SHORTHAND(border-bottom, border_bottom, BorderBottom)
|
|
CSS_PROP_BORDER(border-bottom-color, border_bottom_color, BorderBottomColor, Margin, mBorderColor.mBottom, eCSSType_Value, kBorderColorKTable)
|
|
CSS_PROP_BORDER(-moz-border-bottom-colors, border_bottom_colors, MozBorderBottomColors, Margin, mBorderColors.mBottom, eCSSType_ValueList, nsnull)
|
|
CSS_PROP_BORDER(border-bottom-style, border_bottom_style, BorderBottomStyle, Margin, mBorderStyle.mBottom, eCSSType_Value, kBorderStyleKTable) // on/off will need reflow
|
|
CSS_PROP_BORDER(border-bottom-width, border_bottom_width, BorderBottomWidth, Margin, mBorderWidth.mBottom, eCSSType_Value, kBorderWidthKTable)
|
|
CSS_PROP_TABLEBORDER(border-collapse, border_collapse, BorderCollapse, Table, mBorderCollapse, eCSSType_Value, kBorderCollapseKTable)
|
|
CSS_PROP_SHORTHAND(border-color, border_color, BorderColor)
|
|
CSS_PROP_SHORTHAND(-moz-border-end, border_end, MozBorderEnd)
|
|
CSS_PROP_SHORTHAND(-moz-border-end-color, border_end_color, MozBorderEndColor)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-end-color-value, border_end_color_value, X, Margin, mBorderEndColor, eCSSType_Value, kBorderColorKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(-moz-border-end-style, border_end_style, MozBorderEndStyle)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-end-style-value, border_end_style_value, X, Margin, mBorderEndStyle, eCSSType_Value, kBorderStyleKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(-moz-border-end-width, border_end_width, MozBorderEndWidth)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-end-width-value, border_end_width_value, X, Margin, mBorderEndWidth, eCSSType_Value, kBorderWidthKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(border-left, border_left, BorderLeft)
|
|
CSS_PROP_SHORTHAND(border-left-color, border_left_color, BorderLeftColor)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-left-color-value, border_left_color_value, X, Margin, mBorderColor.mLeft, eCSSType_Value, kBorderColorKTable)
|
|
CSS_PROP_BORDER(border-left-color-ltr-source, border_left_color_ltr_source, X, Margin, mBorderLeftColorLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_BORDER(border-left-color-rtl-source, border_left_color_rtl_source, X, Margin, mBorderLeftColorRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_BORDER(-moz-border-left-colors, border_left_colors, MozBorderLeftColors, Margin, mBorderColors.mLeft, eCSSType_ValueList, nsnull)
|
|
CSS_PROP_SHORTHAND(border-left-style, border_left_style, BorderLeftStyle) // on/off will need reflow
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-left-style-value, border_left_style_value, X, Margin, mBorderStyle.mLeft, eCSSType_Value, kBorderStyleKTable)
|
|
CSS_PROP_BORDER(border-left-style-ltr-source, border_left_style_ltr_source, X, Margin, mBorderLeftStyleLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_BORDER(border-left-style-rtl-source, border_left_style_rtl_source, X, Margin, mBorderLeftStyleRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(border-left-width, border_left_width, BorderLeftWidth)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-left-width-value, border_left_width_value, X, Margin, mBorderWidth.mLeft, eCSSType_Value, kBorderWidthKTable)
|
|
CSS_PROP_BORDER(border-left-width-ltr-source, border_left_width_ltr_source, X, Margin, mBorderLeftWidthLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_BORDER(border-left-width-rtl-source, border_left_width_rtl_source, X, Margin, mBorderLeftWidthRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(border-right, border_right, BorderRight)
|
|
CSS_PROP_SHORTHAND(border-right-color, border_right_color, BorderRightColor)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-right-color-value, border_right_color_value, X, Margin, mBorderColor.mRight, eCSSType_Value, kBorderColorKTable)
|
|
CSS_PROP_BORDER(border-right-color-ltr-source, border_right_color_ltr_source, X, Margin, mBorderRightColorLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_BORDER(border-right-color-rtl-source, border_right_color_rtl_source, X, Margin, mBorderRightColorRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_BORDER(-moz-border-right-colors, border_right_colors, MozBorderRightColors, Margin, mBorderColors.mRight, eCSSType_ValueList, nsnull)
|
|
CSS_PROP_SHORTHAND(border-right-style, border_right_style, BorderRightStyle) // on/off will need reflow
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-right-style-value, border_right_style_value, X, Margin, mBorderStyle.mRight, eCSSType_Value, kBorderStyleKTable)
|
|
CSS_PROP_BORDER(border-right-style-ltr-source, border_right_style_ltr_source, X, Margin, mBorderRightStyleLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_BORDER(border-right-style-rtl-source, border_right_style_rtl_source, X, Margin, mBorderRightStyleRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(border-right-width, border_right_width, BorderRightWidth)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-right-width-value, border_right_width_value, X, Margin, mBorderWidth.mRight, eCSSType_Value, kBorderWidthKTable)
|
|
CSS_PROP_BORDER(border-right-width-ltr-source, border_right_width_ltr_source, X, Margin, mBorderRightWidthLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_BORDER(border-right-width-rtl-source, border_right_width_rtl_source, X, Margin, mBorderRightWidthRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_TABLEBORDER(border-spacing, border_spacing, BorderSpacing, Table, mBorderSpacing, eCSSType_ValuePair, nsnull) // XXX bug 3935
|
|
CSS_PROP_SHORTHAND(-moz-border-start, border_start, MozBorderStart)
|
|
CSS_PROP_SHORTHAND(-moz-border-start-color, border_start_color, MozBorderStartColor)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-start-color-value, border_start_color_value, X, Margin, mBorderStartColor, eCSSType_Value, kBorderColorKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(-moz-border-start-style, border_start_style, MozBorderStartStyle)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-start-style-value, border_start_style_value, X, Margin, mBorderStartStyle, eCSSType_Value, kBorderStyleKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(-moz-border-start-width, border_start_width, MozBorderStartWidth)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_BORDER(border-start-width-value, border_start_width_value, X, Margin, mBorderStartWidth, eCSSType_Value, kBorderWidthKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(border-style, border_style, BorderStyle) // on/off will need reflow
|
|
CSS_PROP_SHORTHAND(border-top, border_top, BorderTop)
|
|
CSS_PROP_BORDER(border-top-color, border_top_color, BorderTopColor, Margin, mBorderColor.mTop, eCSSType_Value, kBorderColorKTable)
|
|
CSS_PROP_BORDER(-moz-border-top-colors, border_top_colors, MozBorderTopColors, Margin, mBorderColors.mTop, eCSSType_ValueList, nsnull)
|
|
CSS_PROP_BORDER(border-top-style, border_top_style, BorderTopStyle, Margin, mBorderStyle.mTop, eCSSType_Value, kBorderStyleKTable) // on/off will need reflow
|
|
CSS_PROP_BORDER(border-top-width, border_top_width, BorderTopWidth, Margin, mBorderWidth.mTop, eCSSType_Value, kBorderWidthKTable)
|
|
CSS_PROP_SHORTHAND(border-width, border_width, BorderWidth)
|
|
CSS_PROP_POSITION(bottom, bottom, Bottom, Position, mOffset.mBottom, eCSSType_Value, nsnull)
|
|
CSS_PROP_POSITION(-moz-box-sizing, box_sizing, MozBoxSizing, Position, mBoxSizing, eCSSType_Value, kBoxSizingKTable) // XXX bug 3935
|
|
CSS_PROP_TABLEBORDER(caption-side, caption_side, CaptionSide, Table, mCaptionSide, eCSSType_Value, kCaptionSideKTable)
|
|
CSS_PROP_DISPLAY(clear, clear, Clear, Display, mClear, eCSSType_Value, kClearKTable)
|
|
CSS_PROP_DISPLAY(clip, clip, Clip, Display, mClip, eCSSType_Rect, nsnull)
|
|
CSS_PROP_COLOR(color, color, Color, Color, mColor, eCSSType_Value, nsnull)
|
|
CSS_PROP_COLUMN(-moz-column-count, _moz_column_count, MozColumnCount, Column, mColumnCount, eCSSType_Value, nsnull)
|
|
CSS_PROP_COLUMN(-moz-column-width, _moz_column_width, MozColumnWidth, Column, mColumnWidth, eCSSType_Value, nsnull)
|
|
CSS_PROP_COLUMN(-moz-column-gap, _moz_column_gap, MozColumnGap, Column, mColumnGap, eCSSType_Value, nsnull)
|
|
CSS_PROP_CONTENT(content, content, Content, Content, mContent, eCSSType_ValueList, kContentKTable)
|
|
CSS_PROP_CONTENT(counter-increment, counter_increment, CounterIncrement, Content, mCounterIncrement, eCSSType_CounterData, nsnull) // XXX bug 137285
|
|
CSS_PROP_CONTENT(counter-reset, counter_reset, CounterReset, Content, mCounterReset, eCSSType_CounterData, nsnull) // XXX bug 137285
|
|
CSS_PROP_SHORTHAND(cue, cue, Cue)
|
|
CSS_PROP_BACKENDONLY(cue-after, cue_after, CueAfter, Aural, mCueAfter, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKENDONLY(cue-before, cue_before, CueBefore, Aural, mCueBefore, eCSSType_Value, nsnull)
|
|
CSS_PROP_USERINTERFACE(cursor, cursor, Cursor, UserInterface, mCursor, eCSSType_ValueList, kCursorKTable)
|
|
CSS_PROP_VISIBILITY(direction, direction, Direction, Display, mDirection, eCSSType_Value, kDirectionKTable)
|
|
CSS_PROP_DISPLAY(display, display, Display, Display, mDisplay, eCSSType_Value, kDisplayKTable)
|
|
CSS_PROP_BACKENDONLY(elevation, elevation, Elevation, Aural, mElevation, eCSSType_Value, kElevationKTable)
|
|
CSS_PROP_TABLEBORDER(empty-cells, empty_cells, EmptyCells, Table, mEmptyCells, eCSSType_Value, kEmptyCellsKTable)
|
|
CSS_PROP_DISPLAY(float, float, CssFloat, Display, mFloat, eCSSType_Value, kFloatKTable)
|
|
CSS_PROP_BORDER(-moz-float-edge, float_edge, MozFloatEdge, Margin, mFloatEdge, eCSSType_Value, kFloatEdgeKTable) // XXX bug 3935
|
|
CSS_PROP_SHORTHAND(font, font, Font)
|
|
CSS_PROP_FONT(font-family, font_family, FontFamily, Font, mFamily, eCSSType_Value, nsnull)
|
|
CSS_PROP_FONT(font-size, font_size, FontSize, Font, mSize, eCSSType_Value, kFontSizeKTable)
|
|
CSS_PROP_FONT(font-size-adjust, font_size_adjust, FontSizeAdjust, Font, mSizeAdjust, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKENDONLY(font-stretch, font_stretch, FontStretch, Font, mStretch, eCSSType_Value, kFontStretchKTable)
|
|
CSS_PROP_FONT(font-style, font_style, FontStyle, Font, mStyle, eCSSType_Value, kFontStyleKTable)
|
|
CSS_PROP_FONT(font-variant, font_variant, FontVariant, Font, mVariant, eCSSType_Value, kFontVariantKTable)
|
|
CSS_PROP_FONT(font-weight, font_weight, FontWeight, Font, mWeight, eCSSType_Value, kFontWeightKTable)
|
|
CSS_PROP_UIRESET(-moz-force-broken-image-icon, force_broken_image_icon, MozForceBrokenImageIcon, UserInterface, mForceBrokenImageIcon, eCSSType_Value, nsnull) // bug 58646
|
|
CSS_PROP_POSITION(height, height, Height, Position, mHeight, eCSSType_Value, nsnull)
|
|
CSS_PROP_LIST(-moz-image-region, image_region, MozImageRegion, List, mImageRegion, eCSSType_Rect, nsnull)
|
|
CSS_PROP_UIRESET(ime-mode, ime_mode, ImeMode, UserInterface, mIMEMode, eCSSType_Value, kIMEModeKTable)
|
|
CSS_PROP_POSITION(left, left, Left, Position, mOffset.mLeft, eCSSType_Value, nsnull)
|
|
CSS_PROP_TEXT(letter-spacing, letter_spacing, LetterSpacing, Text, mLetterSpacing, eCSSType_Value, nsnull)
|
|
CSS_PROP_TEXT(line-height, line_height, LineHeight, Text, mLineHeight, eCSSType_Value, nsnull)
|
|
CSS_PROP_SHORTHAND(list-style, list_style, ListStyle)
|
|
CSS_PROP_LIST(list-style-image, list_style_image, ListStyleImage, List, mImage, eCSSType_Value, nsnull)
|
|
CSS_PROP_LIST(list-style-position, list_style_position, ListStylePosition, List, mPosition, eCSSType_Value, kListStylePositionKTable)
|
|
CSS_PROP_LIST(list-style-type, list_style_type, ListStyleType, List, mType, eCSSType_Value, kListStyleKTable)
|
|
CSS_PROP_SHORTHAND(margin, margin, Margin)
|
|
CSS_PROP_MARGIN(margin-bottom, margin_bottom, MarginBottom, Margin, mMargin.mBottom, eCSSType_Value, nsnull)
|
|
CSS_PROP_SHORTHAND(-moz-margin-end, margin_end, MozMarginEnd)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_MARGIN(margin-end-value, margin_end_value, X, Margin, mMarginEnd, eCSSType_Value, nsnull)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(margin-left, margin_left, MarginLeft)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_MARGIN(margin-left-value, margin_left_value, X, Margin, mMargin.mLeft, eCSSType_Value, nsnull)
|
|
CSS_PROP_MARGIN(margin-left-ltr-source, margin_left_ltr_source, X, Margin, mMarginLeftLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_MARGIN(margin-left-rtl-source, margin_left_rtl_source, X, Margin, mMarginLeftRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(margin-right, margin_right, MarginRight)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_MARGIN(margin-right-value, margin_right_value, X, Margin, mMargin.mRight, eCSSType_Value, nsnull)
|
|
CSS_PROP_MARGIN(margin-right-ltr-source, margin_right_ltr_source, X, Margin, mMarginRightLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_MARGIN(margin-right-rtl-source, margin_right_rtl_source, X, Margin, mMarginRightRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(-moz-margin-start, margin_start, MozMarginStart)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_MARGIN(margin-start-value, margin_start_value, X, Margin, mMarginStart, eCSSType_Value, nsnull)
|
|
#endif
|
|
CSS_PROP_MARGIN(margin-top, margin_top, MarginTop, Margin, mMargin.mTop, eCSSType_Value, nsnull)
|
|
CSS_PROP_CONTENT(marker-offset, marker_offset, MarkerOffset, Content, mMarkerOffset, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKENDONLY(marks, marks, Marks, Page, mMarks, eCSSType_Value, kPageMarksKTable)
|
|
CSS_PROP_POSITION(max-height, max_height, MaxHeight, Position, mMaxHeight, eCSSType_Value, nsnull)
|
|
CSS_PROP_POSITION(max-width, max_width, MaxWidth, Position, mMaxWidth, eCSSType_Value, kWidthKTable)
|
|
CSS_PROP_POSITION(min-height, min_height, MinHeight, Position, mMinHeight, eCSSType_Value, nsnull)
|
|
CSS_PROP_POSITION(min-width, min_width, MinWidth, Position, mMinWidth, eCSSType_Value, kWidthKTable)
|
|
CSS_PROP_DISPLAY(opacity, opacity, Opacity, Display, mOpacity, eCSSType_Value, nsnull) // XXX bug 3935
|
|
CSS_PROP_BACKENDONLY(orphans, orphans, Orphans, Breaks, mOrphans, eCSSType_Value, nsnull)
|
|
CSS_PROP_SHORTHAND(outline, outline, Outline)
|
|
CSS_PROP_OUTLINE(outline-color, outline_color, OutlineColor, Margin, mOutlineColor, eCSSType_Value, kOutlineColorKTable)
|
|
CSS_PROP_OUTLINE(outline-style, outline_style, OutlineStyle, Margin, mOutlineStyle, eCSSType_Value, kBorderStyleKTable)
|
|
CSS_PROP_OUTLINE(outline-width, outline_width, OutlineWidth, Margin, mOutlineWidth, eCSSType_Value, kBorderWidthKTable)
|
|
CSS_PROP_OUTLINE(outline-offset, outline_offset, OutlineOffset, Margin, mOutlineOffset, eCSSType_Value, nsnull)
|
|
CSS_PROP_SHORTHAND(overflow, overflow, Overflow)
|
|
CSS_PROP_DISPLAY(overflow-x, overflow_x, OverflowX, Display, mOverflowX, eCSSType_Value, kOverflowSubKTable)
|
|
CSS_PROP_DISPLAY(overflow-y, overflow_y, OverflowY, Display, mOverflowY, eCSSType_Value, kOverflowSubKTable)
|
|
CSS_PROP_SHORTHAND(padding, padding, Padding)
|
|
CSS_PROP_PADDING(padding-bottom, padding_bottom, PaddingBottom, Margin, mPadding.mBottom, eCSSType_Value, nsnull)
|
|
CSS_PROP_SHORTHAND(-moz-padding-end, padding_end, MozPaddingEnd)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_PADDING(padding-end-value, padding_end_value, X, Margin, mPaddingEnd, eCSSType_Value, nsnull)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(padding-left, padding_left, PaddingLeft)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_PADDING(padding-left-value, padding_left_value, X, Margin, mPadding.mLeft, eCSSType_Value, nsnull)
|
|
CSS_PROP_PADDING(padding-left-ltr-source, padding_left_ltr_source, X, Margin, mPaddingLeftLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_PADDING(padding-left-rtl-source, padding_left_rtl_source, X, Margin, mPaddingLeftRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(padding-right, padding_right, PaddingRight)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_PADDING(padding-right-value, padding_right_value, X, Margin, mPadding.mRight, eCSSType_Value, nsnull)
|
|
CSS_PROP_PADDING(padding-right-ltr-source, padding_right_ltr_source, X, Margin, mPaddingRightLTRSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
CSS_PROP_PADDING(padding-right-rtl-source, padding_right_rtl_source, X, Margin, mPaddingRightRTLSource, eCSSType_Value, kBoxPropSourceKTable)
|
|
#endif
|
|
CSS_PROP_SHORTHAND(-moz-padding-start, padding_start, MozPaddingStart)
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_PADDING(padding-start-value, padding_start_value, X, Margin, mPaddingStart, eCSSType_Value, nsnull)
|
|
#endif
|
|
CSS_PROP_PADDING(padding-top, padding_top, PaddingTop, Margin, mPadding.mTop, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKENDONLY(page, page, Page, Breaks, mPage, eCSSType_Value, nsnull)
|
|
CSS_PROP_DISPLAY(page-break-after, page_break_after, PageBreakAfter, Display, mBreakAfter, eCSSType_Value, kPageBreakKTable) // temp fix for bug 24000
|
|
CSS_PROP_DISPLAY(page-break-before, page_break_before, PageBreakBefore, Display, mBreakBefore, eCSSType_Value, kPageBreakKTable) // temp fix for bug 24000
|
|
CSS_PROP_BACKENDONLY(page-break-inside, page_break_inside, PageBreakInside, Breaks, mPageBreakInside, eCSSType_Value, kPageBreakInsideKTable)
|
|
CSS_PROP_SHORTHAND(pause, pause, Pause)
|
|
CSS_PROP_BACKENDONLY(pause-after, pause_after, PauseAfter, Aural, mPauseAfter, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKENDONLY(pause-before, pause_before, PauseBefore, Aural, mPauseBefore, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKENDONLY(pitch, pitch, Pitch, Aural, mPitch, eCSSType_Value, kPitchKTable)
|
|
CSS_PROP_BACKENDONLY(pitch-range, pitch_range, PitchRange, Aural, mPitchRange, eCSSType_Value, nsnull)
|
|
CSS_PROP_DISPLAY(position, position, Position, Display, mPosition, eCSSType_Value, kPositionKTable)
|
|
CSS_PROP_QUOTES(quotes, quotes, Quotes, Content, mQuotes, eCSSType_Quotes, nsnull)
|
|
CSS_PROP_BACKENDONLY(richness, richness, Richness, Aural, mRichness, eCSSType_Value, nsnull)
|
|
CSS_PROP_POSITION(right, right, Right, Position, mOffset.mRight, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKENDONLY(size, size, Size, Page, mSize, eCSSType_ValuePair, kPageSizeKTable)
|
|
CSS_PROP_BACKENDONLY(speak, speak, Speak, Aural, mSpeak, eCSSType_Value, kSpeakKTable)
|
|
CSS_PROP_BACKENDONLY(speak-header, speak_header, SpeakHeader, Aural, mSpeakHeader, eCSSType_Value, kSpeakHeaderKTable)
|
|
CSS_PROP_BACKENDONLY(speak-numeral, speak_numeral, SpeakNumeral, Aural, mSpeakNumeral, eCSSType_Value, kSpeakNumeralKTable)
|
|
CSS_PROP_BACKENDONLY(speak-punctuation, speak_punctuation, SpeakPunctuation, Aural, mSpeakPunctuation, eCSSType_Value, kSpeakPunctuationKTable)
|
|
CSS_PROP_BACKENDONLY(speech-rate, speech_rate, SpeechRate, Aural, mSpeechRate, eCSSType_Value, kSpeechRateKTable)
|
|
CSS_PROP_BACKENDONLY(stress, stress, Stress, Aural, mStress, eCSSType_Value, nsnull)
|
|
CSS_PROP_TABLE(table-layout, table_layout, TableLayout, Table, mLayout, eCSSType_Value, kTableLayoutKTable)
|
|
CSS_PROP_TEXT(text-align, text_align, TextAlign, Text, mTextAlign, eCSSType_Value, kTextAlignKTable)
|
|
CSS_PROP_TEXTRESET(text-decoration, text_decoration, TextDecoration, Text, mDecoration, eCSSType_Value, kTextDecorationKTable)
|
|
CSS_PROP_TEXT(text-indent, text_indent, TextIndent, Text, mTextIndent, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKENDONLY(text-shadow, text_shadow, TextShadow, Text, mTextShadow, eCSSType_ValueList, nsnull)
|
|
CSS_PROP_TEXT(text-transform, text_transform, TextTransform, Text, mTextTransform, eCSSType_Value, kTextTransformKTable)
|
|
CSS_PROP_POSITION(top, top, Top, Position, mOffset.mTop, eCSSType_Value, nsnull)
|
|
CSS_PROP_TEXTRESET(unicode-bidi, unicode_bidi, UnicodeBidi, Text, mUnicodeBidi, eCSSType_Value, kUnicodeBidiKTable)
|
|
CSS_PROP_USERINTERFACE(-moz-user-focus, user_focus, MozUserFocus, UserInterface, mUserFocus, eCSSType_Value, kUserFocusKTable) // XXX bug 3935
|
|
CSS_PROP_USERINTERFACE(-moz-user-input, user_input, MozUserInput, UserInterface, mUserInput, eCSSType_Value, kUserInputKTable) // XXX ??? // XXX bug 3935
|
|
CSS_PROP_USERINTERFACE(-moz-user-modify, user_modify, MozUserModify, UserInterface, mUserModify, eCSSType_Value, kUserModifyKTable) // XXX bug 3935
|
|
CSS_PROP_UIRESET(-moz-user-select, user_select, MozUserSelect, UserInterface, mUserSelect, eCSSType_Value, kUserSelectKTable) // XXX bug 3935
|
|
CSS_PROP_TEXTRESET(vertical-align, vertical_align, VerticalAlign, Text, mVerticalAlign, eCSSType_Value, kVerticalAlignKTable)
|
|
CSS_PROP_VISIBILITY(visibility, visibility, Visibility, Display, mVisibility, eCSSType_Value, kVisibilityKTable) // reflow for collapse
|
|
CSS_PROP_BACKENDONLY(voice-family, voice_family, VoiceFamily, Aural, mVoiceFamily, eCSSType_Value, nsnull)
|
|
CSS_PROP_BACKENDONLY(volume, volume, Volume, Aural, mVolume, eCSSType_Value, kVolumeKTable)
|
|
CSS_PROP_TEXT(white-space, white_space, WhiteSpace, Text, mWhiteSpace, eCSSType_Value, kWhitespaceKTable)
|
|
CSS_PROP_BACKENDONLY(widows, widows, Widows, Breaks, mWidows, eCSSType_Value, nsnull)
|
|
CSS_PROP_POSITION(width, width, Width, Position, mWidth, eCSSType_Value, kWidthKTable)
|
|
CSS_PROP_TEXT(word-spacing, word_spacing, WordSpacing, Text, mWordSpacing, eCSSType_Value, nsnull)
|
|
CSS_PROP_POSITION(z-index, z_index, ZIndex, Position, mZIndex, eCSSType_Value, nsnull)
|
|
|
|
CSS_PROP_XUL(-moz-box-align, box_align, MozBoxAlign, XUL, mBoxAlign, eCSSType_Value, kBoxAlignKTable) // XXX bug 3935
|
|
CSS_PROP_XUL(-moz-box-direction, box_direction, MozBoxDirection, XUL, mBoxDirection, eCSSType_Value, kBoxDirectionKTable) // XXX bug 3935
|
|
CSS_PROP_XUL(-moz-box-flex, box_flex, MozBoxFlex, XUL, mBoxFlex, eCSSType_Value, nsnull) // XXX bug 3935
|
|
CSS_PROP_XUL(-moz-box-orient, box_orient, MozBoxOrient, XUL, mBoxOrient, eCSSType_Value, kBoxOrientKTable) // XXX bug 3935
|
|
CSS_PROP_XUL(-moz-box-pack, box_pack, MozBoxPack, XUL, mBoxPack, eCSSType_Value, kBoxPackKTable) // XXX bug 3935
|
|
CSS_PROP_XUL(-moz-box-ordinal-group, box_ordinal_group, MozBoxOrdinalGroup, XUL, mBoxOrdinal, eCSSType_Value, nsnull)
|
|
|
|
#ifdef MOZ_MATHML
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_FONT(-moz-script-level, script_level, ScriptLevel, Font, mScriptLevel, eCSSType_Value, nsnull)
|
|
CSS_PROP_FONT(-moz-script-size-multiplier, script_size_multiplier, ScriptSizeMultiplier, Font, mScriptSizeMultiplier, eCSSType_Value, nsnull)
|
|
CSS_PROP_FONT(-moz-script-min-size, script_min_size, ScriptMinSize, Font, mScriptMinSize, eCSSType_Value, nsnull)
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef MOZ_SVG
|
|
// XXX treat SVG's CSS Properties as internal for now.
|
|
// Do we want to create an nsIDOMSVGCSS2Properties interface?
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
CSS_PROP_SVGRESET(clip-path, clip_path, ClipPath, SVG, mClipPath, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(clip-rule, clip_rule, ClipRule, SVG, mClipRule, eCSSType_Value, kFillRuleKTable)
|
|
CSS_PROP_SVG(color-interpolation, color_interpolation, ColorInterpolation, SVG, mColorInterpolation, eCSSType_Value, kColorInterpolationKTable)
|
|
CSS_PROP_SVG(color-interpolation-filters, color_interpolation_filters, ColorInterpolationFilters, SVG, mColorInterpolationFilters, eCSSType_Value, kColorInterpolationKTable)
|
|
CSS_PROP_SVGRESET(dominant-baseline, dominant_baseline, DominantBaseline, SVG, mDominantBaseline, eCSSType_Value, kDominantBaselineKTable)
|
|
CSS_PROP_SVG(fill, fill, Fill, SVG, mFill, eCSSType_ValuePair, nsnull)
|
|
CSS_PROP_SVG(fill-opacity, fill_opacity, FillOpacity, SVG, mFillOpacity, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(fill-rule, fill_rule, FillRule, SVG, mFillRule, eCSSType_Value, kFillRuleKTable)
|
|
CSS_PROP_SVGRESET(filter, filter, Filter, SVG, mFilter, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVGRESET(flood-color, flood_color, FloodColor, SVG, mFloodColor, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVGRESET(flood-opacity, flood_opacity, FloodOpacity, SVG, mFloodOpacity, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVGRESET(lighting-color, lighting_color, LightingColor, SVG, mLightingColor, eCSSType_Value, nsnull)
|
|
CSS_PROP_SHORTHAND(marker, marker, Marker)
|
|
CSS_PROP_SVG(marker-end, marker_end, MarkerEnd, SVG, mMarkerEnd, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(marker-mid, marker_mid, MarkerMid, SVG, mMarkerMid, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(marker-start, marker_start, MarkerStart, SVG, mMarkerStart, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVGRESET(mask, mask, Mask, SVG, mMask, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(pointer-events, pointer_events, PointerEvents, SVG, mPointerEvents, eCSSType_Value, kPointerEventsKTable)
|
|
CSS_PROP_SVG(shape-rendering, shape_rendering, ShapeRendering, SVG, mShapeRendering, eCSSType_Value, kShapeRenderingKTable)
|
|
CSS_PROP_SVGRESET(stop-color, stop_color, StopColor, SVG, mStopColor, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVGRESET(stop-opacity, stop_opacity, StopOpacity, SVG, mStopOpacity, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(stroke, stroke, Stroke, SVG, mStroke, eCSSType_ValuePair, nsnull)
|
|
CSS_PROP_SVG(stroke-dasharray, stroke_dasharray, StrokeDasharray, SVG, mStrokeDasharray, eCSSType_ValueList, nsnull)
|
|
CSS_PROP_SVG(stroke-dashoffset, stroke_dashoffset, StrokeDashoffset, SVG, mStrokeDashoffset, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(stroke-linecap, stroke_linecap, StrokeLinecap, SVG, mStrokeLinecap, eCSSType_Value, kStrokeLinecapKTable)
|
|
CSS_PROP_SVG(stroke-linejoin, stroke_linejoin, StrokeLinejoin, SVG, mStrokeLinejoin, eCSSType_Value, kStrokeLinejoinKTable)
|
|
CSS_PROP_SVG(stroke-miterlimit, stroke_miterlimit, StrokeMiterlimit, SVG, mStrokeMiterlimit, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(stroke-opacity, stroke_opacity, StrokeOpacity, SVG, mStrokeOpacity, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(stroke-width, stroke_width, StrokeWidth, SVG, mStrokeWidth, eCSSType_Value, nsnull)
|
|
CSS_PROP_SVG(text-anchor, text_anchor, TextAnchor, SVG, mTextAnchor, eCSSType_Value, kTextAnchorKTable)
|
|
CSS_PROP_SVG(text-rendering, text_rendering, TextRendering, SVG, mTextRendering, eCSSType_Value, kTextRenderingKTable)
|
|
#endif /* !defined (CSS_PROP_LIST_EXCLUDE_INTERNAL) */
|
|
#endif
|
|
|
|
// Callers that want information on the properties that are in
|
|
// the style structs but not in the nsCSS* structs should define
|
|
// |CSS_PROP_INCLUDE_NOT_CSS|. (Some of these are also in nsRuleData*,
|
|
// and a distinction might be needed at some point.)
|
|
// The first 3 parameters don't matter, but some compilers don't like
|
|
// empty arguments to macros.
|
|
#ifdef CSS_PROP_INCLUDE_NOT_CSS
|
|
CSS_PROP_VISIBILITY(X, X, X, Display, mLang, eCSSType_Value, nsnull)
|
|
CSS_PROP_TABLE(X, X, X, Table, mFrame, eCSSType_Value, nsnull)
|
|
CSS_PROP_TABLE(X, X, X, Table, mRules, eCSSType_Value, nsnull)
|
|
CSS_PROP_TABLE(X, X, X, Table, mCols, eCSSType_Value, nsnull)
|
|
CSS_PROP_TABLE(X, X, X, Table, mSpan, eCSSType_Value, nsnull)
|
|
#endif /* defined(CSS_PROP_INCLUDE_NOT_CSS) */
|
|
|
|
#ifdef USED_CSS_PROP
|
|
|
|
#undef USED_CSS_PROP
|
|
#undef CSS_PROP_FONT
|
|
#undef CSS_PROP_COLOR
|
|
#undef CSS_PROP_BACKGROUND
|
|
#undef CSS_PROP_LIST
|
|
#undef CSS_PROP_POSITION
|
|
#undef CSS_PROP_TEXT
|
|
#undef CSS_PROP_TEXTRESET
|
|
#undef CSS_PROP_DISPLAY
|
|
#undef CSS_PROP_VISIBILITY
|
|
#undef CSS_PROP_CONTENT
|
|
#undef CSS_PROP_QUOTES
|
|
#undef CSS_PROP_USERINTERFACE
|
|
#undef CSS_PROP_UIRESET
|
|
#undef CSS_PROP_TABLE
|
|
#undef CSS_PROP_TABLEBORDER
|
|
#undef CSS_PROP_MARGIN
|
|
#undef CSS_PROP_PADDING
|
|
#undef CSS_PROP_BORDER
|
|
#undef CSS_PROP_OUTLINE
|
|
#undef CSS_PROP_XUL
|
|
#undef CSS_PROP_COLUMN
|
|
#undef CSS_PROP_SVG
|
|
#undef CSS_PROP_SVGRESET
|
|
#ifdef DEFINED_CSS_PROP_BACKENDONLY
|
|
#undef CSS_PROP_BACKENDONLY
|
|
#undef DEFINED_CSS_PROP_BACKENDONLY
|
|
#endif
|
|
|
|
#else /* !defined(USED_CSS_PROP) */
|
|
|
|
#ifdef DEFINED_CSS_PROP_FONT
|
|
#undef CSS_PROP_FONT
|
|
#undef DEFINED_CSS_PROP_FONT
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_COLOR
|
|
#undef CSS_PROP_COLOR
|
|
#undef DEFINED_CSS_PROP_COLOR
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_BACKGROUND
|
|
#undef CSS_PROP_BACKGROUND
|
|
#undef DEFINED_CSS_PROP_BACKGROUND
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_LIST
|
|
#undef CSS_PROP_LIST
|
|
#undef DEFINED_CSS_PROP_LIST
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_POSITION
|
|
#undef CSS_PROP_POSITION
|
|
#undef DEFINED_CSS_PROP_POSITION
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_TEXT
|
|
#undef CSS_PROP_TEXT
|
|
#undef DEFINED_CSS_PROP_TETEXTRESETT
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_TEXTRESET
|
|
#undef CSS_PROP_TEXTRESET
|
|
#undef DEFINED_CSS_PROP_TEDISPLAYTRESET
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_DISPLAY
|
|
#undef CSS_PROP_DISPLAY
|
|
#undef DEFINED_CSS_PROP_DISPLAY
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_VISIBILITY
|
|
#undef CSS_PROP_VISIBILITY
|
|
#undef DEFINED_CSS_PROP_VISIBILITY
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_CONTENT
|
|
#undef CSS_PROP_CONTENT
|
|
#undef DEFINED_CSS_PROP_CONTENT
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_QUOTES
|
|
#undef CSS_PROP_QUOTES
|
|
#undef DEFINED_CSS_PROP_QUOTES
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_USERINTERFACE
|
|
#undef CSS_PROP_USERINTERFACE
|
|
#undef DEFINED_CSS_PROP_USERINTERFACE
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_UIRESET
|
|
#undef CSS_PROP_UIRESET
|
|
#undef DEFINED_CSS_PROP_UIRESET
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_TABLE
|
|
#undef CSS_PROP_TABLE
|
|
#undef DEFINED_CSS_PROP_TABLE
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_TABLEBORDER
|
|
#undef CSS_PROP_TABLEBORDER
|
|
#undef DEFINED_CSS_PROP_TABLEBORDER
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_MARGIN
|
|
#undef CSS_PROP_MARGIN
|
|
#undef DEFINED_CSS_PROP_MARGIN
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_PADDING
|
|
#undef CSS_PROP_PADDING
|
|
#undef DEFINED_CSS_PROP_PADDING
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_BORDER
|
|
#undef CSS_PROP_BORDER
|
|
#undef DEFINED_CSS_PROP_BORDER
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_OUTLINE
|
|
#undef CSS_PROP_OUTLINE
|
|
#undef DEFINED_CSS_PROP_OUTLINE
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_XUL
|
|
#undef CSS_PROP_XUL
|
|
#undef DEFINED_CSS_PROP_XUL
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_COLUMN
|
|
#undef CSS_PROP_COLUMN
|
|
#undef DEFINED_CSS_PROP_COLUMN
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_SVG
|
|
#undef CSS_PROP_SVG
|
|
#undef DEFINED_CSS_PROP_SVG
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_SVGRESET
|
|
#undef CSS_PROP_SVGRESET
|
|
#undef DEFINED_CSS_PROP_SVGRESET
|
|
#endif
|
|
#ifdef DEFINED_CSS_PROP_BACKENDONLY
|
|
#undef CSS_PROP_BACKENDONLY
|
|
#undef DEFINED_CSS_PROP_BACKENDONLY
|
|
#endif
|
|
|
|
#endif /* !defined(USED_CSS_PROP) */
|
|
|
|
#ifdef DEFINED_CSS_PROP_NOTIMPLEMENTED
|
|
#undef CSS_PROP_NOTIMPLEMENTED
|
|
#undef DEFINED_CSS_PROP_NOTIMPLEMENTED
|
|
#endif
|
|
|
|
#ifdef DEFINED_CSS_PROP_SHORTHAND
|
|
#undef CSS_PROP_SHORTHAND
|
|
#undef DEFINED_CSS_PROP_SHORTHAND
|
|
#endif
|