| 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);
|
| });
|
|
|