— Corey Butler (@goldglovecb)
— Corey Butler (@goldglovecb)
— Pete Carapetyan
Thanks to our venue sponsor:
Thanks to our food sponsor:
Last version check — October 2015:
46 | 41 | 33 | 13+ | 9 |
As of January 27, 2016:
46 48 |
41 44 |
33 34 |
13+ 10586 |
9 9.1 |
See our notes about Microsoft Edge Versioning.
var basketOfApples = ['🍎', '🍏', '🍎', '🍏', '🌰', '🍎', '🍏'];
if (basketOfApples.includes('🌰')) {
ChromeSamples.log('Your basket of apples contains a chestnut.');
}
// The old way still "works"...
if (basketOfApples.indexOf('🌰') !== -1) {
ChromeSamples.log('Your basket of apples contains a chestnut.');
}
function listAnimalsArrows(...animals) {
animals.forEach(animal => ChromeSamples.log(animal));
}
listAnimalsArrows('🐯', '🐰', '🐘', '🐴', '🐥');
requestIdleCallback allows scheduling a task to run when the browser is idle. This makes it possible to perform background work on the main event loop, without impacting latency-critical events such as animation and input response.
requestIdleCallback(function (deadline) {
while (deadline.timeRemaining() > 0)
doWorkIfNeeded();
});
CSS Writing Modes Level 3 without "webkit" prefix, along with syntax updates to the most recent CR. As part of the work, a non-standard value "horizontal-bt" is removed from -webkit-writing-mode.
<link rel="prefetch" crossorigin/>
self.addEventListener('push', function(event) {
event.waitUntil(
self.registration.showNotification('Example Notification', {
body: 'Hello, world!',
})
);
})
*Partial support in Chrome
What is it? Brotli is a compression algorithm from Google.
<picture>
<source media="(min-width: 1000px)" srcset="picture_large.jpg">
<source media="(min-width: 500px)" srcset="picture_small.jpg">
<img src="picture_default.jpg">
</picture>
The new Brave browser blocks all the greed and ugliness on the Web that slows you down and invades your privacy. Then we put clean ads back, to fund website owners and Brave users alike. Users can spend their funds to go ad-free on their favorite sites.
It's amazing how fast a page loads when you strip away everything but the real content.
Bleeding Edge Web gets $50 towards the meetup for each person who uses this link to sign up.
/
#