¿Alguna implementación sugerida de un detector de cambio de propiedad CSS? Tal vez:CSS Property Change Listener
thread =
function getValues(){
while(true){
for each CSS property{
if(properties[property] != nil && getValue(property) != properties[property]){alert('change')}
else{properties[property] = getValue(property)}
}
}
}
Ésta no funciona en los navegadores basados en WebKit, Chrome, al menos. –