Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
stress
/
string-from-char-code-slow.js
blob: 0fea07b3afd89ebc9068823ed1c75c2ce9b5896a [
file
] [
log
] [
blame
]
var
result
=
(
function
()
{
var
result
;
for
(
var
i
=
0
;
i
<
1000000
;
++
i
)
result
=
String
.
fromCharCode
(
1000
);
return
result
})();
if
(
result
!=
"Ϩ"
)
throw
"Error: bad result: "
+
result
;