mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
35 lines
848 B
C
35 lines
848 B
C
/* 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)
|
|
#define CSS_PROP_PUBLIC_OR_PRIVATE(publicname_, privatename_) publicname_
|
|
#define CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
|
|
#include "nsCSSPropList.h"
|
|
|
|
#undef CSS_PROP_LIST_EXCLUDE_INTERNAL
|
|
#undef CSS_PROP_PUBLIC_OR_PRIVATE
|
|
#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
|
|
|
|
]
|