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

Unified Diff: test/data/input/mix_iterate_if_test.html

Issue 13592003: add support for template repeat (Closed) Base URL: https://github.com/dart-lang/web-ui.git@master
Patch Set: feedback Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/data/expected/repeat_attribute_test.html.txt ('k') | test/data/input/repeat_attribute_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/data/input/mix_iterate_if_test.html
diff --git a/test/data/input/mix_iterate_if_test.html b/test/data/input/mix_iterate_if_test.html
index deefcc12675dd0c55062b76ef68bd269ab6af12d..02a64879ef84580f5eceb4be2bbd4fd81243c78e 100644
--- a/test/data/input/mix_iterate_if_test.html
+++ b/test/data/input/mix_iterate_if_test.html
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
-Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
-->
@@ -14,10 +14,11 @@ BSD-style license that can be found in the LICENSE file.
<!-- Tests the correct interaction of iteration and conditionals. -->
<table>
<tbody id='test' template iterate="row in table">
- <tr template iterate="cell in row">
- <td template if="cell != 0">{{cell}}</td>
- </tr>
- </tbody></table>
+ <tr template iterate="cell in row">
+ <td template if="cell != 0">{{cell}}</td>
+ </tr>
+ </tbody>
+ </table>
<script type="application/dart">
import 'dart:async';
import 'dart:html';
« no previous file with comments | « test/data/expected/repeat_attribute_test.html.txt ('k') | test/data/input/repeat_attribute_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698