Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
67f14b76
Commit
67f14b76
authored
Aug 17, 2009
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Added Boolean's function lengths test.
parent
d9004913
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
api.js
dlls/jscript/tests/api.js
+14
-0
No files found.
dlls/jscript/tests/api.js
View file @
67f14b76
...
...
@@ -1396,4 +1396,18 @@ testObjectInherit(new Error(), false, true, true);
testObjectInherit
(
testObjectInherit
,
false
,
true
,
true
);
testObjectInherit
(
Math
,
true
,
true
,
true
);
function
testFunctions
(
obj
,
arr
)
{
var
l
;
for
(
var
i
=
0
;
i
<
arr
.
length
;
i
++
)
{
l
=
obj
[
arr
[
i
][
0
]].
length
;
ok
(
l
===
arr
[
i
][
1
],
arr
[
i
][
0
]
+
".length = "
+
l
);
}
}
testFunctions
(
Boolean
.
prototype
,
[
[
"valueOf"
,
0
],
[
"toString"
,
0
]
]);
reportSuccess
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment