Chromium Code Reviews| Index: utils/tests/template/productview2.tmpl |
| diff --git a/utils/tests/template/productview2.tmpl b/utils/tests/template/productview2.tmpl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c51d9ec760a1b44a2766d96d867acfe025dd1a08 |
| --- /dev/null |
| +++ b/utils/tests/template/productview2.tmpl |
| @@ -0,0 +1,16 @@ |
| +template ProductView(Person person) { |
| + <div> |
| + <span var=a1> |
| + <h1> |
| + ${#with person} |
| + <div> |
| + <span>${name}</span> |
| + <span>-</span> |
| + <span>${age}</span> |
| + </div> |
| + ${/with} |
| + </h1> |
| + </span> |
| + </div> |
| +} |
| + |