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