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

Unified Diff: tests/html/element_types_test.dart

Issue 11934004: Remove more classes and members by making them private. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged and stuff. Created 7 years, 11 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') | tools/dom/scripts/htmlrenamer.py » ('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 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);
});
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698