diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-28 17:44:47 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-28 17:44:47 +0000 |
commit | 9ec3d3d9c99059472f9a758b36707c504f568f9c (patch) | |
tree | 6c745275af3a861f92b01b985a2d6ad3b1a0796e | |
parent | 26c6201704fd94e614b2a9b7b5561a5fc5486844 (diff) | |
download | chromium_src-9ec3d3d9c99059472f9a758b36707c504f568f9c.zip chromium_src-9ec3d3d9c99059472f9a758b36707c504f568f9c.tar.gz chromium_src-9ec3d3d9c99059472f9a758b36707c504f568f9c.tar.bz2 |
Rebaseline string-conversion. V8 does "(){}" and JSC does "() {}"
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/339048
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30357 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/data/layout_tests/platform/chromium-win/LayoutTests/storage/domstorage/localstorage/string-conversion-expected.txt | 14 | ||||
-rw-r--r-- | webkit/tools/layout_tests/test_expectations.txt | 3 |
2 files changed, 14 insertions, 3 deletions
diff --git a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/storage/domstorage/localstorage/string-conversion-expected.txt b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/storage/domstorage/localstorage/string-conversion-expected.txt new file mode 100644 index 0000000..637a6a2 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/storage/domstorage/localstorage/string-conversion-expected.txt @@ -0,0 +1,14 @@ +This test case verifies that local storage only stores strings. +Length is 0 +Testing implicit setters +Type/value for null is string/null +Type/value for 0 is string/0 +Type/value for function(){} is string/function (){} +Testing explicit setters +Type/value for null is string/null +Type/value for 0 is string/0 +Type/value for function(){} is string/function (){} +Testing index setters +Type/value for null is string/null +Type/value for 0 is string/0 +Type/value for function(){} is string/function (){} diff --git a/webkit/tools/layout_tests/test_expectations.txt b/webkit/tools/layout_tests/test_expectations.txt index a316e05..c54d233 100644 --- a/webkit/tools/layout_tests/test_expectations.txt +++ b/webkit/tools/layout_tests/test_expectations.txt @@ -722,9 +722,6 @@ BUG4360 : LayoutTests/http/tests/loading/deleted-host-in-resource-load-delegate- // Depends on URL support in storage events. BUG_JORLOW : LayoutTests/storage/domstorage/localstorage/iframe-events.html = FAIL -// function(){} is serialized as "() {}" in JSC and "(){}" in V8. Need to decide what to do with that. -BUG_JORLOW : LayoutTests/storage/domstorage/localstorage/string-conversion.html = FAIL - // TODO(jorlow): Triage. BUG_JORLOW MAC : LayoutTests/storage/domstorage/localstorage/simple-events.html = FAIL |