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

Unified Diff: tests/html/element_test.dart

Issue 11615038: Updating status of tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | « no previous file | tests/html/element_webkit_test.dart » ('j') | 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 73f463e67362af5cd1ad6903ad638fc232490dea..63b586733ea54fb9a502fa5d6c716e9d9b4d95d0 100644
--- a/tests/html/element_test.dart
+++ b/tests/html/element_test.dart
@@ -239,6 +239,10 @@ main() {
testEventHelper(on.touchStart, 'touchstart',
(listener) => Testing.addEventListener(
element, 'touchstart', listener, true));
+ testEventHelper(on.transitionEnd, 'webkitTransitionEnd');
+ testEventHelper(on.fullscreenChange, 'webkitfullscreenchange',
blois 2012/12/28 21:18:37 The fact that these pass on all browsers shows tha
+ (listener) => Testing.addEventListener(element,
+ 'webkitfullscreenchange', listener, true));
});
});
« no previous file with comments | « no previous file | tests/html/element_webkit_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698