JavaScript Test - ignore XPCCrossOriginWrapper on global object, bug 390946, not part of the build

This commit is contained in:
bclary%bclary.com 2007-10-05 20:44:42 +00:00
Родитель 8a1ad774fd
Коммит 161a963b77
1 изменённых файлов: 8 добавлений и 1 удалений

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

@ -59,7 +59,14 @@ var expect= ''; var expectedvalue = [ ];
status = 'the global object';
actual = getJSClass(this);
expect = GLOBAL;
addThis();
if (expect == 'Window' && actual == 'XPCCrossOriginWrapper')
{
print('Skipping global object due to XPCCrossOriginWrapper. See bug 390946');
}
else
{
addThis();
}
status = 'new Object()';
actual = getJSClass(new Object());