find searches into list form controls
Categories
(Core :: DOM: Editor, defect, P3)
Tracking
()
People
(Reporter: buster, Unassigned)
References
()
Details
(Keywords: helpwanted, Whiteboard: [p:2])
Updated•25 years ago
|
Comment 1•25 years ago
|
||
Updated•25 years ago
|
Comment 4•25 years ago
|
||
Updated•25 years ago
|
Updated•25 years ago
|
Updated•25 years ago
|
Updated•25 years ago
|
Comment 6•25 years ago
|
||
Comment 7•25 years ago
|
||
Updated•25 years ago
|
Comment 11•24 years ago
|
||
Updated•24 years ago
|
Comment 13•24 years ago
|
||
Comment 14•24 years ago
|
||
Updated•24 years ago
|
Comment 15•23 years ago
|
||
Comment 17•23 years ago
|
||
Comment 18•23 years ago
|
||
Comment 19•23 years ago
|
||
Comment 20•23 years ago
|
||
Comment 21•21 years ago
|
||
Updated•18 years ago
|
Updated•18 years ago
|
Updated•5 years ago
|
This does work but only on <select>
with size
attribute with its value > 1, on both Firefox and Chrome. Quite surprising to me, does the spec require this?
Comment 23•5 years ago
|
||
Find in page is not spec'd AFAICT.
But the main issue is how to highlight the user than the search hit is in the <option>
element, as it's not visible by default.
Comment 24•5 years ago
|
||
This is the relevant check, fwiw.
I can see highlight and Firefox even scroll down the <select>
to show it, at least on Windows. Do you mean it doesn't on your machine or am I misunderstanding?
Comment 26•5 years ago
|
||
I mean for comboboxes:
<select>
<option>A</option>
<option>B</option>
</select>
Doesn't return a match for A or B.
Oops, then I mean size=2
suddenly enables searching + highlighting.
<select size=2>
<option>A</option>
<option>B</option>
</select>
Comment 28•5 years ago
|
||
Yeah, that's expected, because now the <option>
s are visible.
I confused this bug with Bug 63928. The problem here was <select size=2>
does not scroll, but now it does. I guess this can be closed then.
Mozregression says search had been disabled and then enabled again with proper scrolling on 2018-05-31 build.
Updated•5 years ago
|
Description
•