Re: [webcomponents] Permit retrieval of registered classes from window.customElements (#445)

@domenic This looks rather inconsistent to me:

```js
if (window.HTMLPictureElement) {
  let picture = document.createElement("picture");
}
```

.... compared to:

```js
if (document.elements.has("picture")) {
  let picture = document.elements.create("picture");
}
```

... or:

```js
if (window.HTMLPictureElement) {
  let picture = new HTMLPictureElement();
}
````

---
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/445#issuecomment-200971164

Received on Thursday, 24 March 2016 19:00:13 UTC