Searched defs:fromCharCode (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/v8/test/mjsunit/
H A Dstring-fromcharcode.js30 // Test String.fromCharCode.
35 expected += String.fromCharCode(i);
41 result += String.fromCharCode(i);
43 assertEquals(String.fromCharCode(0xFFFF), String.fromCharCode(0xFFFFFFFF));
52 // Test various receivers and arguments passed to String.fromCharCode.
54 Object.prototype.fromCharCode = function(x) { return this; };
56 var fcc = String.fromCharCode;
62 assertEquals(" ", String.fromCharCode(0x20));
63 assertEquals(" ", String.fromCharCode(
[all...]

Completed in 353 milliseconds