Add testcase for bug 476088. r=jruderman

This commit is contained in:
Hannes Verschore 2011-12-03 03:29:59 -05:00
Родитель 0d274161b8
Коммит 08b1cb24f1
2 изменённых файлов: 18 добавлений и 0 удалений

Просмотреть файл

@ -2,6 +2,7 @@ url-prefix ../../jsreftest.html?test=js1_8_5/regress/
script no-array-comprehension-length-limit.js
script regress-373843.js
script regress-383902.js
require-or(debugMode,skip) script regress-476088.js
script regress-500528.js
script regress-533876.js
script regress-541255-0.js

Просмотреть файл

@ -0,0 +1,17 @@
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
var err;
try {
f = function() { var x; x.y; }
trap(f, 0, "");
f();
} catch (e) {
err = e;
}
assertEq(err instanceof TypeError, true);
assertEq(err.message, "x is undefined")
reportCompare(0, 0, 'ok');