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

Side by Side Diff: test/es5conform/es5conform.status

Issue 2278002: Add support for getOwnPropertyDescriptor on array indices (fixes issue 599).... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/v8natives.js ('k') | test/mjsunit/get-own-property-descriptor.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 193
194 # SUBSETFAIL 194 # SUBSETFAIL
195 chapter15/15.2/15.2.3/15.2.3.4/15.2.3.4-4-33: FAIL_OK 195 chapter15/15.2/15.2.3/15.2.3.4/15.2.3.4-4-33: FAIL_OK
196 196
197 # SUBSETFAIL 197 # SUBSETFAIL
198 chapter15/15.2/15.2.3/15.2.3.4/15.2.3.4-4-34: FAIL_OK 198 chapter15/15.2/15.2.3/15.2.3.4/15.2.3.4-4-34: FAIL_OK
199 199
200 # SUBSETFAIL 200 # SUBSETFAIL
201 chapter15/15.2/15.2.3/15.2.3.4/15.2.3.4-4-35: FAIL_OK 201 chapter15/15.2/15.2.3/15.2.3.4/15.2.3.4-4-35: FAIL_OK
202 202
203 # getOwnPropertyDescriptor not implemented on array indices
204 chapter15/15.2/15.2.3/15.2.3.4/15.2.3.4-4-b-1: FAIL_OK
205
206
207
208 203
209 # We fail this because Object.keys returns numbers for element indices 204 # We fail this because Object.keys returns numbers for element indices
210 # rather than strings. 205 # rather than strings.
211 #chapter15/15.2/15.2.3/15.2.3.14/15.2.3.14-3-3: FAIL_OK 206 #chapter15/15.2/15.2.3/15.2.3.14/15.2.3.14-3-3: FAIL_OK
212 207
213 chapter15/15.3: UNIMPLEMENTED 208 chapter15/15.3: UNIMPLEMENTED
214 209
215 chapter15/15.4/15.4.4/15.4.4.14: UNIMPLEMENTED 210 chapter15/15.4/15.4.4/15.4.4.14: UNIMPLEMENTED
216 chapter15/15.4/15.4.4/15.4.4.15: UNIMPLEMENTED 211 chapter15/15.4/15.4.4/15.4.4.15: UNIMPLEMENTED
217 chapter15/15.4/15.4.4/15.4.4.20: UNIMPLEMENTED 212 chapter15/15.4/15.4.4/15.4.4.20: UNIMPLEMENTED
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 248
254 # Same as 15.4.4.16-7-7 249 # Same as 15.4.4.16-7-7
255 chapter15/15.4/15.4.4/15.4.4.18/15.4.4.18-7-6: FAIL_OK 250 chapter15/15.4/15.4.4/15.4.4.18/15.4.4.18-7-6: FAIL_OK
256 251
257 # Same as 15.4.4.16-5-1 252 # Same as 15.4.4.16-5-1
258 chapter15/15.4/15.4.4/15.4.4.19/15.4.4.19-5-1: FAIL_OK 253 chapter15/15.4/15.4.4/15.4.4.19/15.4.4.19-5-1: FAIL_OK
259 254
260 # Same as 15.4.4.16-7-7 255 # Same as 15.4.4.16-7-7
261 chapter15/15.4/15.4.4/15.4.4.19/15.4.4.19-8-7: FAIL_OK 256 chapter15/15.4/15.4.4/15.4.4.19/15.4.4.19-8-7: FAIL_OK
262 257
263 # Uses a array index number as a property
264 chapter15/15.4/15.4.4/15.4.4.19/15.4.4.19-8-c-iii-1: FAIL_OK
265
266 258
267 chapter15/15.5: UNIMPLEMENTED 259 chapter15/15.5: UNIMPLEMENTED
268 chapter15/15.6: UNIMPLEMENTED 260 chapter15/15.6: UNIMPLEMENTED
269 chapter15/15.7: UNIMPLEMENTED 261 chapter15/15.7: UNIMPLEMENTED
270 chapter15/15.9: UNIMPLEMENTED 262 chapter15/15.9: UNIMPLEMENTED
271 chapter15/15.10: UNIMPLEMENTED 263 chapter15/15.10: UNIMPLEMENTED
272 chapter15/15.12: UNIMPLEMENTED 264 chapter15/15.12: UNIMPLEMENTED
273 265
274 [ $arch == mips ] 266 [ $arch == mips ]
275 267
276 # Skip all tests on MIPS. 268 # Skip all tests on MIPS.
277 *: SKIP 269 *: SKIP
OLDNEW
« no previous file with comments | « src/v8natives.js ('k') | test/mjsunit/get-own-property-descriptor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698