Home
last modified time | relevance | path

Searched refs:shouldBeUndefined (Results 1 – 24 of 24) sorted by relevance

/external/v8/test/webkit/
Djs-continue-break-restrictions.js41 shouldBeUndefined("if(0){ L:for(;;) continue L; }")
42 shouldBeUndefined("if(0){ L:A:for(;;) continue L; }")
43 shouldBeUndefined("if(0){ A:L:for(;;) continue L; }")
45 shouldBeUndefined("if(0){ L:for(;;) A:continue L; }")
47 shouldBeUndefined("if(0){ L:do continue L; while(0); }")
48 shouldBeUndefined("if(0){ L:A:do continue L; while(0); }")
49 shouldBeUndefined("if(0){ A:L:do continue L; while(0);}")
51 shouldBeUndefined("if(0){ L:do A:continue L; while(0); }")
54 shouldBeUndefined("if(0){ L:while(0) continue L; }")
55 shouldBeUndefined("if(0){ L:A:while(0) continue L; }")
[all …]
Dcached-call-uninitialized-arguments.js32 function shouldBeUndefined(_a) { function
49 shouldBeUndefined("arg4");
50 shouldBeUndefined("arg5");
51 shouldBeUndefined("arg6");
Dparser-xml-close-comment.js31 shouldBeUndefined("-->");
32 shouldBeUndefined("/**/-->");
33 shouldBeUndefined("/*\n*/-->");
Dfor-in-exeception.js44 shouldBeUndefined("test(throwUndefinedException)");
45 shouldBeUndefined("test(throwNullException)");
DJSON-stringify-replacer.js70 shouldBeUndefined("JSON.stringify(object, returnUndefined)");
71 shouldBeUndefined("JSON.stringify(array, returnUndefined)");
Dproperty-getters-and-setters.js49 shouldBeUndefined("o4.x");
80 shouldBeUndefined("o7.x")
Dmultiline-comment-newline.js28 var shouldBeUndefined = (function(){ function
Dstring-index-overflow.js28 shouldBeUndefined('"x"[10]');
Dfunction-declaration.js28 shouldBeUndefined("eval('function f(){return true;}')");
Dregexp-literals-arent-constants.js57 shouldBeUndefined("returnRegExpLiteral().someAddedProperty");
Dprototypes.js90 shouldBeUndefined("var o = {}; o.__proto__ = { x:true }; o.x");
Ddictionary-prototype-caching.js42 shouldBeUndefined("protoTest(o)");
DpreventExtensions.js102 shouldBeUndefined('var arr = Object.preventExtensions([]); arr[0] = 42; arr[0]');
Dmultiline-comment-newline-expected.txt29 PASS shouldBeUndefined is undefined
/external/v8/test/webkit/fast/js/
Dbasic-strict-mode.js67 shouldBeUndefined("testThisDotAccess.call(true)");
68 shouldBeUndefined("testThisDotAccess.call(false)");
69 shouldBeUndefined("testThisDotAccess.call(1)");
73 shouldBeUndefined("testThisBracketAccess.call(true, 'length')");
74 shouldBeUndefined("testThisBracketAccess.call(false, 'length')");
75 shouldBeUndefined("testThisBracketAccess.call(1, 'length')");
76 shouldBeUndefined("Function('\"use strict\"; return this;')()");
199 shouldBeUndefined("(function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(f.__proto_…
200 shouldBeUndefined("(function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(f.__proto_…
201 shouldBeUndefined("(function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(arguments,…
[all …]
DObject-defineProperty.js90 shouldBeUndefined("Object.defineProperty(Object.defineProperty({}, 'foo', {set: setter, configurabl…
97 shouldBeUndefined("Object.defineProperty(Object.defineProperty({}, 'foo', {get: getter, configurabl…
123 shouldBeUndefined("var o = Object.defineProperty({}, 'foo', {get: function() { return 1; }, configu…
207 shouldBeUndefined("var a = Object.defineProperty([], '0', {set: undefined}); a[0] = 42; a[0];");
230 shouldBeUndefined("Object.getOwnPropertyDescriptor(anObj, 'slot5')");
DJSON-parse-reviver.js77 shouldBeUndefined("value");
93 shouldBeUndefined("value");
159 shouldBeUndefined("value");
Darguments.js605 shouldBeUndefined("shadowedArgumentsCallee([])");
678 shouldBeUndefined(String( Object.getOwnPropertyDescriptor(arguments, 1) ));
/external/v8/test/webkit/fast/js/kde/
DArray.js34 shouldBeUndefined("(new Array(11, 22))[3]");
67 shouldBeUndefined("var a = [11, 22]; a.length = 1; a[1];");
87 shouldBeUndefined("(new Array('a'))[1]");
Dassignments.js28 shouldBeUndefined("var i; i");
Dobject_prototype.js80 shouldBeUndefined("Class1.prototype.prototype");
Dmath.js102 shouldBeUndefined("my.v");
Doperators.js495 shouldBeUndefined("void 1");
/external/v8/test/webkit/resources/
Dstandalone-pre.js136 function shouldBeUndefined(_a) function