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

Unified Diff: tests/html/element_types_test.dart

Issue 12224085: Adding a test for UListElement (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/element_types_test.dart
diff --git a/tests/html/element_types_test.dart b/tests/html/element_types_test.dart
index f681bd0fa48734cdf19dd6c82af7458f52f0aba6..6dee82e1e9da9d89f40c6a51bd993ecba5bcd57e 100644
--- a/tests/html/element_types_test.dart
+++ b/tests/html/element_types_test.dart
@@ -286,6 +286,9 @@ main() {
});
test('ul', () {
expect((new UListElement()) is UListElement, true);
+ var ul = new UListElement();
+ var li = new LIElement();
+ ul.append(li);
});
test('video', () {
expect((new VideoElement()) is VideoElement, true);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698