зеркало из https://github.com/mozilla/gecko-dev.git
JavaScript Test Library - Regression test for bug 304376. Remove incorrect check for constructor name
This commit is contained in:
Родитель
e6c2bf9b97
Коммит
2fa6242e31
|
@ -43,16 +43,23 @@ var expect = '';
|
|||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
expect = 'String';
|
||||
expect = 'TypeError';
|
||||
|
||||
var saveString = String;
|
||||
|
||||
String = Array;
|
||||
|
||||
actual = (new String()).constructor.name;
|
||||
|
||||
// see if we can crash...
|
||||
"".join();
|
||||
try
|
||||
{
|
||||
// see if we can crash...
|
||||
"".join();
|
||||
actual = 'No Error';
|
||||
}
|
||||
catch(ex)
|
||||
{
|
||||
actual = ex.name;
|
||||
printStatus(ex + '');
|
||||
}
|
||||
|
||||
String = saveString;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче