| OLD | NEW | 
|---|
| 1 {% from "macros.tmpl" import wrap_with_condition, license -%} | 1 {% from "macros.tmpl" import wrap_with_condition, license -%} | 
| 2 {{ license() }} | 2 {{ license() }} | 
| 3 | 3 | 
| 4 #include "config.h" | 4 #include "config.h" | 
| 5 #include "core/css/resolver/StyleBuilder.h" | 5 #include "core/css/resolver/StyleBuilder.h" | 
| 6 | 6 | 
| 7 #include "StyleBuilderFunctions.h" | 7 #include "StyleBuilderFunctions.h" | 
| 8 #include "core/css/CSSPrimitiveValueMappings.h" | 8 #include "core/css/CSSPrimitiveValueMappings.h" | 
| 9 #include "core/css/resolver/StyleResolverState.h" | 9 #include "core/css/resolver/StyleResolverState.h" | 
| 10 | 10 | 
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 76             StyleBuilderFunctions::applyValue{{ used_property_id }}(state, value
    ); | 76             StyleBuilderFunctions::applyValue{{ used_property_id }}(state, value
    ); | 
| 77         return true; | 77         return true; | 
| 78 {%- endcall %} | 78 {%- endcall %} | 
| 79 {% endfor %} | 79 {% endfor %} | 
| 80     default: | 80     default: | 
| 81         return false; | 81         return false; | 
| 82     } | 82     } | 
| 83 } | 83 } | 
| 84 | 84 | 
| 85 } // namespace WebCore | 85 } // namespace WebCore | 
| OLD | NEW | 
|---|