summaryrefslogtreecommitdiffstats
path: root/js/src/tests/js1_8_5/extensions/regress-677589.js
blob: 0bdb2e79ff378ce3c0cee242330370d8f391854b (plain)
1
2
3
4
5
6
7
8
9
10
// |reftest| skip-if(!xulRuntime.shell)
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/

try {
    clone(null);  // don't crash
} catch (exc if exc instanceof TypeError) {
}

reportCompare(0, 0, 'ok');