1 description('Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=119900">bug 119900</a>: Exception in global setter doesn\'t unwind correctly.');
3 debug("Passed if no assertion failure.");
5 this.__defineSetter__("setterThrowsException", function throwEmptyException(){ throw ""});
7 function callSetter() {
8 setterThrowsException = 0;
11 for (var i = 0; i < 100; ++i) try { callSetter() } catch(e) { }