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

Side by Side Diff: test/data/input/mix_iterate_if_test.html

Issue 11412285: New pub release - changes to comply with new SDK. (Closed) Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 years 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
« no previous file with comments | « test/data/input/iterate_attribute_test.html ('k') | test/data/input/table_test.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 for details. All rights reserved. Use of this source code is governed by a 4 for details. All rights reserved. Use of this source code is governed by a
5 BSD-style license that can be found in the LICENSE file. 5 BSD-style license that can be found in the LICENSE file.
6 --> 6 -->
7 <html lang="en"> 7 <html lang="en">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
(...skipping 26 matching lines...) Expand all
37 int column = -1; 37 int column = -1;
38 for (var td in tr.elements) { 38 for (var td in tr.elements) {
39 expect(td.tagName, 'TD'); 39 expect(td.tagName, 'TD');
40 if (td.style.display == 'none') { 40 if (td.style.display == 'none') {
41 column++; 41 column++;
42 continue; 42 continue;
43 } 43 }
44 44
45 var value = table[row][column]; 45 var value = table[row][column];
46 expect(value, greaterThan(0)); 46 expect(value, greaterThan(0));
47 expect(td.innerHTML, value.toString()); 47 expect(td.innerHtml, value.toString());
48 } 48 }
49 } 49 }
50 window.setTimeout(() => window.postMessage('done', '*'), 0); 50 window.setTimeout(() => window.postMessage('done', '*'), 0);
51 }, 0); 51 }, 0);
52 }, 0); 52 }, 0);
53 } 53 }
54 </script> 54 </script>
55 </body> 55 </body>
56 </html> 56 </html>
OLDNEW
« no previous file with comments | « test/data/input/iterate_attribute_test.html ('k') | test/data/input/table_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698