Page 39 - HTML5
P. 39
</div>
role="search"
A landmark region that contains a collection of items and objects that, as a whole, combine to
create a search facility.
<div role="search">
<input role="searchbox" type="text">
<button role="button">Search</button>
</div>
role="searchbox"
A type of textbox intended for specifying search criteria.
<div role="search">
<input role="searchbox" type="text">
<button role="button">Search</button>
</div>
role="separator"
A divider that separates and distinguishes sections of content or groups of menuitems.
<p>Lorem ipsum...</p>
<hr role="separator">
<p>Lorem ipsum...</p>
role="slider"
A user input where the user selects a value from within a given range.
<div
role="slider"
aria-valuemax="100"
aria-valuemin="0"
aria-valuenow="25">
<div class="sliderhandle"></div>
</div>
role="spinbutton"
A form of range that expects the user to select from among discrete choices.
<input
role="spinbutton"
aria-valuemax="100"
aria-valuemin="0"
aria-valuenow="25"
https://riptutorial.com/ 23

