Sign in
webkit
/
WebKit
/
0728b8a6689ce9c083789efe93de28df91426a6d
/
.
/
LayoutTests
/
js
/
regress
/
script-tests
/
string-char-code-at.js
blob: c0227fcc9264ac6f09ef705fd3190cce4f13e516 [
file
] [
log
] [
blame
]
function
foo
(
s
)
{
var
result
=
0
;
for
(
var
i
=
0
;
i
<
s
.
length
;
++
i
)
result
+=
s
.
charCodeAt
(
i
);
return
result
;
}
for
(
var
i
=
0
;
i
<
1000000
;
++
i
)
{
var
result
=
foo
(
"hello"
);
if
(
result
!=
532
)
throw
"Error: bad result: "
+
result
;
}