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

Unified Diff: tests/html/table_test.dart

Issue 10942017: Fixing up Table.createTBody et al. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Incorporating review feedback. Created 8 years, 3 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 | « lib/html/templates/html/dart2js/impl_TableElement.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/table_test.dart
diff --git a/tests/html/table_test.dart b/tests/html/table_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..3441dcb3a701b89d9903fd7401f6473b67ea807b
--- /dev/null
+++ b/tests/html/table_test.dart
@@ -0,0 +1,43 @@
+// Copyright (c) 2012, 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.
+
+#library('TableTest');
+#import('../../pkg/unittest/unittest.dart');
+#import('../../pkg/unittest/html_config.dart');
+#import('dart:html');
+
+main() {
+ useHtmlConfiguration();
+
+ test('createTBody', () {
+ var table = new TableElement();
+ var head = table.createTHead();
+ var headerRow = head.insertRow(-1);
+ var headerCell = headerRow.insertCell(-1);
+ headerCell.text = 'Header Cell';
+
+ var body = table.createTBody();
+ var bodyRow = body.insertRow(-1);
+ var bodyCell = bodyRow.insertCell(-1);
+ bodyCell.text = 'Body Cell';
+
+ expect(table.tBodies.length, 1);
+ expect(table.tBodies[0], body);
+
+ var foot = table.createTFoot();
+ var footerRow = foot.insertRow(-1);
+ var footerCell = footerRow.insertCell(-1);
+ footerCell.text = 'Footer Cell';
+
+ var body2 = table.createTBody();
+ var bodyRow2 = body2.insertRow(-1);
+ var bodyCell2 = bodyRow2.insertCell(-1);
+ bodyCell2.text = 'Body Cell2';
+
+ expect(table.tBodies.length, 2);
+ expect(table.tBodies[1], body2);
+
+ });
+}
+
« no previous file with comments | « lib/html/templates/html/dart2js/impl_TableElement.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698