resize-observer icon indicating copy to clipboard operation
resize-observer copied to clipboard

wpt fail: observer methods should be enumerable

Open TremayneChrist opened this issue 5 years ago • 0 comments

Currently the methods on the object are not set to be enumerable and the following code will print nothing.

const ro = new ResizeObserver(() => {});

for (let key in ro) {
  console.log(ro);
}

// observe
// unobserve
// disconnect

TremayneChrist avatar Jul 10 '19 08:07 TremayneChrist