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

Unified Diff: tests/html/element_test.dart

Issue 10854208: Adding Element.AddHTML and Element.addText methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Implementing polyfills for insertAdjacent* to get tests working on FF. Created 8 years, 4 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 | « tests/html/element_add_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/element_test.dart
diff --git a/tests/html/element_test.dart b/tests/html/element_test.dart
index a8a6b26fe8c1c6482b8e995765a6d9651197387f..c6c358c2fcb4d764b4dbe15f78138912a3e58615 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(
« no previous file with comments | « tests/html/element_add_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698