| 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';
|
|
|