2007-03-22 10:30:00 -07:00
|
|
|
/* -*- 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):
|
2009-08-20 14:52:47 -07:00
|
|
|
* L. David Baron <dbaron@dbaron.org>, Mozilla Corporation
|
2007-03-22 10:30:00 -07:00
|
|
|
* 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.
|
|
|
|
|
2009-09-11 03:46:36 -07:00
|
|
|
The arguments to CSS_PROP and CSS_PROP_* are:
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2008-10-07 15:10:19 -07:00
|
|
|
4. 'flags', a bitfield containing CSS_PROPERTY_* flags.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-07 15:10:19 -07:00
|
|
|
5. 'datastruct' says which nsRuleData* struct this property goes in.
|
|
|
|
|
|
|
|
6. 'member' gives the name of the member variable in the nsRuleData
|
2007-03-22 10:30:00 -07:00
|
|
|
struct.
|
|
|
|
|
2010-08-19 12:33:44 -07:00
|
|
|
7. 'kwtable', which is either nsnull or the name of the appropriate
|
2007-03-22 10:30:00 -07:00
|
|
|
keyword table member of class nsCSSProps, for use in
|
|
|
|
nsCSSProps::LookupPropertyValue.
|
|
|
|
|
2010-08-19 12:33:44 -07:00
|
|
|
8. 'stylestruct_' [used only for CSS_PROP, not CSS_PROP_*] gives the
|
2009-09-11 03:46:36 -07:00
|
|
|
name of the style struct. Can be used to make nsStyle##stylestruct_
|
|
|
|
and eStyleStruct_##stylestruct_
|
|
|
|
|
2010-08-19 12:33:44 -07:00
|
|
|
9. 'stylestructoffset_' [not used for CSS_PROP_BACKENDONLY] gives the
|
2009-09-11 03:46:36 -07:00
|
|
|
result of offsetof(nsStyle*, member). Ignored (and generally
|
|
|
|
CSS_PROP_NO_OFFSET, or -1) for properties whose animtype_ is
|
|
|
|
eStyleAnimType_None.
|
2009-09-11 03:46:36 -07:00
|
|
|
|
2010-08-19 12:33:44 -07:00
|
|
|
10. 'animtype_' [not used for CSS_PROP_BACKENDONLY] gives the
|
2009-09-11 03:46:36 -07:00
|
|
|
animation type (see nsStyleAnimType) of this property.
|
2009-09-11 03:46:36 -07:00
|
|
|
|
2009-09-11 03:46:36 -07:00
|
|
|
CSS_PROP_SHORTHAND only takes 1-4.
|
2009-09-11 03:46:36 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
******/
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
// All includers must explicitly define CSS_PROP_SHORTHAND if they
|
|
|
|
// want it.
|
|
|
|
#ifndef CSS_PROP_SHORTHAND
|
2008-10-07 15:10:19 -07:00
|
|
|
#define CSS_PROP_SHORTHAND(name_, id_, method_, flags_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_SHORTHAND
|
|
|
|
#endif
|
|
|
|
|
2009-09-11 03:46:36 -07:00
|
|
|
#define CSS_PROP_NO_OFFSET (-1)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// 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
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_FONT(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Font, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_COLOR(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Color, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_BACKGROUND(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Background, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_LIST(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, List, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_POSITION(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Position, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_TEXT(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Text, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_TEXTRESET(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, TextReset, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_DISPLAY(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Display, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_VISIBILITY(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Visibility, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_CONTENT(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Content, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_QUOTES(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Quotes, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_USERINTERFACE(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, UserInterface, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_UIRESET(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, UIReset, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_TABLE(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Table, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_TABLEBORDER(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, TableBorder, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_MARGIN(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Margin, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_PADDING(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Padding, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_BORDER(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Border, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_OUTLINE(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Outline, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_XUL(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, XUL, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_COLUMN(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, Column, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_SVG(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, SVG, stylestructoffset_, animtype_)
|
|
|
|
#define CSS_PROP_SVGRESET(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, SVGReset, stylestructoffset_, animtype_)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// 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
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_BACKENDONLY(name_, id_, method_, flags_, datastruct_, member_, kwtable_) CSS_PROP(name_, id_, method_, flags_, datastruct_, member_, kwtable_, BackendOnly, CSS_PROP_NO_OFFSET, eStyleAnimType_None)
|
2007-03-22 10:30:00 -07:00
|
|
|
#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
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_FONT(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_FONT
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_COLOR
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_COLOR(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_COLOR
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_BACKGROUND
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_BACKGROUND(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_BACKGROUND
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_LIST
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_LIST(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_LIST
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_POSITION
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_POSITION(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_POSITION
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_TEXT
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_TEXT(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_TEXT
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_TEXTRESET
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_TEXTRESET(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_TEXTRESET
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_DISPLAY
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_DISPLAY(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_DISPLAY
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_VISIBILITY
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_VISIBILITY(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_VISIBILITY
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_CONTENT
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_CONTENT(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_CONTENT
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_QUOTES
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_QUOTES(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_QUOTES
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_USERINTERFACE
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_USERINTERFACE(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_USERINTERFACE
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_UIRESET
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_UIRESET(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_UIRESET
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_TABLE
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_TABLE(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_TABLE
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_TABLEBORDER
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_TABLEBORDER(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_TABLEBORDER
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_MARGIN
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_MARGIN(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_MARGIN
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_PADDING
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_PADDING(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_PADDING
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_BORDER
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_BORDER(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_BORDER
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_OUTLINE
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_OUTLINE(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_OUTLINE
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_XUL
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_XUL(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_XUL
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_COLUMN
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_COLUMN(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_COLUMN
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_SVG
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_SVG(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_SVG
|
|
|
|
#endif
|
|
|
|
#ifndef CSS_PROP_SVGRESET
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_SVGRESET(name_, id_, method_, flags_, datastruct_, member_, kwtable_, stylestructoffset_, animtype_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFINED_CSS_PROP_SVGRESET
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CSS_PROP_BACKENDONLY
|
2010-08-19 12:33:44 -07:00
|
|
|
#define CSS_PROP_BACKENDONLY(name_, id_, method_, flags_, datastruct_, member_, kwtable_) /* nothing */
|
2007-03-22 10:30:00 -07:00
|
|
|
#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.
|
|
|
|
|
2008-12-12 10:59:03 -08:00
|
|
|
// CSS2.1 section 5.12.1 says that the properties that apply to
|
|
|
|
// :first-line are: font properties, color properties, background
|
|
|
|
// properties, 'word-spacing', 'letter-spacing', 'text-decoration',
|
|
|
|
// 'vertical-align', 'text-transform', and 'line-height'.
|
|
|
|
//
|
|
|
|
// We also allow 'text-shadow', which was listed in CSS2 (where the
|
|
|
|
// property existed).
|
|
|
|
|
|
|
|
// CSS2.1 section 5.12.2 says that the properties that apply to
|
|
|
|
// :first-letter are: font properties, 'text-decoration',
|
|
|
|
// 'text-transform', 'letter-spacing', 'word-spacing' (when
|
|
|
|
// appropriate), 'line-height', 'float', 'vertical-align' (only if
|
|
|
|
// 'float' is 'none'), margin properties, padding properties, border
|
|
|
|
// properties, 'color', and background properties. We also allow
|
2010-09-11 09:27:12 -07:00
|
|
|
// 'text-shadow' (see above) and 'box-shadow' (which is like the
|
2008-12-12 10:59:03 -08:00
|
|
|
// border properties).
|
|
|
|
|
|
|
|
// We include '-moz-background-inline-policy' (css3-background's
|
|
|
|
// 'background-break') in both as a background property, although this
|
|
|
|
// is somewhat questionable.
|
|
|
|
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
-moz-appearance,
|
|
|
|
appearance,
|
|
|
|
MozAppearance,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mAppearance,
|
2009-09-11 03:46:36 -07:00
|
|
|
kAppearanceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-outline-radius,
|
|
|
|
_moz_outline_radius,
|
|
|
|
MozOutlineRadius,
|
|
|
|
0)
|
|
|
|
CSS_PROP_OUTLINE(
|
|
|
|
-moz-outline-radius-topleft,
|
|
|
|
_moz_outline_radius_topLeft,
|
|
|
|
MozOutlineRadiusTopleft,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mOutlineRadius.mTopLeft,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-28 20:22:27 -07:00
|
|
|
offsetof(nsStyleOutline, mOutlineRadius),
|
|
|
|
eStyleAnimType_Corner_TopLeft)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_OUTLINE(
|
|
|
|
-moz-outline-radius-topright,
|
|
|
|
_moz_outline_radius_topRight,
|
|
|
|
MozOutlineRadiusTopright,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mOutlineRadius.mTopRight,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-28 20:22:27 -07:00
|
|
|
offsetof(nsStyleOutline, mOutlineRadius),
|
|
|
|
eStyleAnimType_Corner_TopRight)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_OUTLINE(
|
|
|
|
-moz-outline-radius-bottomright,
|
|
|
|
_moz_outline_radius_bottomRight,
|
|
|
|
MozOutlineRadiusBottomright,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mOutlineRadius.mBottomRight,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-28 20:22:27 -07:00
|
|
|
offsetof(nsStyleOutline, mOutlineRadius),
|
|
|
|
eStyleAnimType_Corner_BottomRight)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_OUTLINE(
|
|
|
|
-moz-outline-radius-bottomleft,
|
|
|
|
_moz_outline_radius_bottomLeft,
|
|
|
|
MozOutlineRadiusBottomleft,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mOutlineRadius.mBottomLeft,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-28 20:22:27 -07:00
|
|
|
offsetof(nsStyleOutline, mOutlineRadius),
|
|
|
|
eStyleAnimType_Corner_BottomLeft)
|
2009-09-26 13:23:47 -07:00
|
|
|
CSS_PROP_TEXT(
|
|
|
|
-moz-tab-size,
|
|
|
|
_moz_tab_size,
|
|
|
|
MozTabSize,
|
|
|
|
0,
|
|
|
|
Text,
|
|
|
|
mTabSize,
|
|
|
|
nsnull,
|
|
|
|
offsetof(nsStyleText, mTabSize),
|
|
|
|
eStyleAnimType_None)
|
2007-06-12 11:28:56 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
-x-system-font,
|
|
|
|
_x_system_font,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mSystemFont,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFontKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
#endif
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
azimuth,
|
|
|
|
azimuth,
|
|
|
|
Azimuth,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mAzimuth,
|
|
|
|
kAzimuthKTable)
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
background,
|
|
|
|
background,
|
|
|
|
Background,
|
|
|
|
0)
|
|
|
|
CSS_PROP_BACKGROUND(
|
|
|
|
background-attachment,
|
|
|
|
background_attachment,
|
|
|
|
BackgroundAttachment,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS,
|
|
|
|
Color,
|
|
|
|
mBackAttachment,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBackgroundAttachmentKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKGROUND(
|
2010-06-08 18:44:33 -07:00
|
|
|
background-clip,
|
|
|
|
background_clip,
|
|
|
|
BackgroundClip,
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS,
|
|
|
|
Color,
|
|
|
|
mBackClip,
|
2010-06-08 18:44:32 -07:00
|
|
|
kBackgroundOriginKTable,
|
2009-09-11 03:46:36 -07:00
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKGROUND(
|
|
|
|
background-color,
|
|
|
|
background_color,
|
|
|
|
BackgroundColor,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Color,
|
|
|
|
mBackColor,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleBackground, mBackgroundColor),
|
|
|
|
eStyleAnimType_Color)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKGROUND(
|
|
|
|
background-image,
|
|
|
|
background_image,
|
|
|
|
BackgroundImage,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS |
|
2009-11-14 19:16:59 -08:00
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED |
|
|
|
|
CSS_PROPERTY_START_IMAGE_LOADS,
|
2009-07-15 17:24:24 -07:00
|
|
|
Color,
|
|
|
|
mBackImage,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKGROUND(
|
|
|
|
-moz-background-inline-policy,
|
|
|
|
_moz_background_inline_policy,
|
|
|
|
MozBackgroundInlinePolicy,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Color,
|
|
|
|
mBackInlinePolicy,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBackgroundInlinePolicyKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKGROUND(
|
2010-06-08 18:44:33 -07:00
|
|
|
background-origin,
|
|
|
|
background_origin,
|
|
|
|
BackgroundOrigin,
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS,
|
|
|
|
Color,
|
|
|
|
mBackOrigin,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBackgroundOriginKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKGROUND(
|
|
|
|
background-position,
|
|
|
|
background_position,
|
|
|
|
BackgroundPosition,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Color,
|
|
|
|
mBackPosition,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBackgroundPositionKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-12-21 13:46:25 -08:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKGROUND(
|
|
|
|
background-repeat,
|
|
|
|
background_repeat,
|
|
|
|
BackgroundRepeat,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS,
|
|
|
|
Color,
|
|
|
|
mBackRepeat,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBackgroundRepeatKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-05-28 11:09:05 -07:00
|
|
|
CSS_PROP_BACKGROUND(
|
2010-06-08 18:44:33 -07:00
|
|
|
background-size,
|
|
|
|
background_size,
|
|
|
|
BackgroundSize,
|
2009-05-28 11:09:05 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-05-28 11:09:05 -07:00
|
|
|
Color,
|
|
|
|
mBackSize,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBackgroundSizeKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-12-21 13:46:25 -08:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
-moz-binding,
|
|
|
|
binding,
|
|
|
|
MozBinding,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mBinding,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border,
|
|
|
|
border,
|
|
|
|
Border,
|
|
|
|
0)
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-bottom,
|
|
|
|
border_bottom,
|
|
|
|
BorderBottom,
|
|
|
|
0)
|
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-bottom-color,
|
|
|
|
border_bottom_color,
|
|
|
|
BorderBottomColor,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderColor.mBottom,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderColorKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-10-13 19:38:20 -07:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
-moz-border-bottom-colors,
|
|
|
|
border_bottom_colors,
|
|
|
|
MozBorderBottomColors,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderColors.mBottom,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-bottom-style,
|
|
|
|
border_bottom_style,
|
|
|
|
BorderBottomStyle,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderStyle.mBottom,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderStyleKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // on/off will need reflow
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-bottom-width,
|
|
|
|
border_bottom_width,
|
|
|
|
BorderBottomWidth,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderWidth.mBottom,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderWidthKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-10-13 19:38:20 -07:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TABLEBORDER(
|
|
|
|
border-collapse,
|
|
|
|
border_collapse,
|
|
|
|
BorderCollapse,
|
|
|
|
0,
|
|
|
|
Table,
|
|
|
|
mBorderCollapse,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderCollapseKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-color,
|
|
|
|
border_color,
|
|
|
|
BorderColor,
|
|
|
|
0)
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-border-end,
|
|
|
|
border_end,
|
|
|
|
MozBorderEnd,
|
|
|
|
0)
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-border-end-color,
|
|
|
|
border_end_color,
|
|
|
|
MozBorderEndColor,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-end-color-value,
|
|
|
|
border_end_color_value,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderEndColor,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderColorKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-border-end-style,
|
|
|
|
border_end_style,
|
|
|
|
MozBorderEndStyle,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-end-style-value,
|
|
|
|
border_end_style_value,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderEndStyle,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderStyleKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-border-end-width,
|
|
|
|
border_end_width,
|
|
|
|
MozBorderEndWidth,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-end-width-value,
|
|
|
|
border_end_width_value,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderEndWidth,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderWidthKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
-moz-border-image,
|
|
|
|
border_image,
|
|
|
|
MozBorderImage,
|
2009-11-14 19:16:59 -08:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_START_IMAGE_LOADS |
|
|
|
|
CSS_PROPERTY_IMAGE_IS_IN_ARRAY_0,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mBorderImage,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderImageKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-left,
|
|
|
|
border_left,
|
|
|
|
BorderLeft,
|
|
|
|
0)
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-left-color,
|
|
|
|
border_left_color,
|
|
|
|
BorderLeftColor,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-left-color-value,
|
|
|
|
border_left_color_value,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED |
|
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mBorderColor.mLeft,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderColorKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-10-13 19:38:20 -07:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-left-color-ltr-source,
|
|
|
|
border_left_color_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderLeftColorLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-left-color-rtl-source,
|
|
|
|
border_left_color_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderLeftColorRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
-moz-border-left-colors,
|
|
|
|
border_left_colors,
|
|
|
|
MozBorderLeftColors,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderColors.mLeft,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-left-style,
|
|
|
|
border_left_style,
|
|
|
|
BorderLeftStyle,
|
|
|
|
0) // on/off will need reflow
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-left-style-value,
|
|
|
|
border_left_style_value,
|
|
|
|
X,
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mBorderStyle.mLeft,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderStyleKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-left-style-ltr-source,
|
|
|
|
border_left_style_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mBorderLeftStyleLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-left-style-rtl-source,
|
|
|
|
border_left_style_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mBorderLeftStyleRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-left-width,
|
|
|
|
border_left_width,
|
|
|
|
BorderLeftWidth,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-left-width-value,
|
|
|
|
border_left_width_value,
|
|
|
|
X,
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mBorderWidth.mLeft,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderWidthKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-10-13 19:38:20 -07:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-left-width-ltr-source,
|
|
|
|
border_left_width_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mBorderLeftWidthLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-left-width-rtl-source,
|
|
|
|
border_left_width_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mBorderLeftWidthRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-right,
|
|
|
|
border_right,
|
|
|
|
BorderRight,
|
|
|
|
0)
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-right-color,
|
|
|
|
border_right_color,
|
|
|
|
BorderRightColor,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-right-color-value,
|
|
|
|
border_right_color_value,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED |
|
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mBorderColor.mRight,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderColorKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-10-13 19:38:20 -07:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-right-color-ltr-source,
|
|
|
|
border_right_color_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderRightColorLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-right-color-rtl-source,
|
|
|
|
border_right_color_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderRightColorRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
-moz-border-right-colors,
|
|
|
|
border_right_colors,
|
|
|
|
MozBorderRightColors,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderColors.mRight,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-right-style,
|
|
|
|
border_right_style,
|
|
|
|
BorderRightStyle,
|
|
|
|
0) // on/off will need reflow
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-right-style-value,
|
|
|
|
border_right_style_value,
|
|
|
|
X,
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mBorderStyle.mRight,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderStyleKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-right-style-ltr-source,
|
|
|
|
border_right_style_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mBorderRightStyleLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-right-style-rtl-source,
|
|
|
|
border_right_style_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mBorderRightStyleRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-right-width,
|
|
|
|
border_right_width,
|
|
|
|
BorderRightWidth,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-right-width-value,
|
|
|
|
border_right_width_value,
|
|
|
|
X,
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mBorderWidth.mRight,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderWidthKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-10-13 19:38:20 -07:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-right-width-ltr-source,
|
|
|
|
border_right_width_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mBorderRightWidthLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-right-width-rtl-source,
|
|
|
|
border_right_width_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mBorderRightWidthRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TABLEBORDER(
|
|
|
|
border-spacing,
|
|
|
|
border_spacing,
|
|
|
|
BorderSpacing,
|
|
|
|
0,
|
|
|
|
Table,
|
|
|
|
mBorderSpacing,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-12-11 08:13:19 -08:00
|
|
|
eStyleAnimType_Custom) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-border-start,
|
|
|
|
border_start,
|
|
|
|
MozBorderStart,
|
|
|
|
0)
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-border-start-color,
|
|
|
|
border_start_color,
|
|
|
|
MozBorderStartColor,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-start-color-value,
|
|
|
|
border_start_color_value,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderStartColor,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderColorKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-border-start-style,
|
|
|
|
border_start_style,
|
|
|
|
MozBorderStartStyle,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-start-style-value,
|
|
|
|
border_start_style_value,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderStartStyle,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderStyleKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-07-04 11:51:16 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-border-start-width,
|
|
|
|
border_start_width,
|
|
|
|
MozBorderStartWidth,
|
|
|
|
0)
|
2007-07-04 11:51:16 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-start-width-value,
|
|
|
|
border_start_width_value,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderStartWidth,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderWidthKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
#endif
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-style,
|
|
|
|
border_style,
|
|
|
|
BorderStyle,
|
|
|
|
0) // on/off will need reflow
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-top,
|
|
|
|
border_top,
|
|
|
|
BorderTop,
|
|
|
|
0)
|
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-top-color,
|
|
|
|
border_top_color,
|
|
|
|
BorderTopColor,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderColor.mTop,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderColorKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-10-13 19:38:20 -07:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
-moz-border-top-colors,
|
|
|
|
border_top_colors,
|
|
|
|
MozBorderTopColors,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mBorderColors.mTop,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-top-style,
|
|
|
|
border_top_style,
|
|
|
|
BorderTopStyle,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderStyle.mTop,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderStyleKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // on/off will need reflow
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-top-width,
|
|
|
|
border_top_width,
|
|
|
|
BorderTopWidth,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Margin,
|
|
|
|
mBorderWidth.mTop,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderWidthKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-10-13 19:38:20 -07:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-width,
|
|
|
|
border_width,
|
|
|
|
BorderWidth,
|
|
|
|
0)
|
2010-09-09 08:21:48 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
border-radius,
|
|
|
|
border_radius,
|
|
|
|
BorderRadius,
|
|
|
|
0)
|
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-top-left-radius,
|
|
|
|
border_top_left_radius,
|
|
|
|
BorderTopLeftRadius,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2010-09-09 08:21:48 -07:00
|
|
|
Margin,
|
|
|
|
mBorderRadius.mTopLeft,
|
|
|
|
nsnull,
|
|
|
|
offsetof(nsStyleBorder, mBorderRadius),
|
|
|
|
eStyleAnimType_Corner_TopLeft)
|
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-top-right-radius,
|
|
|
|
border_top_right_radius,
|
|
|
|
BorderTopRightRadius,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2010-09-09 08:21:48 -07:00
|
|
|
Margin,
|
|
|
|
mBorderRadius.mTopRight,
|
|
|
|
nsnull,
|
|
|
|
offsetof(nsStyleBorder, mBorderRadius),
|
|
|
|
eStyleAnimType_Corner_TopRight)
|
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-bottom-right-radius,
|
|
|
|
border_bottom_right_radius,
|
|
|
|
BorderBottomRightRadius,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2010-09-09 08:21:48 -07:00
|
|
|
Margin,
|
|
|
|
mBorderRadius.mBottomRight,
|
|
|
|
nsnull,
|
|
|
|
offsetof(nsStyleBorder, mBorderRadius),
|
|
|
|
eStyleAnimType_Corner_BottomRight)
|
|
|
|
CSS_PROP_BORDER(
|
|
|
|
border-bottom-left-radius,
|
|
|
|
border_bottom_left_radius,
|
|
|
|
BorderBottomLeftRadius,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2010-09-09 08:21:48 -07:00
|
|
|
Margin,
|
|
|
|
mBorderRadius.mBottomLeft,
|
|
|
|
nsnull,
|
|
|
|
offsetof(nsStyleBorder, mBorderRadius),
|
|
|
|
eStyleAnimType_Corner_BottomLeft)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_POSITION(
|
|
|
|
bottom,
|
|
|
|
bottom,
|
|
|
|
Bottom,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mOffset.mBottom,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mOffset),
|
|
|
|
eStyleAnimType_Sides_Bottom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
2010-09-11 09:27:12 -07:00
|
|
|
box-shadow,
|
2009-07-15 17:24:24 -07:00
|
|
|
box_shadow,
|
2010-09-11 09:27:13 -07:00
|
|
|
BoxShadow,
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
2009-07-20 04:04:42 -07:00
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mBoxShadow,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxShadowTypeKTable,
|
2009-10-21 03:53:46 -07:00
|
|
|
offsetof(nsStyleBorder, mBoxShadow),
|
|
|
|
eStyleAnimType_Shadow)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_POSITION(
|
|
|
|
-moz-box-sizing,
|
|
|
|
box_sizing,
|
|
|
|
MozBoxSizing,
|
|
|
|
0,
|
|
|
|
Position,
|
|
|
|
mBoxSizing,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxSizingKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TABLEBORDER(
|
|
|
|
caption-side,
|
|
|
|
caption_side,
|
|
|
|
CaptionSide,
|
|
|
|
0,
|
|
|
|
Table,
|
|
|
|
mCaptionSide,
|
2009-09-11 03:46:36 -07:00
|
|
|
kCaptionSideKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
clear,
|
|
|
|
clear,
|
|
|
|
Clear,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mClear,
|
2009-09-11 03:46:36 -07:00
|
|
|
kClearKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
clip,
|
|
|
|
clip,
|
|
|
|
Clip,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mClip,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-12-21 13:46:25 -08:00
|
|
|
offsetof(nsStyleDisplay, mClip),
|
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_COLOR(
|
|
|
|
color,
|
|
|
|
color,
|
|
|
|
Color,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Color,
|
|
|
|
mColor,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleColor, mColor),
|
|
|
|
eStyleAnimType_Color)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_COLUMN(
|
|
|
|
-moz-column-count,
|
|
|
|
_moz_column_count,
|
|
|
|
MozColumnCount,
|
|
|
|
0,
|
|
|
|
Column,
|
|
|
|
mColumnCount,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-12-11 08:13:19 -08:00
|
|
|
offsetof(nsStyleColumn, mColumnCount),
|
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_COLUMN(
|
|
|
|
-moz-column-width,
|
|
|
|
_moz_column_width,
|
|
|
|
MozColumnWidth,
|
|
|
|
0,
|
|
|
|
Column,
|
|
|
|
mColumnWidth,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleColumn, mColumnWidth),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_COLUMN(
|
|
|
|
-moz-column-gap,
|
|
|
|
_moz_column_gap,
|
|
|
|
MozColumnGap,
|
|
|
|
0,
|
|
|
|
Column,
|
|
|
|
mColumnGap,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleColumn, mColumnGap),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-column-rule,
|
|
|
|
_moz_column_rule,
|
|
|
|
MozColumnRule,
|
|
|
|
0)
|
|
|
|
CSS_PROP_COLUMN(
|
|
|
|
-moz-column-rule-color,
|
|
|
|
_moz_column_rule_color,
|
|
|
|
MozColumnRuleColor,
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Column,
|
|
|
|
mColumnRuleColor,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2010-04-06 19:03:12 -07:00
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_COLUMN(
|
|
|
|
-moz-column-rule-style,
|
|
|
|
_moz_column_rule_style,
|
|
|
|
MozColumnRuleStyle,
|
|
|
|
0,
|
|
|
|
Column,
|
|
|
|
mColumnRuleStyle,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderStyleKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_COLUMN(
|
|
|
|
-moz-column-rule-width,
|
|
|
|
_moz_column_rule_width,
|
|
|
|
MozColumnRuleWidth,
|
|
|
|
0,
|
|
|
|
Column,
|
|
|
|
mColumnRuleWidth,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderWidthKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-12-11 08:13:19 -08:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_CONTENT(
|
|
|
|
content,
|
|
|
|
content,
|
|
|
|
Content,
|
2009-11-14 19:16:59 -08:00
|
|
|
CSS_PROPERTY_START_IMAGE_LOADS,
|
2009-07-15 17:24:24 -07:00
|
|
|
Content,
|
|
|
|
mContent,
|
2009-09-11 03:46:36 -07:00
|
|
|
kContentKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_CONTENT(
|
|
|
|
counter-increment,
|
|
|
|
counter_increment,
|
|
|
|
CounterIncrement,
|
|
|
|
0,
|
|
|
|
Content,
|
|
|
|
mCounterIncrement,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 137285
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_CONTENT(
|
|
|
|
counter-reset,
|
|
|
|
counter_reset,
|
|
|
|
CounterReset,
|
|
|
|
0,
|
|
|
|
Content,
|
|
|
|
mCounterReset,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 137285
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
cue,
|
|
|
|
cue,
|
|
|
|
Cue,
|
|
|
|
0)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
cue-after,
|
|
|
|
cue_after,
|
|
|
|
CueAfter,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mCueAfter,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
cue-before,
|
|
|
|
cue_before,
|
|
|
|
CueBefore,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mCueBefore,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_USERINTERFACE(
|
|
|
|
cursor,
|
|
|
|
cursor,
|
|
|
|
Cursor,
|
2009-11-14 19:16:59 -08:00
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS |
|
|
|
|
CSS_PROPERTY_START_IMAGE_LOADS |
|
|
|
|
CSS_PROPERTY_IMAGE_IS_IN_ARRAY_0,
|
2009-07-15 17:24:24 -07:00
|
|
|
UserInterface,
|
|
|
|
mCursor,
|
2009-09-11 03:46:36 -07:00
|
|
|
kCursorKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_VISIBILITY(
|
|
|
|
direction,
|
|
|
|
direction,
|
|
|
|
Direction,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mDirection,
|
2009-09-11 03:46:36 -07:00
|
|
|
kDirectionKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
display,
|
|
|
|
display,
|
|
|
|
Display,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mDisplay,
|
2009-09-11 03:46:36 -07:00
|
|
|
kDisplayKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleDisplay, mDisplay),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
elevation,
|
|
|
|
elevation,
|
|
|
|
Elevation,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mElevation,
|
|
|
|
kElevationKTable)
|
|
|
|
CSS_PROP_TABLEBORDER(
|
|
|
|
empty-cells,
|
|
|
|
empty_cells,
|
|
|
|
EmptyCells,
|
|
|
|
0,
|
|
|
|
Table,
|
|
|
|
mEmptyCells,
|
2009-09-11 03:46:36 -07:00
|
|
|
kEmptyCellsKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
float,
|
|
|
|
float,
|
|
|
|
CssFloat,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER,
|
|
|
|
Display,
|
|
|
|
mFloat,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFloatKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BORDER(
|
|
|
|
-moz-float-edge,
|
|
|
|
float_edge,
|
|
|
|
MozFloatEdge,
|
|
|
|
0,
|
|
|
|
Margin,
|
|
|
|
mFloatEdge,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFloatEdgeKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
font,
|
|
|
|
font,
|
|
|
|
Font,
|
|
|
|
0)
|
|
|
|
CSS_PROP_FONT(
|
|
|
|
font-family,
|
|
|
|
font_family,
|
|
|
|
FontFamily,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mFamily,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2010-07-13 13:30:42 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
-moz-font-feature-settings,
|
|
|
|
font_feature_settings,
|
|
|
|
MozFontFeatureSettings,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mFontFeatureSettings,
|
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
|
|
|
CSS_PROP_FONT(
|
|
|
|
-moz-font-language-override,
|
|
|
|
font_language_override,
|
|
|
|
MozFontLanguageOverride,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mFontLanguageOverride,
|
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
font-size,
|
|
|
|
font_size,
|
|
|
|
FontSize,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mSize,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFontSizeKTable,
|
2009-09-11 03:46:36 -07:00
|
|
|
// Note that mSize is the correct place for *reading* the computed value,
|
|
|
|
// but setting it requires setting mFont.size as well.
|
|
|
|
offsetof(nsStyleFont, mSize),
|
|
|
|
eStyleAnimType_nscoord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
font-size-adjust,
|
|
|
|
font_size_adjust,
|
|
|
|
FontSizeAdjust,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mSizeAdjust,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-08 18:30:51 -07:00
|
|
|
offsetof(nsStyleFont, mFont.sizeAdjust),
|
|
|
|
eStyleAnimType_float)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
font-stretch,
|
|
|
|
font_stretch,
|
|
|
|
FontStretch,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mStretch,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFontStretchKTable,
|
2009-11-14 19:16:59 -08:00
|
|
|
offsetof(nsStyleFont, mFont.stretch),
|
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
font-style,
|
|
|
|
font_style,
|
|
|
|
FontStyle,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mStyle,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFontStyleKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleFont, mFont.style),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
font-variant,
|
|
|
|
font_variant,
|
|
|
|
FontVariant,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mVariant,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFontVariantKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleFont, mFont.variant),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
font-weight,
|
|
|
|
font_weight,
|
|
|
|
FontWeight,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Font,
|
|
|
|
mWeight,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFontWeightKTable,
|
2009-11-14 19:16:59 -08:00
|
|
|
offsetof(nsStyleFont, mFont.weight),
|
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_UIRESET(
|
|
|
|
-moz-force-broken-image-icon,
|
|
|
|
force_broken_image_icon,
|
|
|
|
MozForceBrokenImageIcon,
|
|
|
|
0,
|
|
|
|
UserInterface,
|
|
|
|
mForceBrokenImageIcon,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // bug 58646
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_POSITION(
|
|
|
|
height,
|
|
|
|
height,
|
|
|
|
Height,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mHeight,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mHeight),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_LIST(
|
|
|
|
-moz-image-region,
|
|
|
|
image_region,
|
|
|
|
MozImageRegion,
|
|
|
|
0,
|
|
|
|
List,
|
|
|
|
mImageRegion,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-12-21 13:46:25 -08:00
|
|
|
offsetof(nsStyleList, mImageRegion),
|
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_UIRESET(
|
|
|
|
ime-mode,
|
|
|
|
ime_mode,
|
|
|
|
ImeMode,
|
|
|
|
0,
|
|
|
|
UserInterface,
|
|
|
|
mIMEMode,
|
2009-09-11 03:46:36 -07:00
|
|
|
kIMEModeKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_POSITION(
|
|
|
|
left,
|
|
|
|
left,
|
|
|
|
Left,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mOffset.mLeft,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mOffset),
|
|
|
|
eStyleAnimType_Sides_Left)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXT(
|
|
|
|
letter-spacing,
|
|
|
|
letter_spacing,
|
|
|
|
LetterSpacing,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Text,
|
|
|
|
mLetterSpacing,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleText, mLetterSpacing),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXT(
|
|
|
|
line-height,
|
|
|
|
line_height,
|
|
|
|
LineHeight,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Text,
|
|
|
|
mLineHeight,
|
2009-09-11 03:46:36 -07:00
|
|
|
kLineHeightKTable,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleText, mLineHeight),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
list-style,
|
|
|
|
list_style,
|
|
|
|
ListStyle,
|
|
|
|
0)
|
|
|
|
CSS_PROP_LIST(
|
|
|
|
list-style-image,
|
|
|
|
list_style_image,
|
|
|
|
ListStyleImage,
|
2009-11-14 19:16:59 -08:00
|
|
|
CSS_PROPERTY_START_IMAGE_LOADS,
|
2009-07-15 17:24:24 -07:00
|
|
|
List,
|
|
|
|
mImage,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_LIST(
|
|
|
|
list-style-position,
|
|
|
|
list_style_position,
|
|
|
|
ListStylePosition,
|
|
|
|
0,
|
|
|
|
List,
|
|
|
|
mPosition,
|
2009-09-11 03:46:36 -07:00
|
|
|
kListStylePositionKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_LIST(
|
|
|
|
list-style-type,
|
|
|
|
list_style_type,
|
|
|
|
ListStyleType,
|
|
|
|
0,
|
|
|
|
List,
|
|
|
|
mType,
|
2009-09-11 03:46:36 -07:00
|
|
|
kListStyleKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
margin,
|
|
|
|
margin,
|
|
|
|
Margin,
|
|
|
|
0)
|
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-bottom,
|
|
|
|
margin_bottom,
|
|
|
|
MarginBottom,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mMargin.mBottom,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleMargin, mMargin),
|
|
|
|
eStyleAnimType_Sides_Bottom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-margin-end,
|
|
|
|
margin_end,
|
|
|
|
MozMarginEnd,
|
|
|
|
0)
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-end-value,
|
|
|
|
margin_end_value,
|
|
|
|
X,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mMarginEnd,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
margin-left,
|
|
|
|
margin_left,
|
|
|
|
MarginLeft,
|
|
|
|
0)
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-left-value,
|
|
|
|
margin_left_value,
|
|
|
|
X,
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mMargin.mLeft,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleMargin, mMargin),
|
|
|
|
eStyleAnimType_Sides_Left)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-left-ltr-source,
|
|
|
|
margin_left_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mMarginLeftLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-left-rtl-source,
|
|
|
|
margin_left_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mMarginLeftRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
margin-right,
|
|
|
|
margin_right,
|
|
|
|
MarginRight,
|
|
|
|
0)
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-right-value,
|
|
|
|
margin_right_value,
|
|
|
|
X,
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mMargin.mRight,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleMargin, mMargin),
|
|
|
|
eStyleAnimType_Sides_Right)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-right-ltr-source,
|
|
|
|
margin_right_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mMarginRightLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-right-rtl-source,
|
|
|
|
margin_right_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mMarginRightRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-margin-start,
|
|
|
|
margin_start,
|
|
|
|
MozMarginStart,
|
|
|
|
0)
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-start-value,
|
|
|
|
margin_start_value,
|
|
|
|
X,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mMarginStart,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
#endif
|
|
|
|
CSS_PROP_MARGIN(
|
|
|
|
margin-top,
|
|
|
|
margin_top,
|
|
|
|
MarginTop,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mMargin.mTop,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleMargin, mMargin),
|
|
|
|
eStyleAnimType_Sides_Top)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_CONTENT(
|
|
|
|
marker-offset,
|
|
|
|
marker_offset,
|
|
|
|
MarkerOffset,
|
|
|
|
0,
|
|
|
|
Content,
|
|
|
|
mMarkerOffset,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleContent, mMarkerOffset),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
marks,
|
|
|
|
marks,
|
|
|
|
Marks,
|
|
|
|
0,
|
|
|
|
Page,
|
|
|
|
mMarks,
|
|
|
|
kPageMarksKTable)
|
|
|
|
CSS_PROP_POSITION(
|
|
|
|
max-height,
|
|
|
|
max_height,
|
|
|
|
MaxHeight,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mMaxHeight,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mMaxHeight),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_POSITION(
|
|
|
|
max-width,
|
|
|
|
max_width,
|
|
|
|
MaxWidth,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mMaxWidth,
|
2009-09-11 03:46:36 -07:00
|
|
|
kWidthKTable,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mMaxWidth),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_POSITION(
|
|
|
|
min-height,
|
|
|
|
min_height,
|
|
|
|
MinHeight,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mMinHeight,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mMinHeight),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_POSITION(
|
|
|
|
min-width,
|
|
|
|
min_width,
|
|
|
|
MinWidth,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mMinWidth,
|
2009-09-11 03:46:36 -07:00
|
|
|
kWidthKTable,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mMinWidth),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
opacity,
|
|
|
|
opacity,
|
|
|
|
Opacity,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mOpacity,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-08 18:30:49 -07:00
|
|
|
offsetof(nsStyleDisplay, mOpacity),
|
|
|
|
eStyleAnimType_float) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
orphans,
|
|
|
|
orphans,
|
|
|
|
Orphans,
|
|
|
|
0,
|
|
|
|
Breaks,
|
|
|
|
mOrphans,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
outline,
|
|
|
|
outline,
|
|
|
|
Outline,
|
|
|
|
0)
|
|
|
|
CSS_PROP_OUTLINE(
|
|
|
|
outline-color,
|
|
|
|
outline_color,
|
|
|
|
OutlineColor,
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Margin,
|
|
|
|
mOutlineColor,
|
2009-09-11 03:46:36 -07:00
|
|
|
kOutlineColorKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-10-13 19:38:20 -07:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_OUTLINE(
|
|
|
|
outline-style,
|
|
|
|
outline_style,
|
|
|
|
OutlineStyle,
|
|
|
|
0,
|
|
|
|
Margin,
|
|
|
|
mOutlineStyle,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderStyleKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_OUTLINE(
|
|
|
|
outline-width,
|
|
|
|
outline_width,
|
|
|
|
OutlineWidth,
|
|
|
|
0,
|
|
|
|
Margin,
|
|
|
|
mOutlineWidth,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBorderWidthKTable,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleOutline, mOutlineWidth),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_OUTLINE(
|
|
|
|
outline-offset,
|
|
|
|
outline_offset,
|
|
|
|
OutlineOffset,
|
|
|
|
0,
|
|
|
|
Margin,
|
|
|
|
mOutlineOffset,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleOutline, mOutlineOffset),
|
|
|
|
eStyleAnimType_nscoord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
overflow,
|
|
|
|
overflow,
|
|
|
|
Overflow,
|
|
|
|
0)
|
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
overflow-x,
|
|
|
|
overflow_x,
|
|
|
|
OverflowX,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mOverflowX,
|
2009-09-11 03:46:36 -07:00
|
|
|
kOverflowSubKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
overflow-y,
|
|
|
|
overflow_y,
|
|
|
|
OverflowY,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mOverflowY,
|
2009-09-11 03:46:36 -07:00
|
|
|
kOverflowSubKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
padding,
|
|
|
|
padding,
|
|
|
|
Padding,
|
|
|
|
0)
|
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-bottom,
|
|
|
|
padding_bottom,
|
|
|
|
PaddingBottom,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mPadding.mBottom,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePadding, mPadding),
|
|
|
|
eStyleAnimType_Sides_Bottom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-padding-end,
|
|
|
|
padding_end,
|
|
|
|
MozPaddingEnd,
|
|
|
|
0)
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-end-value,
|
|
|
|
padding_end_value,
|
|
|
|
X,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mPaddingEnd,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
padding-left,
|
|
|
|
padding_left,
|
|
|
|
PaddingLeft,
|
|
|
|
0)
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-left-value,
|
|
|
|
padding_left_value,
|
|
|
|
X,
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mPadding.mLeft,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePadding, mPadding),
|
|
|
|
eStyleAnimType_Sides_Left)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-left-ltr-source,
|
|
|
|
padding_left_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mPaddingLeftLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-left-rtl-source,
|
|
|
|
padding_left_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mPaddingLeftRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
padding-right,
|
|
|
|
padding_right,
|
|
|
|
PaddingRight,
|
|
|
|
0)
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-right-value,
|
|
|
|
padding_right_value,
|
|
|
|
X,
|
2009-12-23 11:10:31 -08:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_REPORT_OTHER_NAME |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mPadding.mRight,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePadding, mPadding),
|
|
|
|
eStyleAnimType_Sides_Right)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-right-ltr-source,
|
|
|
|
padding_right_ltr_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mPaddingRightLTRSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-right-rtl-source,
|
|
|
|
padding_right_rtl_source,
|
|
|
|
X,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_DIRECTIONAL_SOURCE,
|
|
|
|
Margin,
|
|
|
|
mPaddingRightRTLSource,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPropSourceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-padding-start,
|
|
|
|
padding_start,
|
|
|
|
MozPaddingStart,
|
|
|
|
0)
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-start-value,
|
|
|
|
padding_start_value,
|
|
|
|
X,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mPaddingStart,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
#endif
|
|
|
|
CSS_PROP_PADDING(
|
|
|
|
padding-top,
|
|
|
|
padding_top,
|
|
|
|
PaddingTop,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Margin,
|
|
|
|
mPadding.mTop,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePadding, mPadding),
|
|
|
|
eStyleAnimType_Sides_Top)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
page,
|
|
|
|
page,
|
|
|
|
Page,
|
|
|
|
0,
|
|
|
|
Breaks,
|
|
|
|
mPage,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
page-break-after,
|
|
|
|
page_break_after,
|
|
|
|
PageBreakAfter,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mBreakAfter,
|
2009-09-11 03:46:36 -07:00
|
|
|
kPageBreakKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // temp fix for bug 24000
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
page-break-before,
|
|
|
|
page_break_before,
|
|
|
|
PageBreakBefore,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mBreakBefore,
|
2009-09-11 03:46:36 -07:00
|
|
|
kPageBreakKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // temp fix for bug 24000
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
page-break-inside,
|
|
|
|
page_break_inside,
|
|
|
|
PageBreakInside,
|
|
|
|
0,
|
|
|
|
Breaks,
|
|
|
|
mPageBreakInside,
|
|
|
|
kPageBreakInsideKTable)
|
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
pause,
|
|
|
|
pause,
|
|
|
|
Pause,
|
|
|
|
0)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
pause-after,
|
|
|
|
pause_after,
|
|
|
|
PauseAfter,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mPauseAfter,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
pause-before,
|
|
|
|
pause_before,
|
|
|
|
PauseBefore,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mPauseBefore,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
pitch,
|
|
|
|
pitch,
|
|
|
|
Pitch,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mPitch,
|
|
|
|
kPitchKTable)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
pitch-range,
|
|
|
|
pitch_range,
|
|
|
|
PitchRange,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mPitchRange,
|
|
|
|
nsnull)
|
2009-08-26 20:53:35 -07:00
|
|
|
CSS_PROP_VISIBILITY(
|
|
|
|
pointer-events,
|
|
|
|
pointer_events,
|
|
|
|
PointerEvents,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mPointerEvents,
|
2009-09-11 03:46:36 -07:00
|
|
|
kPointerEventsKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleVisibility, mPointerEvents),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
position,
|
|
|
|
position,
|
|
|
|
Position,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mPosition,
|
2009-09-11 03:46:36 -07:00
|
|
|
kPositionKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_QUOTES(
|
|
|
|
quotes,
|
|
|
|
quotes,
|
|
|
|
Quotes,
|
|
|
|
0,
|
|
|
|
Content,
|
|
|
|
mQuotes,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2010-03-19 04:49:33 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
resize,
|
2010-07-05 07:41:04 -07:00
|
|
|
resize,
|
|
|
|
Resize,
|
2010-03-19 04:49:33 -07:00
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mResize,
|
|
|
|
kResizeKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
richness,
|
|
|
|
richness,
|
|
|
|
Richness,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mRichness,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_POSITION(
|
|
|
|
right,
|
|
|
|
right,
|
|
|
|
Right,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mOffset.mRight,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mOffset),
|
|
|
|
eStyleAnimType_Sides_Right)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
size,
|
|
|
|
size,
|
|
|
|
Size,
|
|
|
|
0,
|
|
|
|
Page,
|
|
|
|
mSize,
|
|
|
|
kPageSizeKTable)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
speak,
|
|
|
|
speak,
|
|
|
|
Speak,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mSpeak,
|
|
|
|
kSpeakKTable)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
speak-header,
|
|
|
|
speak_header,
|
|
|
|
SpeakHeader,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mSpeakHeader,
|
|
|
|
kSpeakHeaderKTable)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
speak-numeral,
|
|
|
|
speak_numeral,
|
|
|
|
SpeakNumeral,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mSpeakNumeral,
|
|
|
|
kSpeakNumeralKTable)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
speak-punctuation,
|
|
|
|
speak_punctuation,
|
|
|
|
SpeakPunctuation,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mSpeakPunctuation,
|
|
|
|
kSpeakPunctuationKTable)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
speech-rate,
|
|
|
|
speech_rate,
|
|
|
|
SpeechRate,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mSpeechRate,
|
|
|
|
kSpeechRateKTable)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
stress,
|
|
|
|
stress,
|
|
|
|
Stress,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mStress,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_TABLE(
|
|
|
|
table-layout,
|
|
|
|
table_layout,
|
|
|
|
TableLayout,
|
|
|
|
0,
|
|
|
|
Table,
|
|
|
|
mLayout,
|
2009-09-11 03:46:36 -07:00
|
|
|
kTableLayoutKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXT(
|
|
|
|
text-align,
|
|
|
|
text_align,
|
|
|
|
TextAlign,
|
|
|
|
0,
|
|
|
|
Text,
|
|
|
|
mTextAlign,
|
2009-09-11 03:46:36 -07:00
|
|
|
kTextAlignKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXTRESET(
|
|
|
|
text-decoration,
|
|
|
|
text_decoration,
|
|
|
|
TextDecoration,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Text,
|
|
|
|
mDecoration,
|
2009-09-11 03:46:36 -07:00
|
|
|
kTextDecorationKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleTextReset, mTextDecoration),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXT(
|
|
|
|
text-indent,
|
|
|
|
text_indent,
|
|
|
|
TextIndent,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Text,
|
|
|
|
mTextIndent,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleText, mTextIndent),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXT(
|
|
|
|
text-shadow,
|
|
|
|
text_shadow,
|
|
|
|
TextShadow,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS |
|
|
|
|
CSS_PROPERTY_IGNORED_WHEN_COLORS_DISABLED,
|
|
|
|
Text,
|
|
|
|
mTextShadow,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-21 03:53:46 -07:00
|
|
|
offsetof(nsStyleText, mTextShadow),
|
|
|
|
eStyleAnimType_Shadow)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXT(
|
|
|
|
text-transform,
|
|
|
|
text_transform,
|
|
|
|
TextTransform,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Text,
|
|
|
|
mTextTransform,
|
2009-09-11 03:46:36 -07:00
|
|
|
kTextTransformKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
-moz-transform,
|
|
|
|
_moz_transform,
|
|
|
|
MozTransform,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mTransform,
|
2009-09-11 03:46:36 -07:00
|
|
|
kDisplayKTable,
|
2010-07-02 21:18:56 -07:00
|
|
|
offsetof(nsStyleDisplay, mSpecifiedTransform),
|
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
-moz-transform-origin,
|
|
|
|
_moz_transform_origin,
|
|
|
|
MozTransformOrigin,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Display,
|
|
|
|
mTransformOrigin,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBackgroundPositionKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
2009-12-11 08:13:19 -08:00
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_POSITION(
|
|
|
|
top,
|
|
|
|
top,
|
|
|
|
Top,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mOffset.mTop,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mOffset),
|
|
|
|
eStyleAnimType_Sides_Top)
|
2009-08-20 14:52:47 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
-moz-transition,
|
|
|
|
transition,
|
|
|
|
MozTransition,
|
|
|
|
0)
|
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
-moz-transition-delay,
|
|
|
|
transition_delay,
|
|
|
|
MozTransitionDelay,
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS,
|
|
|
|
Display,
|
|
|
|
mTransitionDelay,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-08-20 14:52:47 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
-moz-transition-duration,
|
|
|
|
transition_duration,
|
|
|
|
MozTransitionDuration,
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS,
|
|
|
|
Display,
|
|
|
|
mTransitionDuration,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-08-20 14:52:47 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
-moz-transition-property,
|
|
|
|
transition_property,
|
|
|
|
MozTransitionProperty,
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS,
|
|
|
|
Display,
|
|
|
|
mTransitionProperty,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-08-20 14:52:47 -07:00
|
|
|
CSS_PROP_DISPLAY(
|
|
|
|
-moz-transition-timing-function,
|
|
|
|
transition_timing_function,
|
|
|
|
MozTransitionTimingFunction,
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS,
|
|
|
|
Display,
|
|
|
|
mTransitionTimingFunction,
|
2009-09-11 03:46:36 -07:00
|
|
|
kTransitionTimingFunctionKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXTRESET(
|
|
|
|
unicode-bidi,
|
|
|
|
unicode_bidi,
|
|
|
|
UnicodeBidi,
|
|
|
|
0,
|
|
|
|
Text,
|
|
|
|
mUnicodeBidi,
|
2009-09-11 03:46:36 -07:00
|
|
|
kUnicodeBidiKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_USERINTERFACE(
|
|
|
|
-moz-user-focus,
|
|
|
|
user_focus,
|
|
|
|
MozUserFocus,
|
|
|
|
0,
|
|
|
|
UserInterface,
|
|
|
|
mUserFocus,
|
2009-09-11 03:46:36 -07:00
|
|
|
kUserFocusKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_USERINTERFACE(
|
|
|
|
-moz-user-input,
|
|
|
|
user_input,
|
|
|
|
MozUserInput,
|
|
|
|
0,
|
|
|
|
UserInterface,
|
|
|
|
mUserInput,
|
2009-09-11 03:46:36 -07:00
|
|
|
kUserInputKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX ??? // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_USERINTERFACE(
|
|
|
|
-moz-user-modify,
|
|
|
|
user_modify,
|
|
|
|
MozUserModify,
|
|
|
|
0,
|
|
|
|
UserInterface,
|
|
|
|
mUserModify,
|
2009-09-11 03:46:36 -07:00
|
|
|
kUserModifyKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_UIRESET(
|
|
|
|
-moz-user-select,
|
|
|
|
user_select,
|
|
|
|
MozUserSelect,
|
|
|
|
0,
|
|
|
|
UserInterface,
|
|
|
|
mUserSelect,
|
2009-09-11 03:46:36 -07:00
|
|
|
kUserSelectKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2008-12-12 10:59:03 -08:00
|
|
|
// NOTE: vertical-align is only supposed to apply to :first-letter when
|
|
|
|
// 'float' is 'none', but we don't worry about that since it has no
|
|
|
|
// effect otherwise
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXTRESET(
|
|
|
|
vertical-align,
|
|
|
|
vertical_align,
|
|
|
|
VerticalAlign,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE |
|
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Text,
|
|
|
|
mVerticalAlign,
|
2009-09-11 03:46:36 -07:00
|
|
|
kVerticalAlignKTable,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleTextReset, mVerticalAlign),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_VISIBILITY(
|
|
|
|
visibility,
|
|
|
|
visibility,
|
|
|
|
Visibility,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mVisibility,
|
2009-09-11 03:46:36 -07:00
|
|
|
kVisibilityKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleVisibility, mVisible),
|
|
|
|
eStyleAnimType_EnumU8) // reflow for collapse
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
voice-family,
|
|
|
|
voice_family,
|
|
|
|
VoiceFamily,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mVoiceFamily,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
volume,
|
|
|
|
volume,
|
|
|
|
Volume,
|
|
|
|
0,
|
|
|
|
Aural,
|
|
|
|
mVolume,
|
|
|
|
kVolumeKTable)
|
|
|
|
CSS_PROP_TEXT(
|
|
|
|
white-space,
|
|
|
|
white_space,
|
|
|
|
WhiteSpace,
|
|
|
|
0,
|
|
|
|
Text,
|
|
|
|
mWhiteSpace,
|
2009-09-11 03:46:36 -07:00
|
|
|
kWhitespaceKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_BACKENDONLY(
|
|
|
|
widows,
|
|
|
|
widows,
|
|
|
|
Widows,
|
|
|
|
0,
|
|
|
|
Breaks,
|
|
|
|
mWidows,
|
|
|
|
nsnull)
|
|
|
|
CSS_PROP_POSITION(
|
|
|
|
width,
|
|
|
|
width,
|
|
|
|
Width,
|
2010-09-15 08:11:26 -07:00
|
|
|
CSS_PROPERTY_STORES_CALC,
|
2009-07-15 17:24:24 -07:00
|
|
|
Position,
|
|
|
|
mWidth,
|
2009-09-11 03:46:36 -07:00
|
|
|
kWidthKTable,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStylePosition, mWidth),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_UIRESET(
|
|
|
|
-moz-window-shadow,
|
|
|
|
_moz_window_shadow,
|
|
|
|
MozWindowShadow,
|
|
|
|
0,
|
|
|
|
UserInterface,
|
|
|
|
mWindowShadow,
|
2009-09-11 03:46:36 -07:00
|
|
|
kWindowShadowKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXT(
|
|
|
|
word-spacing,
|
|
|
|
word_spacing,
|
|
|
|
WordSpacing,
|
|
|
|
CSS_PROPERTY_APPLIES_TO_FIRST_LETTER_AND_FIRST_LINE,
|
|
|
|
Text,
|
|
|
|
mWordSpacing,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleText, mWordSpacing),
|
|
|
|
eStyleAnimType_nscoord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TEXT(
|
|
|
|
word-wrap,
|
|
|
|
word_wrap,
|
|
|
|
WordWrap,
|
|
|
|
0,
|
|
|
|
Text,
|
|
|
|
mWordWrap,
|
2009-09-11 03:46:36 -07:00
|
|
|
kWordwrapKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_POSITION(
|
|
|
|
z-index,
|
|
|
|
z_index,
|
|
|
|
ZIndex,
|
|
|
|
0,
|
|
|
|
Position,
|
|
|
|
mZIndex,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-11-12 17:40:05 -08:00
|
|
|
offsetof(nsStylePosition, mZIndex),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_XUL(
|
|
|
|
-moz-box-align,
|
|
|
|
box_align,
|
|
|
|
MozBoxAlign,
|
|
|
|
0,
|
|
|
|
XUL,
|
|
|
|
mBoxAlign,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxAlignKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_XUL(
|
|
|
|
-moz-box-direction,
|
|
|
|
box_direction,
|
|
|
|
MozBoxDirection,
|
|
|
|
0,
|
|
|
|
XUL,
|
|
|
|
mBoxDirection,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxDirectionKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_XUL(
|
|
|
|
-moz-box-flex,
|
|
|
|
box_flex,
|
|
|
|
MozBoxFlex,
|
|
|
|
0,
|
|
|
|
XUL,
|
|
|
|
mBoxFlex,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-12-11 08:13:19 -08:00
|
|
|
offsetof(nsStyleXUL, mBoxFlex),
|
|
|
|
eStyleAnimType_float) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_XUL(
|
|
|
|
-moz-box-orient,
|
|
|
|
box_orient,
|
|
|
|
MozBoxOrient,
|
|
|
|
0,
|
|
|
|
XUL,
|
|
|
|
mBoxOrient,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxOrientKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_XUL(
|
|
|
|
-moz-box-pack,
|
|
|
|
box_pack,
|
|
|
|
MozBoxPack,
|
|
|
|
0,
|
|
|
|
XUL,
|
|
|
|
mBoxPack,
|
2009-09-11 03:46:36 -07:00
|
|
|
kBoxPackKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None) // XXX bug 3935
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_XUL(
|
|
|
|
-moz-box-ordinal-group,
|
|
|
|
box_ordinal_group,
|
|
|
|
MozBoxOrdinalGroup,
|
|
|
|
0,
|
|
|
|
XUL,
|
|
|
|
mBoxOrdinal,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_XUL(
|
|
|
|
-moz-stack-sizing,
|
|
|
|
stack_sizing,
|
|
|
|
MozStackSizing,
|
|
|
|
0,
|
|
|
|
XUL,
|
|
|
|
mStackSizing,
|
2009-09-11 03:46:36 -07:00
|
|
|
kStackSizingKTable,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-01-09 01:38:28 -08:00
|
|
|
#ifdef MOZ_MATHML
|
|
|
|
#ifndef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
-moz-script-level,
|
|
|
|
script_level,
|
|
|
|
ScriptLevel,
|
|
|
|
0,
|
|
|
|
Font,
|
|
|
|
mScriptLevel,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
-moz-script-size-multiplier,
|
|
|
|
script_size_multiplier,
|
|
|
|
ScriptSizeMultiplier,
|
|
|
|
0,
|
|
|
|
Font,
|
|
|
|
mScriptSizeMultiplier,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_FONT(
|
|
|
|
-moz-script-min-size,
|
|
|
|
script_min_size,
|
|
|
|
ScriptMinSize,
|
|
|
|
0,
|
|
|
|
Font,
|
|
|
|
mScriptMinSize,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2008-01-09 01:38:28 -08:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVGRESET(
|
|
|
|
clip-path,
|
|
|
|
clip_path,
|
|
|
|
ClipPath,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mClipPath,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
clip-rule,
|
|
|
|
clip_rule,
|
|
|
|
ClipRule,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mClipRule,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFillRuleKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mClipRule),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
color-interpolation,
|
|
|
|
color_interpolation,
|
|
|
|
ColorInterpolation,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mColorInterpolation,
|
2009-09-11 03:46:36 -07:00
|
|
|
kColorInterpolationKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mColorInterpolation),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
color-interpolation-filters,
|
|
|
|
color_interpolation_filters,
|
|
|
|
ColorInterpolationFilters,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mColorInterpolationFilters,
|
2009-09-11 03:46:36 -07:00
|
|
|
kColorInterpolationKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mColorInterpolationFilters),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVGRESET(
|
|
|
|
dominant-baseline,
|
|
|
|
dominant_baseline,
|
|
|
|
DominantBaseline,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mDominantBaseline,
|
2009-09-11 03:46:36 -07:00
|
|
|
kDominantBaselineKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVGReset, mDominantBaseline),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
fill,
|
|
|
|
fill,
|
|
|
|
Fill,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mFill,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleSVG, mFill),
|
|
|
|
eStyleAnimType_PaintServer)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
fill-opacity,
|
|
|
|
fill_opacity,
|
|
|
|
FillOpacity,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mFillOpacity,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-08 18:30:49 -07:00
|
|
|
offsetof(nsStyleSVG, mFillOpacity),
|
|
|
|
eStyleAnimType_float)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
fill-rule,
|
|
|
|
fill_rule,
|
|
|
|
FillRule,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mFillRule,
|
2009-09-11 03:46:36 -07:00
|
|
|
kFillRuleKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mFillRule),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVGRESET(
|
|
|
|
filter,
|
|
|
|
filter,
|
|
|
|
Filter,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mFilter,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVGRESET(
|
|
|
|
flood-color,
|
|
|
|
flood_color,
|
|
|
|
FloodColor,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mFloodColor,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleSVGReset, mFloodColor),
|
|
|
|
eStyleAnimType_Color)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVGRESET(
|
|
|
|
flood-opacity,
|
|
|
|
flood_opacity,
|
|
|
|
FloodOpacity,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mFloodOpacity,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-08 18:30:49 -07:00
|
|
|
offsetof(nsStyleSVGReset, mFloodOpacity),
|
|
|
|
eStyleAnimType_float)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
image-rendering,
|
|
|
|
image_rendering,
|
|
|
|
ImageRendering,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mImageRendering,
|
2009-09-11 03:46:36 -07:00
|
|
|
kImageRenderingKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mImageRendering),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVGRESET(
|
|
|
|
lighting-color,
|
|
|
|
lighting_color,
|
|
|
|
LightingColor,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mLightingColor,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleSVGReset, mLightingColor),
|
|
|
|
eStyleAnimType_Color)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SHORTHAND(
|
|
|
|
marker,
|
|
|
|
marker,
|
|
|
|
Marker,
|
|
|
|
0)
|
|
|
|
CSS_PROP_SVG(
|
|
|
|
marker-end,
|
|
|
|
marker_end,
|
|
|
|
MarkerEnd,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mMarkerEnd,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
marker-mid,
|
|
|
|
marker_mid,
|
|
|
|
MarkerMid,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mMarkerMid,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
marker-start,
|
|
|
|
marker_start,
|
|
|
|
MarkerStart,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mMarkerStart,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVGRESET(
|
|
|
|
mask,
|
|
|
|
mask,
|
|
|
|
Mask,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mMask,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
shape-rendering,
|
|
|
|
shape_rendering,
|
|
|
|
ShapeRendering,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mShapeRendering,
|
2009-09-11 03:46:36 -07:00
|
|
|
kShapeRenderingKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mShapeRendering),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVGRESET(
|
|
|
|
stop-color,
|
|
|
|
stop_color,
|
|
|
|
StopColor,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mStopColor,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleSVGReset, mStopColor),
|
|
|
|
eStyleAnimType_Color)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVGRESET(
|
|
|
|
stop-opacity,
|
|
|
|
stop_opacity,
|
|
|
|
StopOpacity,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mStopOpacity,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-08 18:30:49 -07:00
|
|
|
offsetof(nsStyleSVGReset, mStopOpacity),
|
|
|
|
eStyleAnimType_float)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
stroke,
|
|
|
|
stroke,
|
|
|
|
Stroke,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mStroke,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleSVG, mStroke),
|
|
|
|
eStyleAnimType_PaintServer)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
stroke-dasharray,
|
|
|
|
stroke_dasharray,
|
|
|
|
StrokeDasharray,
|
|
|
|
CSS_PROPERTY_VALUE_LIST_USES_COMMAS,
|
|
|
|
SVG,
|
|
|
|
mStrokeDasharray,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-21 07:17:40 -07:00
|
|
|
CSS_PROP_NO_OFFSET, /* property stored in 2 separate members */
|
|
|
|
eStyleAnimType_Custom)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
stroke-dashoffset,
|
|
|
|
stroke_dashoffset,
|
|
|
|
StrokeDashoffset,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mStrokeDashoffset,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleSVG, mStrokeDashoffset),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
stroke-linecap,
|
|
|
|
stroke_linecap,
|
|
|
|
StrokeLinecap,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mStrokeLinecap,
|
2009-09-11 03:46:36 -07:00
|
|
|
kStrokeLinecapKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mStrokeLinecap),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
stroke-linejoin,
|
|
|
|
stroke_linejoin,
|
|
|
|
StrokeLinejoin,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mStrokeLinejoin,
|
2009-09-11 03:46:36 -07:00
|
|
|
kStrokeLinejoinKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mStrokeLinejoin),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
stroke-miterlimit,
|
|
|
|
stroke_miterlimit,
|
|
|
|
StrokeMiterlimit,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mStrokeMiterlimit,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-08 18:30:49 -07:00
|
|
|
offsetof(nsStyleSVG, mStrokeMiterlimit),
|
|
|
|
eStyleAnimType_float)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
stroke-opacity,
|
|
|
|
stroke_opacity,
|
|
|
|
StrokeOpacity,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mStrokeOpacity,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-10-08 18:30:49 -07:00
|
|
|
offsetof(nsStyleSVG, mStrokeOpacity),
|
|
|
|
eStyleAnimType_float)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
stroke-width,
|
|
|
|
stroke_width,
|
|
|
|
StrokeWidth,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mStrokeWidth,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
2009-09-11 03:46:36 -07:00
|
|
|
offsetof(nsStyleSVG, mStrokeWidth),
|
|
|
|
eStyleAnimType_Coord)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
text-anchor,
|
|
|
|
text_anchor,
|
|
|
|
TextAnchor,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mTextAnchor,
|
2009-09-11 03:46:36 -07:00
|
|
|
kTextAnchorKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mTextAnchor),
|
|
|
|
eStyleAnimType_EnumU8)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_SVG(
|
|
|
|
text-rendering,
|
|
|
|
text_rendering,
|
|
|
|
TextRendering,
|
|
|
|
0,
|
|
|
|
SVG,
|
|
|
|
mTextRendering,
|
2009-09-11 03:46:36 -07:00
|
|
|
kTextRenderingKTable,
|
2009-10-21 14:57:57 -07:00
|
|
|
offsetof(nsStyleSVG, mTextRendering),
|
|
|
|
eStyleAnimType_EnumU8)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// 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
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_VISIBILITY(
|
|
|
|
X,
|
|
|
|
X,
|
|
|
|
X,
|
|
|
|
0,
|
|
|
|
Display,
|
|
|
|
mLang,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TABLE(
|
|
|
|
X,
|
|
|
|
X,
|
|
|
|
X,
|
|
|
|
0,
|
|
|
|
Table,
|
|
|
|
mCols,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2009-07-15 17:24:24 -07:00
|
|
|
CSS_PROP_TABLE(
|
|
|
|
X,
|
|
|
|
X,
|
|
|
|
X,
|
|
|
|
0,
|
|
|
|
Table,
|
|
|
|
mSpan,
|
2009-09-11 03:46:36 -07:00
|
|
|
nsnull,
|
|
|
|
CSS_PROP_NO_OFFSET,
|
|
|
|
eStyleAnimType_None)
|
2007-03-22 10:30:00 -07:00
|
|
|
#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_SHORTHAND
|
|
|
|
#undef CSS_PROP_SHORTHAND
|
|
|
|
#undef DEFINED_CSS_PROP_SHORTHAND
|
|
|
|
#endif
|