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

Unified Diff: dart/tests/try/cursor_position_test.dart

Issue 345553008: Fix issues that broke editing on browsers without Shadow DOM support. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address Johnni's changes, and fix bugs found during testing. Created 6 years, 5 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: dart/tests/try/cursor_position_test.dart
diff --git a/dart/tests/try/cursor_position_test.dart b/dart/tests/try/cursor_position_test.dart
index 1691b72046f44f16af49818959f4717d3501ec97..52ccb03d1a48340d8968c2dbb50b18a0ac5a5d41 100644
--- a/dart/tests/try/cursor_position_test.dart
+++ b/dart/tests/try/cursor_position_test.dart
@@ -49,14 +49,14 @@ void main() {
new TestCase('Clear and presetup the test', () {
clearEditorPaneWithoutNotifications();
mainEditorPane.text = 'var greeting = "Hello, World!\n";';
- }, () {
- checkLineCount(2);
+ }, () {
+ checkLineCount(2);
}),
-
+
new TestCase('Test removing a split line', () {
mainEditorPane.nodes.first.nodes.last.remove();
- }, () {
- checkLineCount(1);
+ }, () {
+ checkLineCount(1);
}),
]);
}

Powered by Google App Engine
This is Rietveld 408576698