1 {% from 'macros.tmpl' import license %}
4 #ifndef StyleBuilderFunctions_h
5 #define StyleBuilderFunctions_h
7 #include "core/css/resolver/StyleBuilderConverter.h"
12 class StyleResolverState;
14 class StyleBuilderFunctions {
17 {% for property_id, property in properties.items()
18 if property.should_declare_functions %}
19 static void applyInitial{{property_id}}(StyleResolverState&);
20 static void applyInherit{{property_id}}(StyleResolverState&);
21 static void applyValue{{property_id}}(StyleResolverState&, CSSValue*);