-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Home
Domenic Denicola edited this page Apr 23, 2016
·
20 revisions
Custom elements is a feature that, until recently, was developed as monkeypatches onto various specifications. To help implementers have a consolidated view of how custom elements change the HTML Standard, we have a few resources.
First we have this listing of affected sections:
-
Elements in the DOM:
- The
HTMLElement
constructor - The definition of "element interface"
- The
- Custom elements
-
Window
got a newcustomElements
attribute - Creating and inserting nodes: create an element for a token
- The XHTML syntax now mentions that "creat an element for a token" must be used.
- Various places now use the "create an element" hook introduced to the DOM Standard for creating elements:
Also, here is a listing of all relevant commits:
- https://github.com/whatwg/html/commit/6e7eaa4bd2912965fd83766f99f984f249531f3a
- https://github.com/whatwg/html/commit/785863622acc5cc9faf1ff392ae17786ee7b3b80
- https://github.com/whatwg/html/commit/1d596a555d3c2f067ae643e447eaa88137b595ac
- https://github.com/whatwg/html/commit/db8899be5b0971a3c43b8a2ac926a5df1f5bc2b9
- https://github.com/whatwg/html/commit/fc927e65ceab229209f116866a76b1c618b9a1d4
- https://github.com/whatwg/html/commit/1fee4f56538b4881a43d75db7bf86fb634b370e0
- https://github.com/whatwg/html/commit/dee1771d9e3e0bd996521402988fba73372ee33e
You may also be interested in similar information for changes to the DOM Standard.