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

Unified Diff: tests/html/js_test.dart

Issue 53873003: Fix js_test on IE9 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/js_test.dart
diff --git a/tests/html/js_test.dart b/tests/html/js_test.dart
index 6b37250aff9b20693f838d0cfbe9c54d00eecb4e..3d58e2df9fdeafe2ebe467788b42eca45ed4d9ac 100644
--- a/tests/html/js_test.dart
+++ b/tests/html/js_test.dart
@@ -154,7 +154,7 @@ function addTestProperty(o) {
function fireClickEvent(w) {
var event = w.document.createEvent('Events');
event.initEvent('click', true, false);
- w.document.body.dispatchEvent(event);
+ w.document.dispatchEvent(event);
}
function Bar() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698