Chrome 99 Rushes Ahead With New Features
Written by Mike James   
Wednesday, 09 March 2022

Chrome 99 has introduced some new features relevant to programming and left the competition behind - this isn't good.

 

chrome

Usually not much is added to Chrome that makes it worth mentioning in a developer context. This release, however, seems to have lots of important new things.

The HTML element  showPicker method is wonderful. You can now ask the browser to show a UI picker object for date, time color and files. Previously you could do the job, but only using non-standard, browser-specific, code or you could implement your own picker using JavaScript. The native picker is however more likely to be familiar to the user. This is a huge simplification and it makes you wonder why it has taken so long. Alll you have to do is call the showPicker method and an appropriate input element and you have your picker displayed and the data in the element when the user dismisses it:

dateInput = document.querySelector("input");
dateInput.showPicker();

This a whatwg standard, but Can I use suggests that only Edge 99 supports it in addition to Chrome.

So do you use it yet?

Also new is the conic gradient. A new factory function called createConicGradient can be used to create a radial gradient that varies its color around the center point:

const grad = ctx.createConicGradient(0, 100, 100);
grad.addColorStop(0, "red");
grad.addColorStop(0.25, "orange");
grad.addColorStop(0.5, "yellow");
grad.addColorStop(0.75, "green");
grad.addColorStop(1, "blue");
ctx.fillStyle = grad;
ctx.fillRect(0, 0, 200, 200);

Produces:

conical

The good news is that this one seems to be supported on Firefox and Safari.

More surprising is the new Handwriting Recognition API. It is what it sounds like. This is an addition to the similar APIs out there such as Microsoft Ink - but this only runs on UWP;  Apple PencilKit with no public API; and Google's ML Kit Ink Recognition. Currently the Handwriting Recognition API is only a W3C proposal and there is no sign that Firefox, Safari or Edge plan to support it.

There are a number of other minor improvements, but most of these just prove that Chrome either getting ahead or going it alone depending on your point of view. With Chrome having by far the biggest share of the browser market, it can indeed lead the way, with Firefox scrabbling to catch up, Safari working out which innovation might damage Apple's profit line and Edge looking on wondering if any of it is worth it.

More Information

Chrome Platform Status

Related Articles

Chrome 92 Adds JavaScript Features

Edge Gains Browser Market Share While Firefox Flounders

Chrome 84 Adds Web OTP API

Apple Blocks 15 W3C Standards In Safari

Mozilla Layoffs Raise Questions

Firefox 69 - New Features But Still Not Caught Up?

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

 

Banner


Angular and Wiz To Merge
27/03/2024

Two web development frameworks used at Google are merging. One, Angular is open source and widely known, while the other, Wiz, is an internal web framework developed and used by Google for some o [ ... ]



Redis Changes License, Rival Fork Launched
03/04/2024

The developers of Redis have announced that they are changing the licensing model for the database. From now on, all future versions of Redis will be released with source-available licenses rather tha [ ... ]


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

 

Last Updated ( Wednesday, 09 March 2022 )