http://www.w3.org/TR/custom-elements/#instantiating-custom-elements states: > After a custom element is instantiated, changing the value of the is attribute must not affect this element's custom element type. `<button is="my-button">` should generate a `createElement('button', 'my-button')` call
http://www.w3.org/TR/custom-elements/#instantiating-custom-elements states:
<button is="my-button">should generate acreateElement('button', 'my-button')call