What new features have shipped with more support that we can start paying a bit more attention to in web development?
Or what's possibly on the horizon?
What new features have shipped with more support that we can start paying a bit more attention to in web development?
Or what's possibly on the horizon?
For further actions, you may consider blocking this person and/or reporting abuse
It’s not properly new but I've recently found out about:
I can't believe I didn't know about this. There is definitely some DEV functionality written in JavaScript I'd wished I could have done via media query.
Time to look further into this and make some changes!
It conforts me to know that some well established DEvs were unaware about that
I personally grew up when IE5 was around. Things were so bad for the frontend that even today I just assume us poor frontend devs will never get anything nice.
Same here. Mind blown, right??
Especially when you find out for how long this has been around...
🤯Mind blown. I'm so going to be using this in the future
Native FileSystem API
HTTP/3
WebXR
TLDR on these three things?
Sorry was on a bus, updated the original comment
Marvelous
For those who wonder what the support is for these:
Native FileSystem API ➡️ caniuse.com/#feat=native-filesyste...
HTTP/3 ➡️ caniuse.com/#feat=http3
WebXR ➡️ caniuse.com/#feat=webxr
The fact they rebuilt HTTP/2 on top of UDP is so interesting!
New CSS underline styling! 🙌
text-decoration-thickness
text-decoration-offset
text-decoration-color
et al.Let's say bye-bye to long and painful hacks to get underlines that look great (he said after spending an hour writing such hacks, then finding out about these new properties).
Kudos to Mozilla for this
THIS is a huge deal to me! Thanks for sharing 😃
Very handy properties.
Looks like it's not supported by chrome though. Yet.
The Intersection Observer API is not really new, but it’s not talked about a lot still. Browser support is pretty decent for it now.
“ The Intersection Observer API lets code register a callback function that is executed whenever an element they wish to monitor enters or exits another element (or the viewport), or when the amount by which the two intersect changes by a requested amount.“
I just used Intersection Observer to implement some scroll effects. Pretty neat and useful
Firefox Containers:
addons.mozilla.org/en-US/firefox/a...
addons.mozilla.org/en-US/firefox/a...
While this is not exactly a new feature (or rather, add-on), it's something that I haven't seen yet in any Chrome-based browser - namely Chromium, Opera or Vivaldi.
I use it mostly due to privacy concerns, but it also gives me more flexibility to use different accounts on the same site. Either way, it's possibly one of the coolest new features I have seen for browsers in a long time.
Agreed! I love containers, really easy way to use multiple accounts or separate identities. The builtin Facebook container stopping all Facebook trackers is awesome 😂
Wish they would add it to Firefox mobile as well
Not exactly JS but in the CSS realm
I'm unsure if this counts as new, but I'm still stoked: There's native lazy loading: css-tricks.com/native-lazy-loading/
We can finally hide our lazy loading scripts behind a feature query.
Also, mozilla implenented a native way to control underline strength: developer.mozilla.org/en-US/docs/W...
Not new but this is surprising for me
Faster apps with JSON.parse
Thanks, had no idea about this either.
Not JS related but the
:is()
selector.