From 69b74a95bb8f35277cf0c8d2045af16c985becff Mon Sep 17 00:00:00 2001 From: "feng.qian.v8" Date: Thu, 28 Aug 2008 18:32:52 +0000 Subject: [PATCH] Add a test that access a property name in its unicode escaped form. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@30 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/mjsunit/bugs/bug-1346700.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/mjsunit/bugs/bug-1346700.js diff --git a/test/mjsunit/bugs/bug-1346700.js b/test/mjsunit/bugs/bug-1346700.js new file mode 100644 index 0000000..b6f3f02 --- /dev/null +++ b/test/mjsunit/bugs/bug-1346700.js @@ -0,0 +1,2 @@ +var o = {"\u59cb\u53d1\u7ad9": 1}; +assertEquals(1, o.\u59cb\u53d1\u7ad9); -- 2.7.4