Changeset 128111 in webkit for trunk/Source/JavaScriptCore/tests
- Timestamp:
- Sep 10, 2012, 2:49:25 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/tests/mozilla/js1_4/Functions/function-001.js
r11995 r128111 83 83 "return function.arguments when function contains an arguments property", 84 84 "PASS", 85 TestFunction_4( " F", "A", "I", "L" ) +"");85 TestFunction_4( "P", "A", "S", "S" ) +""); 86 86 87 87 test(); … … 101 101 102 102 function TestFunction_4( a, b, c, d, e ) { 103 var arguments = " PASS";104 return TestFunction_4.arguments;103 var arguments = "FAIL"; 104 return Array.prototype.join.call(TestFunction_4.arguments, ""); 105 105 } 106 106
Note:
See TracChangeset
for help on using the changeset viewer.