6 'This test verifies that exception thrown while converting an object to string '
7 + 'are correctly propagated and do not crash the browser.');
9 if (window
.testRunner
) {
10 testRunner
.dumpAsText();
13 var throwing
= { toString: function() { throw 'EXCEPTION'; } };
15 document
.images
.item(throwing
);
16 alert('FAIL: document.images.item(throwing) should have thrown an exception!');
21 document
.images
[throwing
];
22 alert('FAIL: document.images[throwing] should have thrown an exception!');
29 <body onload='test()'
>