3 Commits

Author SHA1 Message Date
Chris Bracco
4b6224d52e v0.9.3 2021-04-03 15:34:01 -04:00
Chris Bracco
5218026335 Merge branch 'patch-1' of https://github.com/racztiborzoltan/html5-test-page into racztiborzoltan-patch-1
* 'patch-1' of https://github.com/racztiborzoltan/html5-test-page:
  add multiple select
2021-04-03 15:32:36 -04:00
Rácz Tibor Zoltán
a9fa7e0dfb add multiple select 2018-09-18 02:22:13 +02:00
3 changed files with 15 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
# 0.9.3 (April 3, 2021)
- Add multiple <select> (thanks @racztiborzoltan!).
# 0.9.2 (April 3, 2021)
- Add nested lists (thanks @charul97!).

View File

@@ -435,6 +435,16 @@
</optgroup>
</select>
</p>
<p>
<label for="select_multiple">Select (multiple)</label>
<select id="select_multiple" multiple="multiple">
<optgroup label="Option Group">
<option>Option One</option>
<option>Option Two</option>
<option>Option Three</option>
</optgroup>
</select>
</p>
</fieldset>
<p><a href="#top">[Top]</a></p>
<fieldset id="forms__checkbox">

View File

@@ -1,6 +1,6 @@
{
"name": "html5-test-page",
"version": "0.9.2",
"version": "0.9.3",
"description": "A page filled with common HTML elements to be used for testing purposes.",
"main": "index.html",
"scripts": {