domenic / html-as-custom-elements

HTML as Custom Elements
https://domenic.github.io/html-as-custom-elements/
Apache License 2.0
260 stars 20 forks source link

Other elements #8

Closed annevk closed 10 years ago

annevk commented 10 years ago

"The rest of the elements either require no additional behavior or are trivially implementable using Custom Element callbacks." bothers me a bit. Other mentions of trivial do too, if it was trivial it would have been done by now.

<select> is hard. Requires at least a new privileged CSS primitive to draw outside a viewport. Form submission needs to be explained.

<input> seems hard. Does this bottom out to contenteditable in implementations or something else? I suspect something else. Form submission again. Also needs a way to say that certain pseudo-classes match at particular points in time.

<fieldset> is "hard". Requires new CSS primitives.

dglazkov commented 10 years ago

Added link to the spreadsheet and changed the section to sound more WIP-ey in commit faa1eb9.

annevk commented 10 years ago

Thanks!