This survey closed on August 31, 2025.

Welcome to the survey! This first part is all about sharing your experience with various web platform features:

  • Never heard of it: it's your first time seeing this – or you've heard of it but have no idea what it does.

  • Heard of it: you've read or learned about this, but haven't actually used it yet.

  • Used it: you've used this at least once, even if it was just to play around.

By the way, if you want to tell us more about any of your choices, just click that little "comment" icon!

Method of providing a list of presets for a user to select in a form control, while still allowing custom options.

html
<input name="country" list="countries">
<datalist id="countries">
  <option>Afghanistan</option>
  ...
</datalist>
Tell us more:
Tell us more:
Tell us more:

Programmatically open the picker of form controls that have one (color pickers, date inputs etc).

html
<input id="dateInput" type="date">
<button onclick="dateInput.showPicker()">Select date</button>
Tell us more:
Tell us more:
Tell us more:

Stylable, customizable dropdown control. Previously <selectlist> and <selectmenu>.

css
select,
::picker(select) {
  appearance: base-select;
}
Tell us more:
Tell us more:
Tell us more:

Creates a color picker from which users can choose a color value.

Tell us more:
Tell us more:
Tell us more:

Creates a color picker which allows the user to select a wide-gamut (P3) color.

Tell us more:
Tell us more:
Tell us more:

Creates a color picker which allows the user to select a semi-transparent color.

Tell us more:
Tell us more:
Tell us more:

Permits editing of the element's raw text, but not rich text formatting.

html
<h2 class="title" contenteditable="plaintext-only"></h2>
Tell us more:
Tell us more:
Tell us more:

Think of the various form controls (e.g. <input>, <textarea>, <select>, <button> etc.), behaviors (e.g. validation, autocomplete), handling forms via JS, editing APIs (e.g. contentEditable) etc. Anything that bothers you is fair game — browser support, missing features, styling, etc.