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

Unified Diff: tests/html/cssstyledeclaration_test.dart

Issue 10894006: Remove now unnecessary trailing whitespaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | « 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/cssstyledeclaration_test.dart
diff --git a/tests/html/cssstyledeclaration_test.dart b/tests/html/cssstyledeclaration_test.dart
index 1fe912d357ebaf0046c89e92bf6673e272a83d73..1bc83b92422138df87624ef6452dae8605f8fd48 100644
--- a/tests/html/cssstyledeclaration_test.dart
+++ b/tests/html/cssstyledeclaration_test.dart
@@ -34,9 +34,9 @@ main() {
var style = createTestStyle();
expect(style.cssText,
equals("color: blue; width: 2px !important; "
- "-webkit-transform: rotate(90deg); "));
+ "-webkit-transform: rotate(90deg);"));
style.cssText = "color: red";
- expect(style.cssText, equals("color: red; "));
+ expect(style.cssText, equals("color: red;"));
});
test('length is wrapped', () {
@@ -60,7 +60,7 @@ main() {
var style = createTestStyle();
style.removeProperty("width");
expect(style.cssText,
- equals("color: blue; -webkit-transform: rotate(90deg); "));
+ equals("color: blue; -webkit-transform: rotate(90deg);"));
});
test('CSS property getters and setters', () {
@@ -73,6 +73,6 @@ main() {
style.transform = "translate(10px, 20px)";
expect(style.cssText,
equals("color: red; width: 2px !important;"
- " -webkit-transform: translate(10px, 20px); "));
+ " -webkit-transform: translate(10px, 20px);"));
});
}
« 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