From 707c6828b561701d235372b1fd815d47b8cf087c Mon Sep 17 00:00:00 2001 From: Nico Jansen Date: Fri, 21 Dec 2018 10:29:52 +0100 Subject: [PATCH] docs(elements): add "Firefox" for support of custom elements (#27789) Firefox now supports custom elements: https://caniuse.com/#feat=custom-elementsv1 PR Close #27789 --- aio/content/guide/elements.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/elements.md b/aio/content/guide/elements.md index d94adc663f..f7dfa98f12 100644 --- a/aio/content/guide/elements.md +++ b/aio/content/guide/elements.md @@ -2,7 +2,7 @@ _Angular elements_ are Angular components packaged as _custom elements_, a web standard for defining new HTML elements in a framework-agnostic way. -[Custom elements](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements) are a Web Platform feature currently supported by Chrome, Opera, and Safari, and available in other browsers through polyfills (see [Browser Support](#browser-support)). +[Custom elements](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements) are a Web Platform feature currently supported by Chrome, Firefox, Opera, and Safari, and available in other browsers through polyfills (see [Browser Support](#browser-support)). A custom element extends HTML by allowing you to define a tag whose content is created and controlled by JavaScript code. The browser maintains a `CustomElementRegistry` of defined custom elements (also called Web Components), which maps an instantiable JavaScript class to an HTML tag.