|
|
@ -377,7 +377,7 @@ function get_setters(element) {
|
|
|
|
var proto = get_prototype_of(element);
|
|
|
|
var proto = get_prototype_of(element);
|
|
|
|
|
|
|
|
|
|
|
|
// Stop at Element, from there on there's only unnecessary setters we're not interested in
|
|
|
|
// Stop at Element, from there on there's only unnecessary setters we're not interested in
|
|
|
|
while (proto.constructor.name !== 'Element') {
|
|
|
|
while (proto.constructor !== Element) {
|
|
|
|
descriptors = get_descriptors(proto);
|
|
|
|
descriptors = get_descriptors(proto);
|
|
|
|
|
|
|
|
|
|
|
|
for (var key in descriptors) {
|
|
|
|
for (var key in descriptors) {
|
|
|
|