blob: 35cff3c3f654fb891a23cc63a7169370676cc61c [file] [log] [blame]
{% from "macros.tmpl" import wrap_with_condition, license -%}
{{ license() }}
namespace WebCore {
class CSSValue;
class StyleResolver;
class StyleBuilderFunctions {
public:
{%- for property_id, property in properties.items() if not property.use_handlers_for %}
{% call wrap_with_condition(property.condition) %}
static void applyInitial{{property_id}}(StyleResolver* styleResolver);
static void applyInherit{{property_id}}(StyleResolver* styleResolver);
static void applyValue{{property_id}}(StyleResolver* styleResolver, CSSValue* value);
{%- endcall %}
{%- endfor %}
};
} // namespace WebCore