| Index: tests/html/svgelement_test.dart
|
| diff --git a/tests/html/svgelement_test.dart b/tests/html/svgelement_test.dart
|
| index 5527dcd2c6e502a173834b9325d8987b61c4615b..1fa725996ad1ed9f94e2484e4ba5739678b83a8f 100644
|
| --- a/tests/html/svgelement_test.dart
|
| +++ b/tests/html/svgelement_test.dart
|
| @@ -70,12 +70,6 @@ main() {
|
| });
|
|
|
| // Unfortunately, because the filtering mechanism in unitttest is a regex done
|
| - group('supported_altGlyph', () {
|
| - test('supported', () {
|
| - expect(svg.AltGlyphElement.supported, true);
|
| - });
|
| - });
|
| -
|
| group('supported_animate', () {
|
| test('supported', () {
|
| expect(svg.AnimateElement.supported, true);
|
| @@ -277,8 +271,6 @@ main() {
|
| testConstructor('use', (e) => e is svg.UseElement);
|
| testConstructor('view', (e) => e is svg.ViewElement);
|
| // TODO(alanknight): Issue 23144
|
| - testConstructor('altGlyph', (e) => e is svg.AltGlyphElement,
|
| - svg.AltGlyphElement.supported, false);
|
| testConstructor('animate', (e) => e is svg.AnimateElement,
|
| svg.AnimateElement.supported);
|
| testConstructor('animateMotion', (e) => e is svg.AnimateMotionElement,
|
|
|