Fixed.

Re-gen'ed the website.
This commit is contained in:
David Fugate 2012-02-24 15:40:42 -08:00
parent d9e409ac1b
commit c64d7b5758
41 changed files with 120 additions and 69 deletions

View File

@ -10,8 +10,10 @@
try {
do __in__do = "reached"; while (abbracadabra);
$ERROR('#1: \'do __in__do = "reached"; while (abbracadabra)\' lead to throwing exception');
} catch (e) {}
$ERROR('#1: \'do __in__do = "reached"; while (abbracadabra)\' lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//////////////////////////////////////////////////////////////////////////////
//CHECK#1

View File

@ -15,9 +15,11 @@ try {
var x = 1;
abaracadabara;
} while(0);
$ERROR('#1: "abbracadabra" lead to throwing exception');
} catch (e) {}
$ERROR('#1: "abbracadabra" lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (x !== 1) {
$ERROR('#1.1: x === 1. Actual: x ==='+ x );

View File

@ -15,9 +15,11 @@ try {
var x = 1;
abaracadabara;
};
$ERROR('#1: "abbracadabra" lead to throwing exception');
} catch (e) {}
$ERROR('#1: "abbracadabra" lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (x !== 1) {
$ERROR('#1.1: while statement evaluates as is, without syntax checks');

View File

@ -10,7 +10,6 @@
* @description Returning number. Declaring a function with "function __func()"
*/
var x;
function __func(){
x = 1;
return x;
@ -21,7 +20,9 @@ function __func(){
try {
x=x;
$ERROR('#0: "x=x" lead to throwing exception');
} catch (e) {}
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//
//////////////////////////////////////////////////////////////////////////////

View File

@ -19,8 +19,10 @@ function __func(){
//CHECK#
try {
x=x;
$ERROR('#0: "x=x" lead to throwing exception');
} catch (e) {}
$ERROR('#0: "x=x" lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//
//////////////////////////////////////////////////////////////////////////////
@ -46,8 +48,10 @@ if (!(__x)) {
//CHECK#3
try {
x=x;
$ERROR('#3: "x=x" lead to throwing exception');
} catch (e) {}
$ERROR('#3: "x=x" lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//
//////////////////////////////////////////////////////////////////////////////

View File

@ -22,8 +22,10 @@ function FACTORY(){
//CHECK#1
try {
var obj = new FACTORY();
$ERROR('#1: var obj = new FACTORY() lead to throwing exception');
} catch (e) {}
$ERROR('#1: var obj = new FACTORY() lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//
//////////////////////////////////////////////////////////////////////////////

View File

@ -20,8 +20,10 @@ function FACTORY(){
//CHECK#1
try {
var obj = new FACTORY();
$ERROR('#1: var obj = new FACTORY() lead to throwing exception');
} catch (e) {}
$ERROR('#1: var obj = new FACTORY() lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//
//////////////////////////////////////////////////////////////////////////////

View File

@ -22,8 +22,10 @@ function FACTORY(){
//CHECK#1
try {
var obj = new FACTORY();
$ERROR('#1: var obj = new FACTORY() lead to throwing exception');
} catch (e) {}
$ERROR('#1: var obj = new FACTORY() lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//
//////////////////////////////////////////////////////////////////////////////

View File

@ -25,7 +25,9 @@ for (var indexB1 = 0x00; indexB1 <= 0x7F; indexB1++) {
}
if (hex === "#") continue l;
if (decodeURI("%" + hexB1.substring(2)) === hex) continue;
} catch (e) {}
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (indexO === 0) {
indexO = index;
} else {

View File

@ -20,8 +20,10 @@ for (var indexB1 = 0xC2; indexB1 <= 0xDF; indexB1++) {
var hexB2 = decimalToHexString(indexB2);
var index = (indexB1 & 0x1F) * 0x40 + (indexB2 & 0x3F);
try {
if (decodeURI("%" + hexB1.substring(2) + "%" + hexB2.substring(2)) === String.fromCharCode(index)) continue;
} catch (e) {}
if (decodeURI("%" + hexB1.substring(2) + "%" + hexB2.substring(2)) === String.fromCharCode(index)) continue;
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (indexO === 0) {
indexO = index;
} else {

View File

@ -24,8 +24,10 @@ for (var indexB1 = 0xE0; indexB1 <= 0xEF; indexB1++) {
var hexB3 = decimalToHexString(indexB3);
var index = (indexB1 & 0x0F) * 0x1000 + (indexB2 & 0x3F) * 0x40 + (indexB3 & 0x3F);
try {
if (decodeURI("%" + hexB1.substring(2) + "%" + hexB2.substring(2) + "%" + hexB3.substring(2)) === String.fromCharCode(index)) continue;
} catch (e) {}
if (decodeURI("%" + hexB1.substring(2) + "%" + hexB2.substring(2) + "%" + hexB3.substring(2)) === String.fromCharCode(index)) continue;
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (indexO === 0) {
indexO = index;
} else {

View File

@ -28,8 +28,10 @@ for (var indexB1 = 0xF0; indexB1 <= 0xF4; indexB1++) {
var L = ((index - 0x10000) & 0x03FF) + 0xDC00;
var H = (((index - 0x10000) >> 10) & 0x03FF) + 0xD800;
try {
if (decodeURI("%" + hexB1.substring(3) + "%" + hexB2.substring(3) + "%" + hexB3.substring(3) + "%" + hexB4.substring(3)) === String.fromCharCode(H) + String.fromCharCode(L)) continue;
} catch (e) {}
if (decodeURI("%" + hexB1.substring(3) + "%" + hexB2.substring(3) + "%" + hexB3.substring(3) + "%" + hexB4.substring(3)) === String.fromCharCode(H) + String.fromCharCode(L)) continue;
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (indexO === 0) {
indexO = index;
} else {

View File

@ -18,8 +18,10 @@ for (indexB1 = 0x00; indexB1 <= 0x7F; indexB1++) {
var index = indexB1;
try {
hex = String.fromCharCode(index);
if (decodeURIComponent("%" + hexB1.substring(2)) === hex) continue;
} catch (e) {}
if (decodeURIComponent("%" + hexB1.substring(2)) === hex) continue;
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (indexO === 0) {
indexO = index;
} else {

View File

@ -20,8 +20,10 @@ for (indexB1 = 0xC2; indexB1 <= 0xDF; indexB1++) {
var hexB2 = decimalToHexString(indexB2);
var index = (indexB1 & 0x1F) * 0x40 + (indexB2 & 0x3F);
try {
if (decodeURIComponent("%" + hexB1.substring(2) + "%" + hexB2.substring(2)) === String.fromCharCode(index)) continue;
} catch (e) {}
if (decodeURIComponent("%" + hexB1.substring(2) + "%" + hexB2.substring(2)) === String.fromCharCode(index)) continue;
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (indexO === 0) {
indexO = index;
} else {

View File

@ -24,8 +24,10 @@ for (indexB1 = 0xE0; indexB1 <= 0xEF; indexB1++) {
var hexB3 = decimalToHexString(indexB3);
var index = (indexB1 & 0x0F) * 0x1000 + (indexB2 & 0x3F) * 0x40 + (indexB3 & 0x3F);
try {
if (decodeURIComponent("%" + hexB1.substring(2) + "%" + hexB2.substring(2) + "%" + hexB3.substring(2)) === String.fromCharCode(index)) continue;
} catch (e) {}
if (decodeURIComponent("%" + hexB1.substring(2) + "%" + hexB2.substring(2) + "%" + hexB3.substring(2)) === String.fromCharCode(index)) continue;
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (indexO === 0) {
indexO = index;
} else {

View File

@ -28,8 +28,10 @@ for (indexB1 = 0xF0; indexB1 <= 0xF4; indexB1++) {
var L = ((index - 0x10000) & 0x03FF) + 0xDC00;
var H = (((index - 0x10000) >> 10) & 0x03FF) + 0xD800;
try {
if (decodeURIComponent("%" + hexB1.substring(3) + "%" + hexB2.substring(3) + "%" + hexB3.substring(3) + "%" + hexB4.substring(3)) === String.fromCharCode(H) + String.fromCharCode(L)) continue;
} catch (e) {}
if (decodeURIComponent("%" + hexB1.substring(3) + "%" + hexB2.substring(3) + "%" + hexB3.substring(3) + "%" + hexB4.substring(3)) === String.fromCharCode(H) + String.fromCharCode(L)) continue;
} catch (e) {
if (e instanceof Test262Error) throw e;
}
if (indexO === 0) {
indexO = index;
} else {

View File

@ -12,8 +12,10 @@
//CHECK#1
try {
Error.prototype();
$FAIL('#1: "Error.prototype()" lead to throwing exception');
} catch (e) {}
$FAIL('#1: "Error.prototype()" lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//
//////////////////////////////////////////////////////////////////////////////

View File

@ -12,8 +12,10 @@
//CHECK#1
try {
__instance = new Object.prototype;
$FAIL('#1: "__instance = new Object.prototype" lead to throwing exception');
} catch (e) {}
$FAIL('#1: "__instance = new Object.prototype" lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//
//////////////////////////////////////////////////////////////////////////////

View File

@ -16,8 +16,10 @@ delete String.fromCharCode;
//CHECK#1
try {
var __obj = new __fcc__func(65,66,66,65);
$FAIL('#1: __fcc__func = String.fromCharCode; var __obj = new __fcc__func(65,66,66,65) lead to throwing exception');
} catch (e) {}
$FAIL('#1: __fcc__func = String.fromCharCode; var __obj = new __fcc__func(65,66,66,65) lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}
//
//////////////////////////////////////////////////////////////////////////////

View File

@ -12,6 +12,8 @@ var __FACTORY = String.prototype.match;
try {
var __instance = new __FACTORY;
$FAIL('#1: __FACTORY = String.prototype.match; __FACTORY = String.prototype.match; __instance = new __FACTORY lead to throwing exception');
} catch (e) {}
$FAIL('#1: __FACTORY = String.prototype.match; __FACTORY = String.prototype.match; __instance = new __FACTORY lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}

View File

@ -12,6 +12,8 @@ var __FACTORY = String.prototype.replace;
try {
var __instance = new __FACTORY;
$FAIL('#1: __FACTORY = String.prototype.replace; "__instance = new __FACTORY" lead to throwing exception');
} catch (e) {}
$FAIL('#1: __FACTORY = String.prototype.replace; "__instance = new __FACTORY" lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}

View File

@ -12,6 +12,8 @@ var __FACTORY = String.prototype.split;
try {
var __instance = new __FACTORY;
$FAIL('#1: __FACTORY = String.prototype.split; "__instance = new __FACTORY" lead to throwing exception');
} catch (e) {}
$FAIL('#1: __FACTORY = String.prototype.split; "__instance = new __FACTORY" lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}

View File

@ -12,6 +12,8 @@ var __FACTORY = String.prototype.charCodeAt;
try {
var __instance = new __FACTORY;
$FAIL('#1: __FACTORY = String.prototype.charCodeAt; "__instance = new __FACTORY" lead to throwing exception');
} catch (e) {}
$FAIL('#1: __FACTORY = String.prototype.charCodeAt; "__instance = new __FACTORY" lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}

View File

@ -12,6 +12,8 @@ var __FACTORY = String.prototype.concat;
try {
var __instance = new __FACTORY;
$FAIL('#1: __FACTORY = String.prototype.concat; "__instance = new __FACTORY" lead throwing exception');
} catch (e) {}
$FAIL('#1: __FACTORY = String.prototype.concat; "__instance = new __FACTORY" lead throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}

View File

@ -12,6 +12,8 @@ var __FACTORY = String.prototype.localeCompare;
try {
var __instance = new __FACTORY;
$FAIL('#1: __FACTORY = String.prototype.localeCompare; __instance = new __FACTORY lead to throwing exception');
} catch (e) {}
$FAIL('#1: __FACTORY = String.prototype.localeCompare; __instance = new __FACTORY lead to throwing exception');
} catch (e) {
if (e instanceof Test262Error) throw e;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":11181,"testSuite":["json/ch07.json","json/ch08.json","json/ch09.json","json/ch10.json","json/ch11.json","json/ch12.json","json/ch13.json","json/ch14.json","json/ch15.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":11177,"testSuite":["json/ch07.json","json/ch08.json","json/ch09.json","json/ch10.json","json/ch11.json","json/ch12.json","json/ch13.json","json/ch14.json","json/ch15.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":13,"testSuite":["json/bestPractice.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":17,"testSuite":["json/bestPractice.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":716,"testSuite":["json/ch07.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":716,"testSuite":["json/ch07.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":124,"testSuite":["json/ch08.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":124,"testSuite":["json/ch08.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":128,"testSuite":["json/ch09.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":128,"testSuite":["json/ch09.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":184,"testSuite":["json/ch10.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":184,"testSuite":["json/ch10.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":1310,"testSuite":["json/ch11.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":1310,"testSuite":["json/ch11.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":525,"testSuite":["json/ch12.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":521,"testSuite":["json/ch12.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":200,"testSuite":["json/ch13.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":200,"testSuite":["json/ch13.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":24,"testSuite":["json/ch14.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":24,"testSuite":["json/ch14.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":7970,"testSuite":["json/ch15.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":7970,"testSuite":["json/ch15.json"],"version":"ES5.1"}

View File

@ -1 +1 @@
{"date":"2012-02-22","numTests":1,"testSuite":["json/intl402.json"],"version":"ES5.1"}
{"date":"2012-02-24","numTests":1,"testSuite":["json/intl402.json"],"version":"ES5.1"}