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

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

Issue 6516003: Strict mode delete of unqualified identifier. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: CR Feedback. Created 9 years, 10 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/parser.cc ('k') | test/mjsunit/strict-mode.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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 chapter11/11.4/11.4.1/11.4.1-4.a-3-s: FAIL 352 chapter11/11.4/11.4.1/11.4.1-4.a-3-s: FAIL
353 # delete operator throws TypeError when when deleting a non-configurable 353 # delete operator throws TypeError when when deleting a non-configurable
354 # data property in strict mode (Global.NaN) 354 # data property in strict mode (Global.NaN)
355 chapter11/11.4/11.4.1/11.4.1-4.a-4-s: FAIL 355 chapter11/11.4/11.4.1/11.4.1-4.a-4-s: FAIL
356 # delete operator throws TypeError when deleting a non-configurable data 356 # delete operator throws TypeError when deleting a non-configurable data
357 # property in strict mode (Math.LN2) 357 # property in strict mode (Math.LN2)
358 chapter11/11.4/11.4.1/11.4.1-4.a-9-s: FAIL 358 chapter11/11.4/11.4.1/11.4.1-4.a-9-s: FAIL
359 359
360 # delete operator throws ReferenceError when deleting a direct reference 360 # delete operator throws ReferenceError when deleting a direct reference
361 # to a var in strict mode 361 # to a var in strict mode
362 # Invalid test case. Test expects ReferenceError instead of SyntaxError.
363 # http://es5conform.codeplex.com/workitem/29084
362 chapter11/11.4/11.4.1/11.4.1-5-1-s: FAIL 364 chapter11/11.4/11.4.1/11.4.1-5-1-s: FAIL
363 # delete operator throws ReferenceError when deleting a direct reference 365 # delete operator throws ReferenceError when deleting a direct reference
364 # to a function argument in strict mode 366 # to a function argument in strict mode
367 # Invalid test case. Test expects ReferenceError instead of SyntaxError.
368 # http://es5conform.codeplex.com/workitem/29084
365 chapter11/11.4/11.4.1/11.4.1-5-2-s: FAIL 369 chapter11/11.4/11.4.1/11.4.1-5-2-s: FAIL
366 # delete operator throws ReferenceError when deleting a direct reference 370 # delete operator throws ReferenceError when deleting a direct reference
367 # to a function name in strict mode 371 # to a function name in strict mode
372 # Invalid test case. Test expects ReferenceError instead of SyntaxError.
373 # http://es5conform.codeplex.com/workitem/29084
368 chapter11/11.4/11.4.1/11.4.1-5-3-s: FAIL 374 chapter11/11.4/11.4.1/11.4.1-5-3-s: FAIL
369 # delete operator throws SyntaxError when deleting a direct reference
370 # to a function argument(object) in strict mode
371 chapter11/11.4/11.4.1/11.4.1-5-4-s: FAIL
372 375
373 # eval - a function declaring a var named 'eval' throws EvalError in strict mode 376 # eval - a function declaring a var named 'eval' throws EvalError in strict mode
374 # Invalid test case. SyntaxError should be expected instead of EvalError. 377 # Invalid test case. SyntaxError should be expected instead of EvalError.
375 chapter12/12.2/12.2.1/12.2.1-1-s: FAIL 378 chapter12/12.2/12.2.1/12.2.1-1-s: FAIL
376 # eval - a function assigning into 'eval' throws EvalError in strict mode 379 # eval - a function assigning into 'eval' throws EvalError in strict mode
377 # Invalid test case. SyntaxError should be expected instead of EvalError. 380 # Invalid test case. SyntaxError should be expected instead of EvalError.
378 chapter12/12.2/12.2.1/12.2.1-2-s: FAIL 381 chapter12/12.2/12.2.1/12.2.1-2-s: FAIL
379 # eval - a function expr declaring a var named 'eval' throws EvalError 382 # eval - a function expr declaring a var named 'eval' throws EvalError
380 # in strict mode 383 # in strict mode
381 # Invalid test case. SyntaxError should be expected instead of EvalError. 384 # Invalid test case. SyntaxError should be expected instead of EvalError.
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 chapter15/15.4/15.4.4/15.4.4.19/15.4.4.19-5-1-s: FAIL 486 chapter15/15.4/15.4.4/15.4.4.19/15.4.4.19-5-1-s: FAIL
484 # Array.prototype.filter - thisArg not passed to strict callbackfn 487 # Array.prototype.filter - thisArg not passed to strict callbackfn
485 chapter15/15.4/15.4.4/15.4.4.20/15.4.4.20-5-1-s: FAIL 488 chapter15/15.4/15.4.4/15.4.4.20/15.4.4.20-5-1-s: FAIL
486 # Array.prototype.reduce - null passed as thisValue to strict callbackfn 489 # Array.prototype.reduce - null passed as thisValue to strict callbackfn
487 chapter15/15.4/15.4.4/15.4.4.21/15.4.4.21-9-c-ii-4-s: FAIL 490 chapter15/15.4/15.4.4/15.4.4.21/15.4.4.21-9-c-ii-4-s: FAIL
488 491
489 [ $arch == mips ] 492 [ $arch == mips ]
490 493
491 # Skip all tests on MIPS. 494 # Skip all tests on MIPS.
492 *: SKIP 495 *: SKIP
OLDNEW
« no previous file with comments | « src/parser.cc ('k') | test/mjsunit/strict-mode.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698