Re: [w3c/webcomponents] Generic programs can't reliably use/manipulate documents via the DOM (#640)

> The power dynamics of the current situation are really unusual, and don't seem to have any real advantages

Especially when you can just:

```js
const oldAttachShadow = HTMLElement.prototype.attachShadow;
HTMLElement.prototype.attachShadow = function () {
  return oldAttachShadow.call(this, { mode: 'open' });
}
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/640#issuecomment-302197460

Received on Wednesday, 17 May 2017 19:06:19 UTC