blob: 5e306eba1d7f4892b3662e65dc3f8573c328419a (
plain)
1
2
3
4
5
6
7
8
9
10
|
// |reftest| skip
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributors: Gary Kwong and Jason Orendorff
*/
var obj = {};
obj.__defineSetter__("x", function() {});
obj.watch("x", function() {});
obj.__defineSetter__("x", /a/);
|