comment = document.createComment("");
document.documentElement.firstChild.appendChild(comment);
comment.onpropertychange = function () { alert() }
function Data() {}
Data.prototype = comment
data = new Data
data.x = 4 // сработал onpropertychange
console.log(comment.x, data.x);
Журнал: undefined4
Хах, забавно.