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

Unified Diff: tests/html/element_types_test.dart

Issue 13686018: Testing & supporting new HTMLTemplateElement (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 | « sdk/lib/html/dartium/html_dartium.dart ('k') | tests/html/html.status » ('j') | 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 6dee82e1e9da9d89f40c6a51bd993ecba5bcd57e..f10713b223031a5aad109713ea7ee192f9f75ba4 100644
--- a/tests/html/element_types_test.dart
+++ b/tests/html/element_types_test.dart
@@ -70,6 +70,12 @@ main() {
});
});
+ group('supported_template', () {
+ test('supported', () {
+ expect(TemplateElement.supported, true);
+ });
+ });
+
group('supported_track', () {
test('supported', () {
expect(TrackElement.supported, true);
@@ -259,6 +265,10 @@ main() {
test('table', () {
expect((new TableElement()) is TableElement, true);
});
+ test('template', () {
+ expect((new TemplateElement()) is TemplateElement,
+ TemplateElement.supported);
+ });
test('textarea', () {
expect((new TextAreaElement()) is TextAreaElement, true);
});
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698