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

Unified Diff: tests/html/scripts_test_dart.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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
Index: tests/html/scripts_test_dart.dart
diff --git a/tests/html/scripts_test_dart.dart b/tests/html/scripts_test_dart.dart
index ab62d3a7c234e10a3442965d0d43671c728eb06b..cd7bc5a9a2dd3b1b10f8c39fec3f5c42d954cfd8 100644
--- a/tests/html/scripts_test_dart.dart
+++ b/tests/html/scripts_test_dart.dart
@@ -3,14 +3,15 @@
// BSD-style license that can be found in the LICENSE file.
library ScriptsTestDart;
+
import 'dart:html';
import 'dart:async';
main() {
window.postMessage('squid', '*');
- window.postMessage('tiger', '*'); // Unexpected message OK.
+ window.postMessage('tiger', '*'); // Unexpected message OK.
new Timer(new Duration(seconds: 1), () {
- window.postMessage('squid', '*'); // Duplicate message OK.
+ window.postMessage('squid', '*'); // Duplicate message OK.
window.postMessage('sea urchin', '*');
});
}

Powered by Google App Engine
This is Rietveld 408576698