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

Unified Diff: tests/lib_strong/math/math_parse_double_test.dart

Issue 2748003002: Revert "Remove U+180E from whitespace in js_runtime and tests" (Closed)
Patch Set: Created 3 years, 9 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 | « tests/lib/math/math_parse_double_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib_strong/math/math_parse_double_test.dart
diff --git a/tests/lib_strong/math/math_parse_double_test.dart b/tests/lib_strong/math/math_parse_double_test.dart
index 9b122a737797d7c4de6396dd715aa6a6871e3fdd..666a9e5041233035f5993e6a504ec82e0da2748a 100644
--- a/tests/lib_strong/math/math_parse_double_test.dart
+++ b/tests/lib_strong/math/math_parse_double_test.dart
@@ -26,6 +26,7 @@ void runTest(double expected, String input) {
Expect.equals(expected, double.parse("\xA0 +$input\xA0 "));
Expect.equals(expected, double.parse("+$input\xA0 "));
Expect.equals(expected, double.parse("\u205F $input\u205F "));
+ Expect.equals(expected, double.parse(" \u180E$input"));
Expect.equals(expected, double.parse("$input \u2006"));
Expect.equals(expected, double.parse("\u1680 +$input\u1680 "));
Expect.equals(-expected, double.parse("-$input"));
« no previous file with comments | « tests/lib/math/math_parse_double_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698