Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Side by Side Diff: Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl

Issue 26414004: Move core/scripts to build/scripts so that platform can use them. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 {% from "macros.tmpl" import lower_first -%} 1 {% from "macros.tmpl" import lower_first -%}
2 2
3 {# 3 {#
4 This file is for property handlers which use the templating engine to 4 This file is for property handlers which use the templating engine to
5 reduce (handwritten) code duplication. 5 reduce (handwritten) code duplication.
6 6
7 The `properties' dict can be used to access a property's parameters in 7 The `properties' dict can be used to access a property's parameters in
8 jinja2 templates (i.e. setter, getter, initial, type_name) 8 jinja2 templates (i.e. setter, getter, initial, type_name)
9 -#} 9 -#}
10 10
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 } else if (value->isImageValue()) { 510 } else if (value->isImageValue()) {
511 {{ set_value(property) }}(ShapeValue::createImageValue(state.styleImage( {{property_id}}, value))); 511 {{ set_value(property) }}(ShapeValue::createImageValue(state.styleImage( {{property_id}}, value)));
512 } 512 }
513 } 513 }
514 {%- endmacro %} 514 {%- endmacro %}
515 515
516 {{ apply_value_shape("CSSPropertyWebkitShapeInside") }} 516 {{ apply_value_shape("CSSPropertyWebkitShapeInside") }}
517 {{ apply_value_shape("CSSPropertyWebkitShapeOutside") }} 517 {{ apply_value_shape("CSSPropertyWebkitShapeOutside") }}
518 518
519 } // namespace WebCore 519 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698