Apple today released a new update for Safari Technology Preview, the experimental browser that launched on March 30. Release 3 includes a long list of feature tweaks and updates to JavaScript, CSS, Web APIs, Web Inspector, Accessibility, Rendering, Media, and Networking, plus bug fixes.
Release notes are available on Apple's Safari Technology Preview website.
The Safari Technology Preview update is available through the Mac App Store to anyone who has downloaded the browser.
Apple's goal with Safari Technology Preview is to gather feedback from developers and users on its browser development ahead of launch. Safari Technology Preview can be run side-by-side with the existing Safari browser and while aimed at developers, it does not require a developer account to download.





















Top Rated Comments
I like that Apple is doing more to get their beta software in the hands of more people to get it perfected ahead of time.
But for future reference you will likely encounter other things behind flags (prefixes are being killed thankfully but many things are still prefixed) so...
For features behind flags search in the URL/ominbox: For Chrome & Opera go to/search 'chrome://flags', for Firefox go to 'about:config', not sure about Webkit/Safari but they may not have any flagged features yet anyway. Then there will be a settings page with a bunch of features in development that you can turn on if you want to try them out, these can affect the stability of the browser so be warned.
For prefixes, just prefix the property or value with the vendor prefix (-ms-, -o-, -webkit-, -moz-) and use it as you normally would (there are occasionally syntax differences which you may need to look up). For example (and kinda redundant now):
body {
display: -webkit-grid;
-webkit-grid-columns: auto;
-webkit-grid-rows: auto;
}
There's a wealth of info for support for CSS and JS on caniuse.com, which i recommend checking out. ;)