diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 21:17:24 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 21:17:24 +0000 |
commit | b81637c3d9f2cf895b81d5b673b88668b6bc1322 (patch) | |
tree | 795f338852b7d40508e837ece010d64b4ad14d9f /chrome/test/data/serializer_nested_test.js | |
parent | eb0ef6ce145aab92fdf7f99f4ebe14ef7b03736c (diff) | |
download | chromium_src-b81637c3d9f2cf895b81d5b673b88668b6bc1322.zip chromium_src-b81637c3d9f2cf895b81d5b673b88668b6bc1322.tar.gz chromium_src-b81637c3d9f2cf895b81d5b673b88668b6bc1322.tar.bz2 |
Use platform-appropriate newlines in JSON output.
BUG=15462
TEST=base_unittests, unit_tests, check newlines in bookmarks file
Review URL: http://codereview.chromium.org/147220
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19418 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data/serializer_nested_test.js')
-rw-r--r-- | chrome/test/data/serializer_nested_test.js | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/chrome/test/data/serializer_nested_test.js b/chrome/test/data/serializer_nested_test.js index 9b47c3d..cfea8e8 100644 --- a/chrome/test/data/serializer_nested_test.js +++ b/chrome/test/data/serializer_nested_test.js @@ -1,17 +1,17 @@ -{
- "bool": true,
- "dict": {
- "bool": true,
- "dict": {
- "bees": "knees",
- "cats": "meow"
- },
- "foos": "bar",
- "list": [ 3.4, "second", null ]
- },
- "int": 42,
- "list": [ 1, 2 ],
- "null": null,
- "real": 3.14,
- "string": "hello"
-}
+{ + "bool": true, + "dict": { + "bool": true, + "dict": { + "bees": "knees", + "cats": "meow" + }, + "foos": "bar", + "list": [ 3.4, "second", null ] + }, + "int": 42, + "list": [ 1, 2 ], + "null": null, + "real": 3.14, + "string": "hello" +} |