/external/v8/test/webkit/fast/js/ |
Promise-init.js | 38 shouldBe('promise.constructor', 'Promise'); 39 shouldBe('thisInInit', 'undefined');
|
Promise-then.js | 40 shouldBe('thisInOnFulfilled', 'undefined'); 46 shouldBe('thisInInit', 'undefined');
|
array-bad-time.js | 52 shouldBe("\"" + foo(haveABadTime).join(",") + "\"", expected); 55 shouldBe("ouches", "50");
|
numeric-escapes-in-string-literals.js | 32 shouldBe("eval(stringLiteral)", "nonStrictResult"); 37 shouldBe("eval(stringLiteral)", "strictResult");
|
object-bad-time.js | 55 shouldBe("\"" + Array.prototype.join.apply(foo(haveABadTime), [","]) + "\"", expected); 58 shouldBe("ouches", "50");
|
object-prototype-properties.js | 29 shouldBe("Object.prototype.toString.call(undefined)", '"[object Undefined]"'); 30 shouldBe("Object.prototype.toString.call(null)", '"[object Null]"');
|
Promise-init-callback-receiver.js | 31 shouldBe('receiverInStrict', 'undefined');
|
/external/v8/test/webkit/fast/js/kde/ |
lval-exceptions.js | 38 shouldBe("a['x']", '"undefinedbaz"'); 41 shouldBe("a['y']", '"undefinedglarch"');
|
/external/v8/test/webkit/ |
codegen-jless.js | 28 shouldBe("!(true && undefined > 0) ? 'true' : 'false'", "'true'");
|
indexed-setter-on-global-object.js | 36 shouldBe("thingy", "\"foo\"");
|
multiline-comment-newline.js | 33 shouldBe('shouldBeUndefined', 'undefined');
|
number-parsing-crash.js | 30 shouldBe("x.toString()", '"0.1111111111111111"');
|
regexp-character-match-out-of-order.js | 26 shouldBe("/[\\w']+/.exec(\"'_'\").toString()", "\"'_'\"");
|
regexp-norepeat.js | 30 shouldBe('re.test(str)', 'false');
|
slash-lineterminator-parse.js | 30 shouldBe('mystring', '"hellothere"');
|
sort-non-numbers.js | 31 shouldBe("String(test)", "'1,2,3'");
|
string-from-char-code.js | 28 shouldBe('String.fromCharCode(88)', '"X"');
|
integer-extremes.js | 28 shouldBe("(-1).toString()", '"-1"'); 29 shouldBe("(0).toString()", '"0"'); 30 shouldBe("(-0).toString()", '"0"'); 161 shouldBe("min.toString()", answers[valueBits-8][0]); 162 shouldBe("(min - 1).toString()", answers[valueBits-8][1]); 163 shouldBe("max.toString()", answers[valueBits-8][2]); 164 shouldBe("(max + 1).toString()", answers[valueBits-8][3]);
|
array-every.js | 102 shouldBe("accumulator.toString()", "[12, 5].toString()"); 105 shouldBe("accumulator.toString()", "[12, 54, 18, 130, 44].toString()");
|
equality.js | 67 shouldBe(expression, ((i == j) ^ (exceptionMap[expression] || exceptionMap[reversed])) ? "true" : "false"); 75 shouldBe(expression, ((i == j) ^ (exceptionMap[expression] || exceptionMap[reversed])) ? "true" : "false");
|
array-constructor-host-call.js | 35 shouldBe("array.length", "100");
|
array-tostring-and-join.js | 36 shouldBe("arr.join()", "'1,2,,**'");
|
class-syntax-name.js | 29 shouldBe(statement, result); 30 shouldBe("'use strict'; " + statement, result); 112 shouldBe("eval('var Foo = 10'); Foo", "10"); 114 shouldBe("eval('class Bar { constructor() {} }; Bar.toString()')", "'class Bar { constructor() {} }'");
|
class-syntax-scoping.js | 37 shouldBe('test()', '"PASS"');
|
/external/v8/test/webkit/fast/regex/ |
non-capturing-backtracking.js | 29 shouldBe("re.exec('a')", "['a']");
|