Regression test for e4x/XML/13.4.4.3-02.js, catch exceptions to prevent exit code 3

This commit is contained in:
bob%bclary.com 2005-10-24 08:37:17 +00:00
parent 1bd7abaf4c
commit 7c40adc831

View File

@ -45,11 +45,11 @@ var expect = 'error';
printBugNumber (bug);
printStatus (summary);
var node = <node/>;
node.appendChild(node);
try
{
var node = <node/>;
node.appendChild(node);
var result = String(node);
actual = 'no error';
}