2012-08-23 21:08:09 -07:00
|
|
|
/* A file meant as input to the preprocessor only */
|
|
|
|
|
|
|
|
/* DO_PROP serves as an extra level of indirection to allow expansion
|
|
|
|
of CSS_PROP_DOMPROP_PREFIXED */
|
|
|
|
|
|
|
|
[
|
|
|
|
|
|
|
|
#define DO_PROP(method, pref) \
|
|
|
|
[ #method, pref ],
|
|
|
|
#define CSS_PROP(name, id, method, flags, pref, parsevariant, kwtable, \
|
|
|
|
stylestruct, stylestructofset, animtype) \
|
|
|
|
DO_PROP(method, pref)
|
|
|
|
#define CSS_PROP_SHORTHAND(name, id, method, flags, pref) \
|
|
|
|
DO_PROP(method, pref)
|
2013-03-25 09:24:21 -07:00
|
|
|
#define CSS_PROP_PUBLIC_OR_PRIVATE(publicname_, privatename_) publicname_
|
2012-08-23 21:08:09 -07:00
|
|
|
#define CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
|
|
|
|
|
|
#include "nsCSSPropList.h"
|
|
|
|
|
|
|
|
#undef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
2013-03-25 09:24:21 -07:00
|
|
|
#undef CSS_PROP_PUBLIC_OR_PRIVATE
|
2012-08-23 21:08:09 -07:00
|
|
|
#undef CSS_PROP_SHORTHAND
|
|
|
|
#undef CSS_PROP
|
|
|
|
|
|
|
|
#define CSS_PROP_ALIAS(name, id, method, pref) \
|
|
|
|
DO_PROP(method, pref)
|
|
|
|
|
|
|
|
#include "nsCSSPropAliasList.h"
|
|
|
|
|
|
|
|
#undef CSS_PROP_ALIAS
|
|
|
|
|
|
|
|
#undef DO_PROP
|
|
|
|
|
|
|
|
]
|