| Index: tests/html/element_test.dart
|
| diff --git a/tests/html/element_test.dart b/tests/html/element_test.dart
|
| index c6c358c2fcb4d764b4dbe15f78138912a3e58615..a8a6b26fe8c1c6482b8e995765a6d9651197387f 100644
|
| --- a/tests/html/element_test.dart
|
| +++ b/tests/html/element_test.dart
|
| @@ -103,7 +103,7 @@ main() {
|
| test('br', () => testConstructorHelper('br', '<br>', '',
|
| (element) => element is BRElement));
|
| test('base', () => testConstructorHelper('base', '<base>foo</base>', '',
|
| - (element) => element is BaseElement));
|
| + (element) => element is BaseElement));
|
| test('blockquote', () => testConstructorHelper('blockquote',
|
| '<blockquote>foo</blockquote>', 'foo',
|
| (element) => element is QuoteElement));
|
| @@ -416,7 +416,7 @@ main() {
|
| (listener) => Testing.addEventListener(element,
|
| 'webkitfullscreenchange', listener, true));
|
| });
|
| -
|
| +
|
| group('attributes', () {
|
| test('manipulation', () {
|
| final element = new Element.html(
|
|
|