[45] カスタム要素は、 著者がその挙動を定義する要素です。
[46] 予めスクリプトからカスタム要素定義を作成しておき、 その定義を使って要素を作成することで、 以後その要素の状態が変化した時に JavaScript コールバック関数を実行させることができます。
[32] Web Components の一部として単独の仕様書で開発が進められてきましたが、 基本的な部分が整い合意に達したとして、2016年4月、 HTML Standard に統合されました。(一部は DOM Standard に移されました。)
自律カスタム要素は、独立した要素であり、その挙動を著者が完全に実装する必要があります。 カスタム化組み込み要素は、既存の HTML要素を拡張し、 その元々の意味や挙動は維持したまま、 独自の拡張した動作を実装することができます。
[36] その他次のような概念があります。
[47] 自律カスタム要素の適合性は、自律カスタム要素を参照。
[48] カスタム化組み込み要素の適合性は、拡張した元のHTML要素と変わりありません。
[49] カスタム要素が使われている場合、 構文解析器の動作中にスクリプトが動作することがあります。
[50] document.write
を呼び出せるという意味ではカスタム要素からスクリプトを通じて構文解析器に介入できます。
しかしそれ以外に、例えば構文解析器の動作モードを直接変化させたりすることはできません。
すべてのカスタム要素は、それ自体はスクリプトの動作の有無に関わらず同じように構文解析されます。
[34] 要素は、カスタム要素状態が custom
のとき、
カスタムであるといいます >>33。
[41] カスタム要素は、 カスタムである要素です。 >>40
[42] 通常の要素とは違って、カスタム要素は、構築子やプロトタイプを (利用者エージェントではなく) 著者が定義します。 >>40
[38] XBL 時代には、カスタム要素はありませんでした。 XHTML の世界観では、 XHTML の標準の語彙に対し、 独自の拡張は他の名前空間の要素や属性で指定することになっていましたから、 XML での利用を当初想定していた XBL も、 任意の名前空間の要素で事実上のカスタム要素を実現することを想定していたものと思われます。
[39] Web Components では、カスタム要素機能は、 Custom Elements 仕様書として開発が進められました。いくつかの JavaScript ライブラリーで本仕様に従ったもの、またはそれに近いものが実装された他、 Chrome でも実装が進められました。
[87] 20332: [Custom]: Rename "custom DOM elements" to "custom elements"., dglazkov, , https://github.com/WICG/webcomponents/commit/63d07e5de38a7a42b0c766e84fbd5267b5e3c75f
[1] Custom Elements ( ( 版)) https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/custom/index.html#monkeypatch-create-element
[2] Custom Elements ( ( 版)) http://www.w3.org/TR/2013/WD-custom-elements-20130514/
[3] Custom Elements ( ( 版)) http://www.w3.org/TR/2013/WD-custom-elements-20131024/
[4] Re: [webcomponents] Seeking status and plans ( (Dimitri Glazkov 著, 版)) http://lists.w3.org/Archives/Public/public-webapps/2013OctDec/0042.html
[5] MathML and dashes in element names ( (Dimitri Glazkov 著, 版)) http://lists.w3.org/Archives/Public/www-math/2013Nov/0019.html
[6] dglazkov/html-as-custom-elements ( ( 版)) https://github.com/dglazkov/html-as-custom-elements
[7] Introduction to Web Components ( ( 版)) http://www.w3.org/TR/2013/WD-components-intro-20130606/#custom-element-section
[8] Custom Elements ( ( 版)) http://www.w3.org/TR/2014/WD-custom-elements-20141216/
[9] Custom Elements - WHATWG Wiki ( 版) https://wiki.whatwg.org/wiki/Custom_Elements
[10] IRC logs: freenode / #whatwg / 20150225 ( 版) http://krijnhoetmer.nl/irc-logs/whatwg/20150225#l-280
[80] FAQ - WHATWG Wiki, , https://wiki.whatwg.org/index.php?title=FAQ&oldid=9975#HTML_should_support_a_way_for_anyone_to_invent_new_elements.21
[12] Bug 28547 – Remove the support for inherting from builtin subclasses of HTMLElement and SVGElement ( 版) https://www.w3.org/Bugs/Public/show_bug.cgi?id=28547
[13] Custom Elements: "createdCallback" & cloning (Anne van Kesteren 著, 版) https://lists.w3.org/Archives/Public/public-webapps/2015JulSep/0012.html
[14] Will any new features be tied to constructors? ( 版) https://esdiscuss.org/topic/will-any-new-features-be-tied-to-constructors
[15] The key custom elements question: custom constructors? (Domenic Denicola 著, 版) https://lists.w3.org/Archives/Public/public-webapps/2015JulSep/0159.html
[16] Custom Elements: insert/remove callbacks (Anne van Kesteren 著, 版) https://lists.w3.org/Archives/Public/public-webapps/2015AprJun/0517.html
[17] Apple's updated feedback on Custom Elements and Shadow DOM (Maciej Stachowiak 著, 版) https://lists.w3.org/Archives/Public/public-webapps/2015JulSep/0204.html
[18] Update on standardizing shadow DOM and custom elements — Anne’s Blog ( 版) https://annevankesteren.nl/2015/07/shadow-dom-custom-elements-update
[19] Custom elements "Constructor-Dmitry" baseline proposal (Domenic Denicola 著, 版) https://lists.w3.org/Archives/Public/public-webapps/2015JulSep/0304.html
[20] Apple's feedback for custom elements (Ryosuke Niwa 著, 版) https://lists.w3.org/Archives/Public/public-webapps/2016JanMar/0059.html
[21] [custom-elements] Steps inside HTMLElement's constructor (Ryosuke Niwa 著, 版) https://lists.w3.org/Archives/Public/public-webapps/2016JanMar/0113.html
[22] Custom Elements ( 版) https://www.w3.org/TR/2016/WD-custom-elements-20160226/
[23] Large custom element spec rewrite to implement some F2F decisions · w3c/webcomponents@d95392f ( 版) https://github.com/w3c/webcomponents/commit/d95392f734895b2c72e1822f464dd70a22b322a4
[24] Decouple Custom Elements from HTML Imports · w3c/webcomponents@6953f9f ( 版) https://github.com/w3c/webcomponents/commit/6953f9f5a36d3221407b4c6735e6ff927f8cb45f
[30] Custom Elements ( 版) https://w3c.github.io/webcomponents/spec/custom/
[25] Add support for custom elements · whatwg/dom@7f63535 ( 版) https://github.com/whatwg/dom/commit/7f63535da39a1cbf7f8f68563abc6f05f760990a
[26] Home · whatwg/dom Wiki ( 版) https://github.com/whatwg/dom/wiki
[27] Editorial: update custom element cross-spec references · whatwg/dom@3536dd9 ( 版) https://github.com/whatwg/dom/commit/3536dd95dbc6bad216f414d34de6c6805db67e6f
[28] Add custom elements to HTML · whatwg/html@6e7eaa4 ( 版) https://github.com/whatwg/html/commit/6e7eaa4bd2912965fd83766f99f984f249531f3a
[29] Upstream Custom Elements by domenic · Pull Request #204 · whatwg/dom ( 版) https://github.com/whatwg/dom/pull/204
[37] New Web Components editor (Léonie Watson 著, 版) https://lists.w3.org/Archives/Public/public-webapps/2016AprJun/0068.html
[51] Custom Elements ( ()) https://www.w3.org/TR/2016/WD-custom-elements-20160517/
[53] Sync custom elements with upstream ( (domenic著, )) https://github.com/w3c/webcomponents/commit/37eb6275e9d214530973d26ff5a36dff2b55b819
[54] Custom Elements ( ()) https://www.w3.org/TR/2016/WD-custom-elements-20160523/
[55] Bug 150225 – Prototype custom element API ( ()) https://bugs.webkit.org/show_bug.cgi?id=150225
[56] 20653 – need a way for Web Components to cause new interface objects to exist dynamically ( ()) https://www.w3.org/Bugs/Public/show_bug.cgi?id=20653
[57] Sync custom elements with upstream ( (domenic著, )) https://github.com/w3c/webcomponents/commit/9c41e5be975027f96e6297b46a558efa1c34e696
[58] Sync custom elements with upstream ( (domenic著, )) https://github.com/w3c/webcomponents/commit/d69d50c95a0d846b9926d2b7ebaad098db03c597
[59] Custom Elements ( ()) https://www.w3.org/TR/2016/WD-custom-elements-20160621/
[60] Sync custom elements with upstream (domenic著, ) https://github.com/w3c/webcomponents/commit/466244b68ae9e7c609ea6b4fddbf35c401badfa2
[61] Custom Elements () https://www.w3.org/TR/2016/WD-custom-elements-20160721/
[62] Custom elements section contain too much tutorial-like contents · Issue #1642 · whatwg/html () https://github.com/whatwg/html/issues/1642
[63] Re: [Custom Elements] Should I write v1 Custom Elements in a way backwards compatible with v0 API? (Dominic Cooney著, ) https://lists.w3.org/Archives/Public/public-webapps/2016JulSep/0068.html
[64] Custom Elements () https://www.w3.org/TR/2016/WD-custom-elements-20160830/
[65] Chromium Blog: Chrome 54 Beta: Custom Elements V1, BroadcastChannel, and media platform improvements ( ()) https://blog.chromium.org/2016/09/chrome-54-beta-custom-elements-v1.html
[66] Custom Elements () https://www.w3.org/TR/2016/WD-custom-elements-20161002/
[67] Custom Elements () https://www.w3.org/TR/2016/WD-custom-elements-20161013/
[68] Editorial: add Brian to custom elements acknowledgments (domenic著, ) https://github.com/whatwg/html/commit/3c1ccfd4150fb9ac128916f892e2ac5e036ffddb
[70] Add a strawman design for custom elements (rniwa著, ) https://github.com/w3c/webcomponents/commit/d3f89c8fd0f95f3baae6c4aecfb9730eeb2ec59b
[71] CfC: Incorporate Custom Elements into HTML (Chaals McCathie Nevile著, ) https://lists.w3.org/Archives/Public/public-webapps/2018JanMar/0013.html
[72] Dev edition: hide implementer-facing text for custom elements (domenic著, ) https://github.com/whatwg/html/commit/8bc214a1ca8956ebc62c783c6b5ee2cce6f25ac8
[73] Dev edition: hide implementer-facing text for custom elements by domenic · Pull Request #3545 · whatwg/html () https://github.com/whatwg/html/pull/3545
[74] Proposal: Allow custom elements to be in any namespace · Issue #634 · w3c/webcomponents () https://github.com/w3c/webcomponents/issues/634
[75] Deprecations and removals in Chrome 69 | Web | Google Developers () https://developers.google.com/web/updates/2018/09/chrome-70-deps-rems
[76] Custom Elements () https://www.w3.org/TR/2018/NOTE-custom-elements-20180503/
[77] Fix miscounted number of custom element callbacks (Malvoz著, ) https://github.com/whatwg/html/commit/379f99086f38c1fe5845bbb554bf0bc6d167ed9e
[78] Fix #4822 by Malvoz · Pull Request #4825 · whatwg/html () https://github.com/whatwg/html/pull/4825
[79] "A map, whose four keys are the strings "connect..." · Issue #4822 · whatwg/html () https://github.com/whatwg/html/issues/4822