Nothing Special   »   [go: up one dir, main page]

Skip to content

Commit

Permalink
Add test for listbox with datalist.
Browse files Browse the repository at this point in the history
  • Loading branch information
sanketj committed Aug 2, 2024
1 parent 5f37f60 commit 2903c4b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions controls/select-element/select-listbox-with-datalist.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<html>
<head>
<style>
</style>
</head>
<body>
Non-stylable select:
<select size="2">
<datalist>
<option>
❤️heart
</option>
<option>
🙂smile
</option>
</datalist>
</select>
<br>
<br>
Stylable select:
<select style="appearance:base-select" size="2">
<datalist>
<option>
❤️heart
</option>
<option>
🙂smile
</option>
</datalist>
</select>
</body>
</html>

0 comments on commit 2903c4b

Please sign in to comment.