Changeset 47292 in webkit for trunk/JavaScriptCore/tests
- Timestamp:
- Aug 14, 2009, 1:18:09 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/tests/mozilla/ecma_3/Function/arguments-001.js
r11995 r47292 50 50 51 51 actual = a instanceof Array; 52 expect = false;52 expect = true; 53 53 addThis(); 54 54 55 55 actual = a.length; 56 expect = undefined;56 expect = 0; 57 57 addThis(); 58 58 … … 66 66 67 67 actual = a instanceof Array; 68 expect = false;68 expect = true; 69 69 addThis(); 70 70 71 71 actual = a.length; 72 expect = undefined;72 expect = 0; 73 73 addThis(); 74 74
Note:
See TracChangeset
for help on using the changeset viewer.