| Index: tests/html/element_types_test.dart
|
| diff --git a/tests/html/element_types_test.dart b/tests/html/element_types_test.dart
|
| index acc20b109a009f61577c6bd63ed0cd6eb2b01a90..9ef2449d5c931adddb63bee526b1dbffbf7f41ea 100644
|
| --- a/tests/html/element_types_test.dart
|
| +++ b/tests/html/element_types_test.dart
|
| @@ -128,18 +128,9 @@ main() {
|
| test('fieldset', () {
|
| expect((new FieldSetElement()) is FieldSetElement, true);
|
| });
|
| - test('font', () {
|
| - expect((new Element.tag('font')) is FontElement, true);
|
| - });
|
| test('form', () {
|
| expect((new FormElement()) is FormElement, true);
|
| });
|
| - test('frame', () {
|
| - expect((new Element.tag('frame')) is FrameElement, true);
|
| - });
|
| - test('frameset', () {
|
| - expect((new Element.tag('frameset')) is FrameSetElement, true);
|
| - });
|
| test('head', () {
|
| expect((new HeadElement()) is HeadElement, true);
|
| });
|
| @@ -200,10 +191,6 @@ main() {
|
| test('map', () {
|
| expect((new MapElement()) is MapElement, true);
|
| });
|
| - test('marquee', () {
|
| - expect((new Element.tag('marquee')) is MarqueeElement,
|
| - MarqueeElement.supported);
|
| - });
|
| test('menu', () {
|
| expect((new MenuElement()) is MenuElement, true);
|
| });
|
|
|