Most active commenters
  • cush(4)

←back to thread

497 points tosh | 18 comments | | HN request time: 1.313s | source | bottom
Show context
wolframhempel ◴[] No.43535984[source]
The fact that I'm disproportionally excited about this probably dates me as an early 2000s web developer. But since selects can do things that you simply cannot recreate in HTML, e.g. have options drop downs that extend outside the viewport boundaries, makes this a really helpful feature.

Now, do autocompletes and tag selectors next...

replies(6): >>43536012 #>>43536059 #>>43536090 #>>43537120 #>>43537585 #>>43539203 #
1. asddubs ◴[] No.43536090[source]
I doubt it'll still be able to do those things. From the article:

>Using base-select loses a number of features and behaviors:

> The <select> doesn't render outside the browser pane.

> It doesn't trigger built-in mobile operating system components.

I have mixed feelings about it. Mobile users, get ready for poorly optimized select elements. On the other hand it reduces the need for javascript for styling forms, which is good

replies(5): >>43536161 #>>43537035 #>>43537996 #>>43539933 #>>43541655 #
2. wolframhempel ◴[] No.43536161[source]
That's fair, but I assume that is the initial implementation. Surely, over time, browser vendors will want to make the full spectrum of select functionality available consistently.
replies(2): >>43536357 #>>43536433 #
3. caesil ◴[] No.43536357[source]
I don't think browsers will ever let web code affect things outside the viewport because scammers would cook up some truly zany things with that power.
replies(1): >>43541662 #
4. dbbk ◴[] No.43536433[source]
Definitely not. Why would they let web devs render outside of the browser window? That's a recipe for disaster.
replies(1): >>43538077 #
5. Eric_WVGG ◴[] No.43537035[source]
"It doesn't trigger built-in mobile operating system components." Is that part of the spec? I can see Apple deviating from that implementation.
replies(1): >>43538461 #
6. cush ◴[] No.43537996[source]
> The <select> doesn't render outside the browser pane. ... It doesn't trigger built-in mobile operating system components.

To me, this is intrinsically what makes a <select> a <select>. Styling is great, but without these features, this doesn't really bring anything new to the table

replies(2): >>43540709 #>>43543249 #
7. cush ◴[] No.43538077{3}[source]
There needs to be some middle ground. I'd trade off just being able to set just the background color and font and keep these native-like features
replies(2): >>43540599 #>>43542047 #
8. jraph ◴[] No.43538461[source]
I'm not sure about this. It could break the positioning / sizing / box CSS properties.

That would require rendering arbitrary HTML in the native widget, outside the browser. And I think that would require putting WebKit in the native widget. Or, to maintain a "copy" of the widget that looks like the native one but uses WebKit to render things. Seems annoying to maintain.

(And there are the security concerns mentioned by the other comments)

9. kmeisthax ◴[] No.43539933[source]
For the record, there's already a bunch of custom select-a-like replacement elements out there; I'm partial to select2. The main reason for this is that selects don't come with what we used to call "combobox" features; there's no type-ahead completion, and you can't lazy-load options from a larger data source because of that.

My main gripe is the loss of rendering outside the browser pane. To be clear, we already don't have that on mobile at all; if you've ever used an iPad with Stage Manager you'll note how popovers - all of them, including native apps - are neatly conformed to the bounds of the containing window. Pop-over menus are supposed to break the window pane, but they don't, for reasons I don't quite understand but can guess rhyme with the word "security".

10. maccard ◴[] No.43540599{4}[source]
If that's all your changing, then why can't you make do with the system default?
11. tadfisher ◴[] No.43540709[source]
Thanks to humanity, supporting this is a surefire ticket to someone figuring out how to phish credentials through a <select> element.
replies(1): >>43558414 #
12. immibis ◴[] No.43541655[source]
Mobile users are the majority of users by far. Do web designers really make their sites hostile to most of their users? (I suspect the answer is yes)
replies(1): >>43542669 #
13. immibis ◴[] No.43541662{3}[source]
Even rendering arbitrary pixels inside the viewport is bad enough. Something that went out of fashion but is apparently now back in fashion is detecting the user's operating system and browser, then displaying a pixel-perfect replica of a second browser window open to Paypal and asking you to log in... displayed within the bounds of the first browser window.
14. eurleif ◴[] No.43542047{4}[source]
The following works for me in Chrome, and doesn't prevent the menu from going outside of the viewport:

    select, option {
        background: red;
        font-family: 'comic sans ms';
    }
replies(1): >>43548009 #
15. qiqitori ◴[] No.43542669[source]
I think this totally depends on the site in question. Seriously researching something is hell on mobile browsers. As is doing productive stuff. Who wants to work on a tiny screen and no keyboard? On the desktop you can open dozens or hundreds of tabs on a single topic. Therefore I'm not surprised to see that on my site (technical articles) I can see the number of requests from mobile devices is just 17%.

Windows is 52%, Linux (without Android) is 18%, Macintosh is 13%, Android 11%, iOS 6%, Chrome OS 0.5%, others <0.5%. (Android and iOS may include tablets, but the overall traffic from tablets is just a few percent.) (Note that I've excluded crawlers and unknown user agents (bots and crawlers) from these results.)

FWIW, some bots lie about what they are, which typically inflates the Windows results. I have another source of data, I can see what types of devices saw my site in Google results, and it's 69% desktops, 30% mobile, 1% tablets. (I can also see how many clicked, and it's similar numbers.)

16. wruza ◴[] No.43543249[source]
With these features scammers will create all sorts of "you have to log into your password manager" popups again.
17. cush ◴[] No.43548009{5}[source]
Yeah, it only works in Chrome
18. cush ◴[] No.43558414{3}[source]
Certainly, there exists a middle ground between having no options for styling and some options where we don't compromise users